maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Applications (https://talk.maemo.org/forumdisplay.php?f=41)
-   -   [SFOS] [CLOSED] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread (https://talk.maemo.org/showthread.php?t=92160)

coderus 2014-04-04 08:54

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
what are you talking about?

rooster13 2014-04-04 08:57

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
The bubble for messages I sent is missing.
There is only a bubble for the messages received.

parasemic 2014-04-04 09:05

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
For me, bubbles works fine and maybe the only bug was fixed (messages going over bubble, but fixed when opening the convo again). still need to confirm, tho

rooster13 2014-04-04 09:14

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
Quote:

Originally Posted by parasemic (Post 1419859)
For me, bubbles works fine and maybe the only bug was fixed (messages going over bubble, but fixed when opening the convo again). still need to confirm, tho

Try changing to the new Modern theme and then back to Bubbles. Won't work for me anymore.

parasemic 2014-04-04 09:17

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
Quote:

Originally Posted by rooster13 (Post 1419860)
Try changing to the new Modern theme and then back to Bubbles. Won't work for me anymore.

No issue here

coderus 2014-04-04 10:06

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
this one? https://github.com/CODeRUS/mitakuulu...mment-39538162

rooster13 2014-04-04 11:01

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
Quote:

Originally Posted by coderus (Post 1419867)

Yes exactly. Was just about to post a screenshot. Thanks.

coderus 2014-04-04 11:11

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
this bug is already fixed. you need to download updated package and reinstall

Schturman 2014-04-04 11:21

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
Hi to all.
Maybe someone know how to fix right right-to-left languages problem? Don't know why, but Coderus don't want to fix it...
Oldschool theme have all messages sticked to the left side.
Bubbles theme show correctly arrived messages but my sent messages also sticked to the left side.
All emoji always sticked to the end of line for left-to-right languages and this is a reason that emoji shown in the middle of the line for right-to-left languages.
Maybe creator of BubbleDelegat.qml can fix for at least the messages ?
Thanks

Penguin 2014-04-04 11:51

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
There is no problem. Regardless of if language is written from left to right or right to left text alignment in bubble delegate is left for messages you sent and right for messages received.

May be that should be left-left for left-to-right languages and right-right for right-to-left languages. Need to check how it would look like.

Edit:

Copy /usr/share/harbour-mitakuuluu/qml/BubbleDelegate.qml to ~/.whatsapp/delegates/BubbleDelegate.qml and apply following patch.

Code:

--- /usr/share/harbour-mitakuuluu/qml/BubbleDelegate.qml        2014-04-04 10:50:21.000000000 +0300
+++ BubbleDelegate.qml        2014-04-04 14:55:37.504880480 +0300
@@ -43,7 +43,6 @@
            timeStatusRow.anchors.left = item.left;
            timeStatusRow.anchors.leftMargin = Theme.paddingLarge;
            msginfo.horizontalAlignment = Text.AlignLeft;
-            msg.horizontalAlignment = Text.AlignLeft;
            playerPlaceholder.anchors.right = item.right
            playerPlaceholder.anchors.leftMargin = Theme.paddingSmall
            setTickView();
@@ -70,7 +69,6 @@
                msginfo.horizontalAlignment = Text.AlignRight;
                msg.anchors.right = item.right;
                msg.anchors.rightMargin = Theme.paddingLarge;
-                msg.horizontalAlignment = Text.AlignRight;
                timeStatusRow.anchors.right = item.right;
                timeStatusRow.anchors.rightMargin = Theme.paddingLarge;
            }

Then select BubbleDelegate.qml from settings and there you have it. It does not mirrow the whole UI, it only makes text align naturally either to left or right depending on writing in use.

rooster13 2014-04-04 12:16

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
Quote:

Originally Posted by coderus (Post 1419876)
this bug is already fixed. you need to download updated package and reinstall

Hi, I'm already having the latest version.
Actually this happened after I updated to the latest version.

Schturman 2014-04-04 17:02

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
Quote:

Originally Posted by Penguin (Post 1419878)
There is no problem. Regardless of if language is written from left to right or right to left text alignment in bubble delegate is left for messages you sent and right for messages received.

May be that should be left-left for left-to-right languages and right-right for right-to-left languages. Need to check how it would look like.

Edit:

Copy /usr/share/harbour-mitakuuluu/qml/BubbleDelegate.qml to ~/.whatsapp/delegates/BubbleDelegate.qml and apply following patch.

Code:

--- /usr/share/harbour-mitakuuluu/qml/BubbleDelegate.qml    2014-04-04 10:50:21.000000000 +0300
+++ BubbleDelegate.qml    2014-04-04 14:55:37.504880480 +0300
@@ -43,7 +43,6 @@
            timeStatusRow.anchors.left = item.left;
            timeStatusRow.anchors.leftMargin = Theme.paddingLarge;
            msginfo.horizontalAlignment = Text.AlignLeft;
-            msg.horizontalAlignment = Text.AlignLeft;
            playerPlaceholder.anchors.right = item.right
            playerPlaceholder.anchors.leftMargin = Theme.paddingSmall
            setTickView();
@@ -70,7 +69,6 @@
                msginfo.horizontalAlignment = Text.AlignRight;
                msg.anchors.right = item.right;
                msg.anchors.rightMargin = Theme.paddingLarge;
-                msg.horizontalAlignment = Text.AlignRight;
                timeStatusRow.anchors.right = item.right;
                timeStatusRow.anchors.rightMargin = Theme.paddingLarge;
            }

Then select BubbleDelegate.qml from settings and there you have it. It does not mirrow the whole UI, it only makes text align naturally either to left or right depending on writing in use.

Thanks for answer, I will try it.But can you please explain how to use it ?
From what I understand, copy BubbleDelegate.qml to /home/nemo/.whatsapp/delegates/BubbleDelegate.qml - is for backup. Right ?
And for patch, I need create file "name.diff" with what you wrote and apply it by this command:
Code:

patch -p0 -i /path/to/name.diff
I'm right ?
Thanks

P.S. And maybe command for restore to default instead just copy back the orig. BubbleDelegate.qml ?

coderus 2014-04-04 18:26

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
just opening related file and changing lines manually is too trivial today and need to follow more complex and unknown (yet?) methods?

Schturman 2014-04-04 18:32

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
Quote:

Originally Posted by coderus (Post 1419918)
just opening related file and changing lines manually is too trivial today and need to follow more complex and unknown (yet?) methods?

This what I did now, I checked the orig file and the patch and I see the same :confused:

millerii 2014-04-04 19:00

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
offtopic: coderus, what it takes to get custom "folder" inside gallery? That what there is nowdays from mitakuuluu, can it be done without spesific program (like mitakuuluu)?

Penguin 2014-04-04 19:28

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
Check /usr/share/jolla-gallery/mediasources/MitakuuluuMediaSource.qml

coderus 2014-04-04 20:59

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
@Schturman as i said: i cant help you more. My jolla doesnt support your language and i cant see difference anyway.

Schturman 2014-04-04 21:53

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
yep, i know, thanks anyway ... But once you fixed it on "Oldschool" theme ;)

Penguin 2014-04-04 23:59

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
1 Attachment(s)
Come on Schturman, how difficult it can be. Just remove those two lines from BubbleDelegate and there you have it.

1) Close or Quit Mitäkuuluu

2) Save the attached file as BubbleDelegate.qml into folder ~nemo/.whatsapp/delegates

3) Start Mitäkuuluu
4) Go to settings
5) Select BubbleDelegate.qml (and not the Bubble)

your issue is solved. Tested with Arabic and Hebrew, text and fonts supporting characters and write used by those languages.

If your right to left written text does not float "correctly" after this change, then you have broken font in use. Thats because writing direction right-to-left is defined by font file, not by application.

Schturman 2014-04-05 15:56

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
Quote:

Originally Posted by Penguin (Post 1419945)
Come on Schturman, how difficult it can be. Just remove those two lines from BubbleDelegate and there you have it.

1) Close or Quit Mitäkuuluu

2) Save the attached file as BubbleDelegate.qml into folder ~nemo/.whatsapp/delegates

3) Start Mitäkuuluu
4) Go to settings
5) Select BubbleDelegate.qml (and not the Bubble)

your issue is solved. Tested with Arabic and Hebrew, text and fonts supporting characters and write used by those languages.

If your right to left written text does not float "correctly" after this change, then you have broken font in use. Thats because writing direction right-to-left is defined by font file, not by application.

Ok.. I will try to explain itself better..

1. I did what you said and it's looks exactly like original Bubble theme.
2. Look into this pic (left side is my messages and right side is arrived messages):
https://dl.dropboxusercontent.com/u/...0405103618.jpg

1. it's only one word and like you can see it's sticked to the left side INSIDE the bubble instead to be sticked to the right side INSIDE the bubble.

2. Sentence shown CORRECTLY (sticked to the right side), but the guy sent emoji at the end and like you can see emoji shown at the middle of sentence instead at the end.

3. my long sentence - shown "correctly", but it still sticked to the left side. If it was one word, you would see that sticked to the left side (example 1)

I can live with it if it can't be fixed, only emoji not so convenient...

P.S. I use FreeSans.ttf font. And thanks for your help

coderus 2014-04-05 16:59

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
first of all: forget about proper emoji align. its Qt bug and nobody can fix it.
For RTL this is best of my offers: http://paste.ubuntu.com/7208542/

Schturman 2014-04-05 20:24

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
Quote:

Originally Posted by coderus (Post 1420016)
first of all: forget about proper emoji align. its Qt bug and nobody can fix it.
For RTL this is best of my offers: http://paste.ubuntu.com/7208542/

Thanks for explanation about emoji. About RTL It broke some stuff, look this pic:
https://dl.dropboxusercontent.com/u/...0405221253.jpg

Never mind, I will live with existed Bubble theme.
Thank you and to Penguin !

Penguin 2014-04-05 21:05

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
Schturman: your font must be broken. Need to find a font which properly tells to the system its right-to-left writing.

Schturman 2014-04-05 22:16

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
thanks, i will try to play with different fonts..

d0n_Egg1 2014-04-07 16:57

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
i've still the problem, that i'm not able to send and receive messages after one hour of inactivity (powersaving modus?)... is someone out there expiriencing the same problems? or does anyone have a workaround for that problem?

i've already deleted the account from jolla and servers, as coderus stated it a few days ago...:confused:

coderus 2014-04-07 17:05

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
so, after inactivity you receiving messages after opening mitakuuluu window or after reconnection?

d0n_Egg1 2014-04-07 17:17

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
after reconnection

marcoita 2014-04-07 19:17

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
same here! Trying the different workarounds, but it is still the same... not sure if it is due to jolla suspend mode, tried also with early suspend and it is the same...

I noticed today two behaviors...
1) when coming back to the phone after a while, you open mitakuuluu window and you see that it says logged in, and the reconnects ands you get the messages. it would be nice to have the messages without having to come back to the app, so you can be notified. (this works but not after a while)

2) Sometimes you need to close, and reopen the application to get the messages received.

It would be great to solve this, weather there are special settings, or whatever...

I don´t want to blame iCoderus as he is doing a superb job, I will like to help in this issue as I find this a hard issue on my jolla now. at the moment nor mitakuuluu or android whatsapp seem to be reliable regarding notifications...

Thanks icoderus again and let us know if could help in any way...

:)

coderus 2014-04-07 19:38

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
i cant suggest you anything new, only removing account from server and creating new.

richhanz 2014-04-07 20:31

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
In this matter I don't rule out the jolla itself as well. Laying at the table, not moving, sometimes the jolla becomes unreachable for ssh after a while. Only after pinging to the outside for establishing a network connection. Often I have a terminal open on the jolla just for ping. If ping works I can do network related things, if not switching WiFi off and on mostly works, or flight mode, else a reboot.

d0n_Egg1 2014-04-07 20:32

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
isn't there a simplay way to 'fool' the suspend mode? like make a ping every 30mins or something like that?
or has this problem nothing to do with suspend mode?
seems to be a weird problem... not every one has this problem?!

parasemic 2014-04-07 20:56

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
sure none of you arent using WLAN? its a known issue with wlan but shouldnt happen with mobile data

marcoita 2014-04-07 21:14

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
Regarding to suspend, it is possible to change the default mode set to enabled, to disabled or early suspend.

You can see for instance, connect using ssh, that if you do a vmstat 1 with default suspend, once the screen is off, you won't see any more lines from vmstat running.

This won't happen if you use early suspend, but as far as I know, this does not seem to be really related to Mitakuuluu...

(to try with suspend... mcetool --set-suspend-policy=early - more info here: http://talk.maemo.org/showthread.php?t=92183&page=3)

d0n_Egg1 2014-04-08 06:14

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
Quote:

Originally Posted by parasemic (Post 1420309)
sure none of you arent using WLAN? its a known issue with wlan but shouldnt happen with mobile data

i have the problems with wlan and mobile data...
usually the jolla won't go to suspend mode, when it's charging, right?
i charged the phone over the night, but on the morning i had to reconnect mitakuuluu to receive and send messages (over mobile data)
either my jolla is broken or i'm totally ******ed :)

parasemic 2014-04-08 11:22

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
Quote:

Originally Posted by d0n_Egg1 (Post 1420346)
i have the problems with wlan and mobile data...
usually the jolla won't go to suspend mode, when it's charging, right?
i charged the phone over the night, but on the morning i had to reconnect mitakuuluu to receive and send messages (over mobile data)
either my jolla is broken or i'm totally ******ed :)

Im not sure. ive never had issues with mobile data, but Jolla seems to "cut off" wlan connection after a while so i dont get messages until opening mitäkuukuu. ive been fine with sticking to mobile 24/7

az2111 2014-04-08 11:35

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
This is the way i solved the problem.

Factory reset, install all jolla updates.
install last mitakuuluu. choose in settings of mitakuuluu always online.

i get all messages in wlan or with mobile data.

greets az2111

Shikantaza 2014-04-08 16:32

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
Am I the only one having this problem:
received pictures are not downloaded any more. When I click on the received miniature picture Mitäkuuluu says "Download started" but nothing happens. The counter next to the miniature picture stays at 1% and then the message disappears again. Of course, I use the latest version. It used to work, but I don't know what I did, before it stopped working. Couldn't find the bug in Github.

Any ideas what could be wrong?

Shikantaza 2014-04-08 16:41

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
And I have network coverage, I tried WLAN, mobile data, restart of Mitäkuuluu and reboot of the phone, but nothing helps ...

d0n_Egg1 2014-04-09 08:26

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
i'm now going to try with the "always online" setting.
hopefully that solves the problem. on the otherhand it isn't that cool to be "always online". but when it solves the problem, then i'm fine with it :D

parasemic 2014-04-09 10:41

Re: [v0.2-10] Mitakuuluu - indie WhatsApp client for Sailfish - Support thread
 
now that i think of it, ive always used the "always online" option


All times are GMT. The time now is 09:05.

vBulletin® Version 3.8.8