maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Maemo 5 / Fremantle (https://talk.maemo.org/forumdisplay.php?f=40)
-   -   Customize N900 Conversations (https://talk.maemo.org/showthread.php?t=36618)

Tiboric 2011-03-02 21:55

Re: Customize N900 Conversations
 
Thats really nice thanks!

Dark_Angel85 2011-03-02 23:41

Re: Customize N900 Conversations
 
there'll be no avatars for that iphone inspired theme?

F2thaK 2011-03-03 00:24

Re: Customize N900 Conversations
 
Quote:

Originally Posted by godofwar424 (Post 958087)
Sure, here is the theme that I am currently using :)

Bubbles w/Portrait Support

Hope you like it :)

This is Niqbals theme I just modified it to allow portrait support :)

this one is good, but it doesnt scroll down when you send a message

maxximuscool 2011-03-03 02:15

Re: Customize N900 Conversations
 
1 Attachment(s)
Quote:

Originally Posted by f2thak (Post 959305)
this one is good, but it doesnt scroll down when you send a message

It's only for the look but wasn't practical enough :)

Here is what I've created. Took me a good 15hours of insane testing and late night hacking in bed and at work.

http://img837.imageshack.us/img837/3277/screeniesu.png

maemo55 2011-03-03 05:17

Re: Customize N900 Conversations
 
@maxximuscool

thanks alot !!

very nice

but can you change Green colour for sms sender ? :) ( me )

like this

http://talk.maemo.org/showpost.php?p...&postcount=791

and i like this blue in up link :D

maemo55 2011-03-03 05:27

Re: Customize N900 Conversations
 
Quote:

Originally Posted by f2thak (Post 959305)
this one is good, but it doesnt scroll down when you send a message

yes this problem is very bad :(

maxximuscool 2011-03-03 06:02

Re: Customize N900 Conversations
 
Quote:

Originally Posted by maemo55 (Post 959405)
@maxximuscool

thanks alot !!

very nice

but can you change Green colour for sms sender ? :) ( me )

like this

http://talk.maemo.org/showpost.php?p...&postcount=791

I want to keep it original. So other people wouldn't have the same design, and if all Conversations themes are the same in colour and variety then won't it make all them redundance?

You can change it to your preferences or taste in CSS file :) just swap them around. The problem is if you change the colour of the bubble then you'll have to change the font colour and for LINKs will not able show up in the bubble properly. I mainly focusing on readability than looks. Looks come after usability :)

No point of having flashy UI if it doesn't work properly right?

niqbal 2011-03-03 06:11

Re: Customize N900 Conversations
 
Quote:

Originally Posted by Dark_Angel85 (Post 959289)
there'll be no avatars for that iphone inspired theme?

Actually that was the starting point, taking out avatars. Anyways, i am gonna work today on making the arrows look better and re-upload the files hopefully by tonight ~

debjitbis08 pointed me in the right direction

5spdvl 2011-03-03 06:29

Re: Customize N900 Conversations
 
Not sure is this helps anyone, but I was unable to get my own avatar to show up. I had used various mod packs, replaced the file, created new images; all to no avail.

If you use Windows desktop and create the avatar in MS Paint, you need to rename the file to "avatar.png" (all lower case). My XP machine saved it as avatar.PNG, which prevented the image from showing up. :)

debjitbis08 2011-03-03 06:57

Re: Customize N900 Conversations
 
Quote:

Originally Posted by niqbal (Post 959428)
Actually that was the starting point, taking out avatars. I honestly thought taking out a few html tags would do it but it turned to be a *****. Anyways, i am gonna work today on making the arrows look better and re-upload the files hopefully by tonight ~

I think rather than removing tags, better use display: none, and never change the ids.

5spdvl 2011-03-03 15:04

Re: Customize N900 Conversations
 
Quote:

Originally Posted by b666m (Post 502404)
the css file :)
(just look a few pages back - there is the discussion about this topic ^^)



yep.
just edit the .js-file.

Code:

if (item.name_str != "") {
        name_tag.textContent = item.name_str;
    }

to
Code:

if (item.name_str != "") {
        name_tag.textContent = item.name_str;
    }

if (item.name_str != "" && item.self) {
        name_tag.textContent = "b666m";
    }

(replace b666m for your desired nick ^^)
haven't tested it but it should work :)

This worked great to remove the "You:" by replacing it with just "", but how do you remove the sender's name from the message bubble?

Perhaps:

if (item.name_str != "") {
name_tag.textContent = item.name_str;
}

if (item.name_str != "" && item.Other) {
name_tag.textContent = "";

Or maybe sender?

iscio 2011-03-03 15:46

Re: Customize N900 Conversations
 
so is it possibile to change "You" in "My name"???

niqbal 2011-03-03 16:52

Re: Customize N900 Conversations
 
Quote:

Originally Posted by 5spdvl (Post 959727)
This worked great to remove the "You:" by replacing it with just "", but how do you remove the sender's name from the message bubble?

Perhaps:

if (item.name_str != "") {
name_tag.textContent = item.name_str;
}

if (item.name_str != "" && item.Other) {
name_tag.textContent = "";

Or maybe sender?

if you want to remove sender's name, just put an empty string

Code:

if (item.name_str != "") {
  var name = item.name_str;
  name = "";
  name_tag.textContent = name;
}

if you want to remove both names, thats simple. at the end of this message function, add

Code:

name_tag.textContent = "";

niqbal 2011-03-03 20:11

Re: Customize N900 Conversations
 
2 Attachment(s)
Re-uploading Iphone influenced SMS window

basically worked on the side arrows to make them look better and have a better speech bubble feel to it.
  • only first name of sender is shown
  • width of bubble is dependent on the message
  • even gap between messages

i don't own an iphone. if someone can kindly experiment with better green and gray shades. thx

godofwar424 2011-03-03 22:12

Re: Customize N900 Conversations
 
I have updated my previous theme with some bug fixes and also some other options!

Check the updates here :)


Please check it out and let me know what you think :)

I have updated the wiki for this theme.

I am aware of the bug where it doesn't scroll to the bottom after sending a message, but I am not sure how to solve this issue. If someone tells me how to I will implement it into my themes :)

5spdvl 2011-03-04 00:03

Re: Customize N900 Conversations
 
So:

if (item.name_str != "") {
var name = item.name_str;
name = "";
name_tag.textContent = name;
name_tag.textContent = "";
}

...as the entire function to remove both names?

Edit: works nicely, thanks mate. :cool:

thej80 2011-03-04 06:22

Re: Customize N900 Conversations
 
Quote:

Originally Posted by niqbal (Post 959936)
Re-uploading Iphone influenced SMS window

basically worked on the side arrows to make them look better and have a better speech bubble feel to it.
  • your own name is omitted
  • only first name of sender is shown
  • width of bubble is dependent on the message
  • alternate gap is given between messages

i don't own an iphone. if someone can kindly experiment with better green and gray shades. thx

hi, for me this theme shows the last name of the sender, maybe because i have addressbook set to show last name first?

edit. yes it is because of the addressbook setting to show last name first.

what file do i have to edit to get the backround black? i know this is an iphone style conversation mod, but i still prefer a darker backround to fit for the rest of ui.

thanks for the mods :)

niqbal 2011-03-04 06:31

Re: Customize N900 Conversations
 
Quote:

Originally Posted by thej80 (Post 960265)
hi, for me this theme shows the last name of the sender, maybe because i have addressbook set to show last name first?

what file do i have to edit to get the backround black? i know this is an iphone style conversation mod, but i still prefer a darker backround to fit for the rest of ui.

thanks for the mods :)

edit .html file.

Code:

<html>
<head>
<body bgcolor="#F0F0F0"

change that value to "black", thats it

iscio 2011-03-04 08:01

Re: Customize N900 Conversations
 
Quote:

Originally Posted by godofwar424 (Post 960044)
I have updated my previous theme with some bug fixes and also some other options!

Check the updates here :)


Please check it out and let me know what you think :)

I have updated the wiki for this theme.

I am aware of the bug where it doesn't scroll to the bottom after sending a message, but I am not sure how to solve this issue. If someone tells me how to I will implement it into my themes :)



wow, good work...is it possible to you adjust also the theme that I use? post #831

ejasmudar 2011-03-04 08:30

Re: Customize N900 Conversations
 
I have started a thread for the scripts that i have been working on:http://talk.maemo.org/showthread.php?p=960308

Right now it can install themes, restore/backup themes, add portrait mode support (not guaranteed for custom themes) and change own name in SMS window.

I am also planning to add features for changing the colours, etc

Excesv 2011-03-04 15:20

Customize N900 Conversations
 
4 Attachment(s)
Alright.. after all my tinkering around i came up with this. All the colors can be changed or deleted to go back to factory.

I have no idea how you could link the fastSMS applications keyboard to this but that would be awesome.

Thanks to jimmyr.com for teaching me html in 39 minutes.. ha ha choice

Hey guys i noticed it still has "Excesv" in these file. Hopefully you guys know how to change this?... If not, edit the .js file. if your are using notepad++ the command you want to change is on line 435. If not it may take some time to find. You are looking for

if (item.name_str != "") {
name_tag.textContent = item.name_str;
}

if (item.name_str != "" && item.self) {
name_tag.textContent = "Excesv";

Just change "Excesv" to Something else. Leave the " " surrounding the text.

Thanks to everyone on this thread.

Improved version just has nicer margins around the avatar.Also bug fig for message other clicked.. :)

cutehunk04 2011-03-04 15:36

Re: Customize N900 Conversations
 
Quote:

Originally Posted by niqbal (Post 959936)
Re-uploading Iphone influenced SMS window

basically worked on the side arrows to make them look better and have a better speech bubble feel to it.
  • only first name of sender is shown
  • width of bubble is dependent on the message
  • even gap between messages

i don't own an iphone. if someone can kindly experiment with better green and gray shades. thx



great...a new sms conversation feels like...good work mate

iscio 2011-03-04 16:12

Re: Customize N900 Conversations
 
1 Attachment(s)
please help me...these are my files but I am not able to modify them to have the correct size in landscape and in portrait like Excesv

iscio 2011-03-04 16:16

Re: Customize N900 Conversations
 
Quote:

Originally Posted by Harick (Post 957559)
here you go

if you want more or less space between the messages, just edit this margin-top in MessagingWidgetsSMSConversation.css

Code:

div.Message {       
  clear: both;
  margin-top: 10px;
}

higher value means more space while lower means less space


EDIT.: sorry, i didn't notice the empty spaces, i will upload a fix when i find what it is

have you found the solution?

iscio 2011-03-04 16:19

Re: Customize N900 Conversations
 
Quote:

Originally Posted by cloud596 (Post 956674)
if not to bother would u mind to make it run on potrait mode related to CSSU

have you find a solution to this theme?

Harick 2011-03-04 19:12

Re: Customize N900 Conversations
 
5 Attachment(s)
Quote:

Originally Posted by iscio (Post 960683)
have you found the solution?

i found the problem, but not the solution yet, still working on it


EDIT.: ok, i made an iphone like conversation, hope you like it. the zip contains both versions, with and without avatars. extract everything into the html folder.



if you find any bug, let me know and i'll try to fix it. also let me know if you like those bubble colors or if you prefer anothers

illo1977 2011-03-04 22:51

Re: Customize N900 Conversations
 
Quote:

Originally Posted by Harick (Post 960777)
i found the problem, but not the solution yet, still working on it

btw, here is a wip of mi iphone-like conversation, will post it when i fix some bugs

Wow, I would like it. How do you make that bubles?

Harick 2011-03-04 23:10

Re: Customize N900 Conversations
 
Quote:

Originally Posted by illo1977 (Post 960885)
Wow, I would like it. How do you make that bubles?

i cropped a bubble image and made the message with tables, old school but hey, it works :p

i've updated my previous post, now you can download it

illo1977 2011-03-04 23:21

Re: Customize N900 Conversations
 
Thanks :) The skin you have uploaded is the one with the Avatar or the second without avatar?

ops :D i found both the skins. Thank yoy very much :)

niqbal 2011-03-05 01:46

Re: Customize N900 Conversations
 
Quote:

Originally Posted by Harick (Post 960777)
i found the problem, but not the solution yet, still working on it


EDIT.: ok, i made an iphone like conversation, hope you like it. the zip contains both versions, with and without avatars. extract everything into the html folder.



if you find any bug, let me know and i'll try to fix it. also let me know if you like those bubble colors or if you prefer anothers

love it wonderful to see how little things slowly evolved. i think your bubble work is what was missing. it completes it.

Transcend 2011-03-05 04:29

Re: Customize N900 Conversations
 
Quote:

Originally Posted by Harick (Post 960777)
i found the problem, but not the solution yet, still working on it


EDIT.: ok, i made an iphone like conversation, hope you like it. the zip contains both versions, with and without avatars. extract everything into the html folder.



if you find any bug, let me know and i'll try to fix it. also let me know if you like those bubble colors or if you prefer anothers

Any chance of making this for im conversations?:D

Harick 2011-03-05 05:48

Re: Customize N900 Conversations
 
3 Attachment(s)
Quote:

Originally Posted by Transcend (Post 961003)
Any chance of making this for im conversations?:D

yeah, why not, it looks more like an IM than an sms to me, i'll do it.

Meanwhile here is arora.rohan's request, black background, red & white bubbles, hope you like it.

maemo55 2011-03-05 06:14

Re: Customize N900 Conversations
 
Quote:

Originally Posted by Harick (Post 961025)
yeah, why not, it looks more like an IM than an sms to me, i'll do it.

Meanwhile here is arora.rohan's request, black background, red & white bubbles, hope you like it.

Please make both avatar left :):D with IM support

and change red colour to green or blue colour

Dark_Angel85 2011-03-05 11:04

Re: Customize N900 Conversations
 
hmmm... anyway to get the IM Conversations to support portrait with the default layout?

freemangordon 2011-03-05 11:07

Re: Customize N900 Conversations
 
Look in the CSSU thread, there is a post pointing at bugzilla, where there is a patch for stock conversation layout

ejasmudar 2011-03-05 11:25

Re: Customize N900 Conversations
 
Quote:

Originally Posted by Dark_Angel85 (Post 961104)
hmmm... anyway to get the IM Conversations to support portrait with the default layout?

Try this http://talk.maemo.org/showthread.php?t=70623. It has support for portrait mode for stock SMS/IM.

arora.rohan 2011-03-05 13:59

Re: Customize N900 Conversations
 
Quote:

Originally Posted by Harick (Post 961025)
yeah, why not, it looks more like an IM than an sms to me, i'll do it.

Meanwhile here is arora.rohan's request, black background, red & white bubbles, hope you like it.

WOW! this is perfect!! love it :) ! i love this community!

arora.rohan 2011-03-05 14:15

Re: Customize N900 Conversations
 
Hey, Harick...my IM's seem to be FUBAR.. all garbled.. :( !
can make one for ims in red and white color? pretty please! :) !

geojoking 2011-03-05 14:32

Re: Customize N900 Conversations
 
@Harick

Could you please make a version with the following:
- BLACK background
- blue/gray bubbles (like in your first design), but I'd like the color text in the blue bubble to be BLACK
- make it display both last name and first name in the information above the message

Thanks in advance, this is by far the most nicest Conversations theme design.

Also, if you'd make the IM as well, it'd be great.

godofwar424 2011-03-05 14:45

Re: Customize N900 Conversations
 
Quote:

Originally Posted by Harick (Post 961025)
yeah, why not, it looks more like an IM than an sms to me, i'll do it.

Meanwhile here is arora.rohan's request, black background, red & white bubbles, hope you like it.

Awesome!

Is there any chance you could do one with Lime Green and Light Blue bubbles with a black background?

Would be much appreciated :)


All times are GMT. The time now is 15:39.

vBulletin® Version 3.8.8