Re: qtmoko v45

2012-07-10 Thread Radek Polak
On Monday, July 09, 2012 10:12:49 PM Marc Langlois wrote:

 Hi,
 
 I confirm with the command AT_OWANCALL=1,1,1, the connection works
 (I ping google.com).
 
 Now I have two questions:
 How to run the GUI for controlling the UMTS connection?

This is still TODO for QtMoko- it needs some C++ code in GTA04 modems plugin.

Regards

Radek

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: qtmoko v45

2012-07-09 Thread Marc Langlois
Hi,

I confirm with the command AT_OWANCALL=1,1,1, the connection works
(I ping google.com).

Now I have two questions:
How to run the GUI for controlling the UMTS connection? and Why it
does not work now (software installation as Navit can break the
connection login scripts) ?

Thank you again for your help.

Marc


2012/7/2 NeilBrown ne...@suse.de:
 On Mon, 2 Jul 2012 21:57:28 +0200 Marc Langlois langlois.m...@gmail.com
 wrote:

 Hi,

 After execution of Neil Brown's howto for GPRS on the GTA04, I would
 conclude as:
 + For the connection to /dev/ttyHS3, I use minicom with the default
 settings but the connection does not work consistently.
 + AT+CFUN = 3D1 (set phone functions on), and AT_OWANCALL=3D1,1,1
 returns me ERROR.

 Here is my log:
 AT+COPS
 OK
 AT+COPS?
 + COPS: 0,0, 004f00720061006e0067006500200046, 0

 OK
 AT_OWANCALL = 3D1,1,1

 Try dropping the spaces and the '3D' (which a mime-encoding artefact  - '='
 is sometimes encoded in email messages as '=3D').
 So:

   AT_OWANCALL=1,1,1

 NeilBrown


 ERROR
 AT_OWANDATA?
 OK

 What are the tips for the connection débuger?
 Can you used the modem mode multiplexing (neocontrol) with a GTA04A4?
 The UMTS signal reception is good in my house.

 Best regards,

 Marc

 Neil Jerram neil at ossau.homelinux.net writes:
  Marc Langlois langlois.marc at gmail.com writes:
 
  Neil,
 
  My phone is GTA04A4.
 
  Ah, thanks.  Has GPRS actually been integrated yet in QtMoko on the
  GTA04?  I'm not sure that it has.
 
 For ease of reference, here's Neil Brown's howto for GPRS on the GTA04
 (and which it's well worth creating another copy of):
 
  0/ connect to /dev/ttyHS3  (others might work)
  1/ make sure you are registered with network.
e.g.
   AT+CFUN=3D1
   AT+COPS
   AT+COPS?
 
  2/ establish data connection
   AT_OWANCALL=3D1,1,1
 
  3/ collect status
 
 AT_OWANDATA?
My response was
 _OWANDATA: 1, 49.179.102.244, 0.0.0.0, 211.29.132.12, 61.88.88.88, 
  0.0.0=
  .0, 0.0.0.0,144000
   ^IP address   ^  ^DNS-1--^  ^DNS-2^
 
  4/  configure network
 
  ifconfig hso0 49.179.102.244 up
  route add default dev hso0
 
  echo nameserver 211.29.132.12  /etc/resolv.conf
  echo nameserver 61.88.88.88  /etc/resolv.conf
 
 
 
 
  And you should be set to go.  If you want tethering via USB then add:
   on GTA04:
  echo 1  /proc/sys/net/ipv4/ip_forward=20
  iptables -t nat -A POSTROUTING -s 192.168.0.200 -j MASQUERADE
 
 (here 192.168.0.200 is the IP of my notebook on the USB interface.)
 
   on notebook/desktop/whatever
 
  route add default gw 192.168.0.202
  echo nameserver 211.29.132.12  /etc/resolv.conf
  echo nameserver 61.88.88.88  /etc/resolv.conf
 
 (192.168.0.202 is IP of GTA04 of USB link).
 
  To terminate data call
 
AT_OWANDATA=3D1,0,1
 
 
  You don't need pppd at all.
 
 But there are no occurrences of OWAN in the qtmoko codebase - so I'm
 pretty sure it hasn't been integrated yet.
 
   Neil

 ___
 Openmoko community mailing list
 community@lists.openmoko.org
 http://lists.openmoko.org/mailman/listinfo/community


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: QtMoko v45

2012-07-02 Thread Robin Paulson
On 13 June 2012 10:40, Radek Polak pson...@seznam.cz wrote:
 Hi,
 QtMoko v45 is out now. You can get images for GTA02 (Freerunner) here[1] and
 GTA04 (Phoenux) here[2].

 For more info about QtMoko please visit our homepage [3].

 This is list of changes since previous v44 version:

   * fixed wifi password not saving problem
   * new big transparent keyboard
   * GTA04 has new 3.4 kernel thanks to Neil Brown

great to see qtmoko progressing more, v45-1 installing now. i see that
GTA02 only gets kernel 2.6.34, is there any reason why not a more
recent kernel, like GTA04 has? is there something missing upstream,
radek?

-- 
robin

http://fu.ac.nz - Auckland's Free University

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


RE: qtmoko v45

2012-07-02 Thread Marc Langlois
Hi,

After execution of Neil Brown's howto for GPRS on the GTA04, I would
conclude as:
+ For the connection to /dev/ttyHS3, I use minicom with the default
settings but the connection does not work consistently.
+ AT+CFUN = 3D1 (set phone functions on), and AT_OWANCALL=3D1,1,1
returns me ERROR.

Here is my log:
AT+COPS
OK
AT+COPS?
+ COPS: 0,0, 004f00720061006e0067006500200046, 0

OK
AT_OWANCALL = 3D1,1,1
ERROR
AT_OWANDATA?
OK

What are the tips for the connection débuger?
Can you used the modem mode multiplexing (neocontrol) with a GTA04A4?
The UMTS signal reception is good in my house.

Best regards,

Marc

Neil Jerram neil at ossau.homelinux.net writes:
 Marc Langlois langlois.marc at gmail.com writes:

 Neil,

 My phone is GTA04A4.

 Ah, thanks.  Has GPRS actually been integrated yet in QtMoko on the
 GTA04?  I'm not sure that it has.

For ease of reference, here's Neil Brown's howto for GPRS on the GTA04
(and which it's well worth creating another copy of):

 0/ connect to /dev/ttyHS3  (others might work)
 1/ make sure you are registered with network.
   e.g.
  AT+CFUN=3D1
  AT+COPS
  AT+COPS?

 2/ establish data connection
  AT_OWANCALL=3D1,1,1

 3/ collect status

AT_OWANDATA?
   My response was
_OWANDATA: 1, 49.179.102.244, 0.0.0.0, 211.29.132.12, 61.88.88.88, 0.0.0=
 .0, 0.0.0.0,144000
  ^IP address   ^  ^DNS-1--^  ^DNS-2^

 4/  configure network

 ifconfig hso0 49.179.102.244 up
 route add default dev hso0

 echo nameserver 211.29.132.12  /etc/resolv.conf
 echo nameserver 61.88.88.88  /etc/resolv.conf




 And you should be set to go.  If you want tethering via USB then add:
  on GTA04:
 echo 1  /proc/sys/net/ipv4/ip_forward=20
 iptables -t nat -A POSTROUTING -s 192.168.0.200 -j MASQUERADE

(here 192.168.0.200 is the IP of my notebook on the USB interface.)

  on notebook/desktop/whatever

 route add default gw 192.168.0.202
 echo nameserver 211.29.132.12  /etc/resolv.conf
 echo nameserver 61.88.88.88  /etc/resolv.conf

(192.168.0.202 is IP of GTA04 of USB link).

 To terminate data call

   AT_OWANDATA=3D1,0,1


 You don't need pppd at all.

But there are no occurrences of OWAN in the qtmoko codebase - so I'm
pretty sure it hasn't been integrated yet.

  Neil

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: qtmoko v45

2012-07-02 Thread NeilBrown
On Mon, 2 Jul 2012 21:57:28 +0200 Marc Langlois langlois.m...@gmail.com
wrote:

 Hi,
 
 After execution of Neil Brown's howto for GPRS on the GTA04, I would
 conclude as:
 + For the connection to /dev/ttyHS3, I use minicom with the default
 settings but the connection does not work consistently.
 + AT+CFUN = 3D1 (set phone functions on), and AT_OWANCALL=3D1,1,1
 returns me ERROR.
 
 Here is my log:
 AT+COPS
 OK
 AT+COPS?
 + COPS: 0,0, 004f00720061006e0067006500200046, 0
 
 OK
 AT_OWANCALL = 3D1,1,1

Try dropping the spaces and the '3D' (which a mime-encoding artefact  - '='
is sometimes encoded in email messages as '=3D').
So:

  AT_OWANCALL=1,1,1

NeilBrown


 ERROR
 AT_OWANDATA?
 OK
 
 What are the tips for the connection débuger?
 Can you used the modem mode multiplexing (neocontrol) with a GTA04A4?
 The UMTS signal reception is good in my house.
 
 Best regards,
 
 Marc
 
 Neil Jerram neil at ossau.homelinux.net writes:
  Marc Langlois langlois.marc at gmail.com writes:
 
  Neil,
 
  My phone is GTA04A4.
 
  Ah, thanks.  Has GPRS actually been integrated yet in QtMoko on the
  GTA04?  I'm not sure that it has.
 
 For ease of reference, here's Neil Brown's howto for GPRS on the GTA04
 (and which it's well worth creating another copy of):
 
  0/ connect to /dev/ttyHS3  (others might work)
  1/ make sure you are registered with network.
e.g.
   AT+CFUN=3D1
   AT+COPS
   AT+COPS?
 
  2/ establish data connection
   AT_OWANCALL=3D1,1,1
 
  3/ collect status
 
 AT_OWANDATA?
My response was
 _OWANDATA: 1, 49.179.102.244, 0.0.0.0, 211.29.132.12, 61.88.88.88, 
  0.0.0=
  .0, 0.0.0.0,144000
   ^IP address   ^  ^DNS-1--^  ^DNS-2^
 
  4/  configure network
 
  ifconfig hso0 49.179.102.244 up
  route add default dev hso0
 
  echo nameserver 211.29.132.12  /etc/resolv.conf
  echo nameserver 61.88.88.88  /etc/resolv.conf
 
 
 
 
  And you should be set to go.  If you want tethering via USB then add:
   on GTA04:
  echo 1  /proc/sys/net/ipv4/ip_forward=20
  iptables -t nat -A POSTROUTING -s 192.168.0.200 -j MASQUERADE
 
 (here 192.168.0.200 is the IP of my notebook on the USB interface.)
 
   on notebook/desktop/whatever
 
  route add default gw 192.168.0.202
  echo nameserver 211.29.132.12  /etc/resolv.conf
  echo nameserver 61.88.88.88  /etc/resolv.conf
 
 (192.168.0.202 is IP of GTA04 of USB link).
 
  To terminate data call
 
AT_OWANDATA=3D1,0,1
 
 
  You don't need pppd at all.
 
 But there are no occurrences of OWAN in the qtmoko codebase - so I'm
 pretty sure it hasn't been integrated yet.
 
   Neil
 
 ___
 Openmoko community mailing list
 community@lists.openmoko.org
 http://lists.openmoko.org/mailman/listinfo/community



signature.asc
Description: PGP signature
___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: qtmoko v45

2012-07-01 Thread Neil Jerram
Marc Langlois langlois.m...@gmail.com writes:

 Hi,

 I do not have much knowledge on the environment qtmoko and I have the same
 problem as glaszlo cf. Mail Wed Jun 27.
 I see that pppd is not included in the image-debian-gta04 qtmoko-v45.tar.gz 
 while it is in the image qtmoko-debian-GTA02-v45.tar.gz.
 Should we not added in the image to pppd gta04?

GPRS on the GTA04 doesn't need pppd.  The modem and driver already
provide something that looks like a Linux Ethernet interface (hso0).

That doesn't make it necessarily right that pppd isn't included, because
it could be needed for other reasons.  But I expect it's a good part of
the explanation.

 When I add a GPRS configuration, I give information APN, user, password but I
 have the message:
 I enabled logging and got
 / usr / sbin / pppd: the remote system (dialup6542625957) is required to
 authenticate soi purpose I could not find any secret password Suitable to use 
 for it to do so.

Is that on GTA02 or GTA04?

  Neil

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: qtmoko v45

2012-07-01 Thread Marc Langlois
Neil,

My phone is GTA04A4.

Marc


-- Message transféré --
From: Neil Jerram n...@ossau.homelinux.net
To: List for Openmoko community discussion community@lists.openmoko.org
Cc:
Date: Sun, 01 Jul 2012 11:29:06 +0200
Subject: Re: qtmoko v45
Marc Langlois langlois.m...@gmail.com writes:

 Hi,

 I do not have much knowledge on the environment qtmoko and I have the same
 problem as glaszlo cf. Mail Wed Jun 27.
 I see that pppd is not included in the image-debian-gta04
qtmoko-v45.tar.gz
 while it is in the image qtmoko-debian-GTA02-v45.tar.
gz.
 Should we not added in the image to pppd gta04?

GPRS on the GTA04 doesn't need pppd.  The modem and driver already
provide something that looks like a Linux Ethernet interface (hso0).

That doesn't make it necessarily right that pppd isn't included, because
it could be needed for other reasons.  But I expect it's a good part of
the explanation.

 When I add a GPRS configuration, I give information APN, user, password
but I
 have the message:
 I enabled logging and got
 / usr / sbin / pppd: the remote system (dialup6542625957) is required to
 authenticate soi purpose I could not find any secret password Suitable to
use
 for it to do so.

Is that on GTA02 or GTA04?

  Neil
___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: qtmoko v45

2012-07-01 Thread Neil Jerram
Marc Langlois langlois.m...@gmail.com writes:

 Neil,

 My phone is GTA04A4.

Ah, thanks.  Has GPRS actually been integrated yet in QtMoko on the
GTA04?  I'm not sure that it has.

  Neil

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: qtmoko v45

2012-07-01 Thread Neil Jerram
Neil Jerram n...@ossau.homelinux.net writes:

 Marc Langlois langlois.m...@gmail.com writes:

 Neil,

 My phone is GTA04A4.

 Ah, thanks.  Has GPRS actually been integrated yet in QtMoko on the
 GTA04?  I'm not sure that it has.

For ease of reference, here's Neil Brown's howto for GPRS on the GTA04
(and which it's well worth creating another copy of):

 0/ connect to /dev/ttyHS3  (others might work)
 1/ make sure you are registered with network.
   e.g.
  AT+CFUN=3D1
  AT+COPS
  AT+COPS?
 
 2/ establish data connection
  AT_OWANCALL=3D1,1,1
 
 3/ collect status
 
AT_OWANDATA?
   My response was
_OWANDATA: 1, 49.179.102.244, 0.0.0.0, 211.29.132.12, 61.88.88.88, 0.0.0=
 .0, 0.0.0.0,144000
  ^IP address   ^  ^DNS-1--^  ^DNS-2^
 
 4/  configure network
 
 ifconfig hso0 49.179.102.244 up
 route add default dev hso0
 
 echo nameserver 211.29.132.12  /etc/resolv.conf
 echo nameserver 61.88.88.88  /etc/resolv.conf
 
 
 
 
 And you should be set to go.  If you want tethering via USB then add:
  on GTA04:
 echo 1  /proc/sys/net/ipv4/ip_forward=20
 iptables -t nat -A POSTROUTING -s 192.168.0.200 -j MASQUERADE
 
(here 192.168.0.200 is the IP of my notebook on the USB interface.)
 
  on notebook/desktop/whatever
 
 route add default gw 192.168.0.202
 echo nameserver 211.29.132.12  /etc/resolv.conf
 echo nameserver 61.88.88.88  /etc/resolv.conf
 
(192.168.0.202 is IP of GTA04 of USB link).
 
 To terminate data call
 
   AT_OWANDATA=3D1,0,1
 
 
 You don't need pppd at all.

But there are no occurrences of OWAN in the qtmoko codebase - so I'm
pretty sure it hasn't been integrated yet.

  Neil

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: QtMoko v45

2012-06-28 Thread Daniele Forsi
2012/6/16 urodelo:
 if i remember well, you just need to create that folder and than fix apt-get
 -f

I installed qtmoko v45 (thanks Radek!) and I got the errors about
missing diirectory:
WARNING: Couldn't open directory /lib/modules/2.6.34-qtmoko: No such
file or directory
FATAL: Could not open /lib/modules/2.6.34-qtmoko/modules.dep.temp for
writing: No such file or directory

in fact the directory has a different name, so I renamed it and configured:

mv /lib/modules/2.6.34-qtmoko-v34/ /lib/modules/2.6.34-qtmoko/
dpkg --configure linux-image-2.6.34-qtmoko-gta02
-- 
Daniele Forsi

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: QtMoko v45

2012-06-28 Thread Daniele Forsi
2012/6/28 Daniele Forsi:

 in fact the directory has a different name, so I renamed it and configured:

 mv /lib/modules/2.6.34-qtmoko-v34/ /lib/modules/2.6.34-qtmoko/

but at the next reboot modprobe couldn't find the needed modules, so
instead of renaming it's better to create a symbolic link:
cd /lib/modules/
ln -s 2.6.34-qtmoko-v34/ 2.6.34-qtmoko/
-- 
Daniele Forsi

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: QtMoko v45 : keyboard layout and emails

2012-06-24 Thread robin
hi adrien,

would you like to send me your keyboard svg files. I would like to put them 
in the qtmoko manual under the new keyboard section 
http://wiki.openmoko.org/wiki/Manuals/QtMoko
#SVG_Keyboards_.28from_QtMoko_v45_onwards.29

best regards

robin


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: QtMoko v45

2012-06-22 Thread robin
hi radek,
I see where I have gone wrong: utf8 instead of  unicode.
what I do not quite understand about the keyboard is: if it works to set the 
qt::Key to 0, what is it needed for and if it is better to be used how would 
the svg id look for the ö which is;

Qt::Key_Odiaeresis 0x0d6? eg key_0d6_f6 ???

Another question about the svg keyboard I have is the following:
Why are the boxes of the uppermost row so much higher than the rest?
and the last one, as I am already fond of your keyboard, but always liked 
the shr-predictive one: Is there any chance to have the predictive keyboard
algorythm implemented in qtmoko that shr uses? As far as I understand you 
always have to type in all the letters of the word and it calculates the 
probability depending on where you hit the keyboard of what word you ment 
(words used more often get a higher probability). the only problem I see 
for such a keyboard is that you need some place to display possible 
solutions, which can then be selected, this might be the bottom taskbar 
though.

best regards

robin


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: QtMoko v45

2012-06-22 Thread Radek Polak
On Friday 22 June 2012 16:41:55 robin wrote:

 hi radek,
 I see where I have gone wrong: utf8 instead of  unicode.
 what I do not quite understand about the keyboard is: if it works to set
 the qt::Key to 0, what is it needed for and if it is better to be used how
 would the svg id look for the ö which is;
 
 Qt::Key_Odiaeresis 0x0d6? eg key_0d6_f6 ???

You should remove the leading zero: key_d6_f6 is correct.

 Another question about the svg keyboard I have is the following:
 Why are the boxes of the uppermost row so much higher than the rest?

Because pressed key it'd displayed twice as large and shifted upperwards. If 
there was no space you would not see the large pressed key.

 and the last one, as I am already fond of your keyboard, but always liked
 the shr-predictive one: Is there any chance to have the predictive keyboard
 algorythm implemented in qtmoko that shr uses? As far as I understand you
 always have to type in all the letters of the word and it calculates the
 probability depending on where you hit the keyboard of what word you ment
 (words used more often get a higher probability). the only problem I see
 for such a keyboard is that you need some place to display possible
 solutions, which can then be selected, this might be the bottom taskbar
 though.

QtMoko already has predictive keyboard which works exactly as you write. So 
either we can make it installable as package or combine svg keyboard with it. 
I dont think i want to spend time on predictive+svg keyboard now. There are 
for me more important things...

Regards

Radek

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Qtmoko v45 and GTA04A4

2012-06-19 Thread Radek Polak
On Tuesday, June 19, 2012 02:38:19 PM Marc Langlois wrote:

 Hi,
 In my case, i have a bug for phone calls. 
 The microphone volume is much lower downlink.
 
 Release hardware: GTA04A4
 Release software: Qtmoko v45 without other pakage.

 In the menu settings- call options - call volume - Microphone volume is
 null and i can not to change it. 
 In neocontrol - call volume settings - microphone, I can change the value 
 but the volume does not change.

You can change volume in NeoControl, but you have to do it during call. That 
means: make a call, press AUX to switch to application list and run NeoControl 
and then play with the volume controls. Once you are happy you can use the 
save button.

You can do the same using alsamixer e.g. from ssh during call, but in this 
case you have to maually store the state - e.g. with:

alsactl -f /opt/qtmoko/etc/alsa/gsmearpiece.state store

I am afraid that with louder mic the other side will start getting echo. But i 
havent checked it yet.

I hope the situation will be much better with HW routed sound. There are good 
chances that the echo cancelling will work better and it will allow louder 
playback/mic volumes. Then should also disappear the problems that some other 
application has soundcard open and the software routing program cant open the 
card.

GTA04A4 is thanks to Christ van Willegen on the way so i hope i will start 
playing with it soon.

Regards

Radek





___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: QtMoko v45

2012-06-18 Thread Radek Polak
On Sunday, June 17, 2012 05:32:40 PM robin wrote:

 I just started navit and when I go for town search the keyboard is able to
 display pretty much any odd character one wishes for ö,ü, ... so I rather
 think, that I missed something in Radek's key naming system, which should be
 easily solvable.

Can you please send me the svg file so that i can check?

Regards

Radek___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: QtMoko v45

2012-06-17 Thread robin
hi adrien,

no I didnt check if locales are generated (maybe you can give me a hint how 
I can easily do this). I thought that any utf-8 character could be displayed
but I guess that is not generally true.

br

robin


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: QtMoko v45

2012-06-17 Thread robin
I used aurora with new keyboard and it is very nice for inserting the url.
the only drawback is that aurora currently does not pop up the keybaord if
you click the navigation toolbar field to enter the url. would it be 
possible for the keyboard to detect swipes. so if its off a swipe from bottom
to top would bring it up and once its on a swipe from to to bottom would
hide it again. just something for a wishlist ;-)

best regards

robin




___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: QtMoko v45

2012-06-17 Thread adrien

hi robin,


no I didnt check if locales are generated (maybe you can give me a
hint how I can easily do this).


There's a package in Debian to do it : apt-get install locales (you
should do it with ssh to be able to select language). If you want more
documentation to do it without the package :
http://people.debian.org/~schultmc/locales.html


 I thought that any utf-8 character could be displayed
but I guess that is not generally true.


I'm not sure if this is so, but the square display is generally the 
sign

that it leaks some characters (like for Japanese/Chinese website).

HTH,
adrien


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: QtMoko v45

2012-06-17 Thread robin
hi adrien,

I just started navit and when I go for town search the keyboard is able to 
display pretty much any odd character one wishes for ö,ü, ... so I rather
think, that I missed something in Radek's key naming system, which should be
easily solvable. 

br

robin


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: QtMoko v45

2012-06-16 Thread robin
hi radek,

I have some issue with the odd keys for example the german


   ö

the qt site gives me:

   Qt::Key_Odiaeresis   0x0d6

the unicode utf-8(hex) site says:

U+00F6  ö   c3 b6   LATIN SMALL LETTER O WITH DIAERESIS

so I named the key:

id=key_06d_c3b6


butnow I only get a square rectangle and which thereafter appears for any key I 
press.

best regards

robin


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: QtMoko v45

2012-06-16 Thread robin
hi radek,

after the upgrade I had to tick all the boxes for my qx-applications again. so
these were lost somehow which is not a big deal. 
but if I tick virtualkeyboard the app will not start (tried with anki with and
without virtualkeyboard being ticked). this worked beforehand as I remember
that I used the old querty keyboard to enter my username and password).

best regards

robin


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: QtMoko v45

2012-06-16 Thread urodelo
if i remember well, you just need to create that folder and than fix  
apt-get -f


urodelo

On Fri, 15 Jun 2012 12:31:13 +0200, David Garabana Barro  
da...@garabana.com wrote:



Hi

There is a problem with this image

When you try to apt-get update and install any package with apt, You get  
the

following error:

Setting up linux-image-2.6.34-qtmoko-gta02 (45-1) ...
WARNING: Couldn't open directory /lib/modules/2.6.34-qtmoko: No such  
file or

directory
FATAL: Could not open /lib/modules/2.6.34-qtmoko/modules.dep.temp for  
writing:

No such file or directory
dpkg: error processing linux-image-2.6.34-qtmoko-gta02 (--configure):
 subprocess installed post-installation script returned error exit  
status 1



It seems kernel package is not completely installed...

Thanks for your valuable work!

On Miércoles, 13 de junio de 2012 00:40:27 Radek Polak escribió:

Hi,
QtMoko v45 is out now. You can get images for GTA02 (Freerunner) here[1]
and GTA04 (Phoenux) here[2].

For more info about QtMoko please visit our homepage [3].

This is list of changes since previous v44 version:

  * fixed wifi password not saving problem
  * new big transparent keyboard
  * GTA04 has new 3.4 kernel thanks to Neil Brown
  * GTA04 has now vibra motor support
  * show atmospheric pressure on home screen on GTA04 (Neil Jerram)
  * removed all other input methods from build
  * display wifi icon in title bar
  * run ping on default DNS when wifi icon is clicked
  * gps icon in title bar with number of satellites and fix indicator
  * gps has now api for number of satellites
  * gps plugin for GTA04 now makes gps always enabled
  * GTA04 charge indicator is polling battery every 30s
  * GTA02 gps - checking for ntpserver available with ping (Jiri  
Pinkava)

  * qterminal can now run scripts using setDocument() api method
  * scripts for powering on/off modem on GTA04A04
  * charging udev rules for GTA04 (Neil Brown)
  * options to boot from all mmc partitions in shutdown ui
  * build fixes and various code improvements (Yann Dirson)
  * added new freecell game

Probably most noticeable is new keyboard. It has two layouts - one  
suitable

for terminal and one for SMS. They look like this:

http://qtmoko.sourceforge.net/screenshots/abc.png
http://qtmoko.sourceforge.net/screenshots/qwerty.png

Layouts are completely customizable. You can easily change key size,
position, background. It's very easy to add international characters and
new layouts. Just have a look at /opt/qtmoko/etc/im/svgkbd/ The layouts
are normal svg images. You can use inkscape to open and edit them. It
should be very clear what to do. Only thing to explain is how you should
name the key XML elements. In Inkscape go to Edit-XML editor and click  
on

key. The element name must be in form:

key_QtKeycode_unicode

For possible QtKeycode values check this link[4] and for unicode values  
use

your favourite unicode character map.

Please not that my layouts are just very simple. If you manage to create
better ones i will be glad to replace them. I can also make your  
national

keyboards variants easily installable from qtmoko apps page.

As for the other changes - you can now make clickable elements in themes
that launch scripts in qterminal. So e.g. you can have icon on  
homescreen

with your favourite script. For example how to do it check what happens
when you click the new wifi icon in finxi theme (search for setDocument
string here [5]).

Another nice thing is atmospheric pressure indicator on GTA04  
homescreen or

number of gps sattelites/fix indicator on title bar.

One more is freecell game - you can now waste a lot of time here :)

GTA04 owners can now enjoy latest 3.4 kernel thanks to Neil Brown's  
amazing
kernel work. I have been running this kernel for several days and all  
works

perfectly. No regressions were spotted. Many thanks for this Neil.

Thanks also everyone for their support and work.

Enjoy the release!

Radek


[1] http://sourceforge.net/projects/qtmoko/files/GTA02/
[2] http://sourceforge.net/projects/qtmoko/files/GTA04/
[3] http://qtmoko.sourceforge.net/
[4] http://qt-project.org/doc/qt-4.8/qt.html#Key-enum
[5]  
https://github.com/radekp/qtmoko/blob/master/etc/themes/finxi/title.xml


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community



--
不要催我!你曾經問過梵谷畫很快嗎?


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: QtMoko v45

2012-06-16 Thread adrien

Hi,



butnow I only get a square rectangle and which thereafter appears for 
any key I

press.



I've noticed today that there isn't any /etc/locale.gen file and
dpkg-reconfigure locales doesn't work. Maybe locales aren't generated
and it could explain that ö couldn't be interpreted. Have you checked 
if

german locales are generated ?

Regards,
Adrien Dorsaz


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: QtMoko v45

2012-06-15 Thread David Garabana Barro
Hi

There is a problem with this image

When you try to apt-get update and install any package with apt, You get the 
following error:

Setting up linux-image-2.6.34-qtmoko-gta02 (45-1) ...
WARNING: Couldn't open directory /lib/modules/2.6.34-qtmoko: No such file or 
directory
FATAL: Could not open /lib/modules/2.6.34-qtmoko/modules.dep.temp for writing: 
No such file or directory
dpkg: error processing linux-image-2.6.34-qtmoko-gta02 (--configure):
 subprocess installed post-installation script returned error exit status 1


It seems kernel package is not completely installed...

Thanks for your valuable work!

On Miércoles, 13 de junio de 2012 00:40:27 Radek Polak escribió:
 Hi,
 QtMoko v45 is out now. You can get images for GTA02 (Freerunner) here[1]
 and GTA04 (Phoenux) here[2].
 
 For more info about QtMoko please visit our homepage [3].
 
 This is list of changes since previous v44 version:
 
   * fixed wifi password not saving problem
   * new big transparent keyboard
   * GTA04 has new 3.4 kernel thanks to Neil Brown
   * GTA04 has now vibra motor support
   * show atmospheric pressure on home screen on GTA04 (Neil Jerram)
   * removed all other input methods from build
   * display wifi icon in title bar
   * run ping on default DNS when wifi icon is clicked
   * gps icon in title bar with number of satellites and fix indicator
   * gps has now api for number of satellites
   * gps plugin for GTA04 now makes gps always enabled
   * GTA04 charge indicator is polling battery every 30s
   * GTA02 gps - checking for ntpserver available with ping (Jiri Pinkava)
   * qterminal can now run scripts using setDocument() api method
   * scripts for powering on/off modem on GTA04A04
   * charging udev rules for GTA04 (Neil Brown)
   * options to boot from all mmc partitions in shutdown ui
   * build fixes and various code improvements (Yann Dirson)
   * added new freecell game
 
 Probably most noticeable is new keyboard. It has two layouts - one suitable
 for terminal and one for SMS. They look like this:
 
   http://qtmoko.sourceforge.net/screenshots/abc.png
   http://qtmoko.sourceforge.net/screenshots/qwerty.png
 
 Layouts are completely customizable. You can easily change key size,
 position, background. It's very easy to add international characters and
 new layouts. Just have a look at /opt/qtmoko/etc/im/svgkbd/ The layouts
 are normal svg images. You can use inkscape to open and edit them. It
 should be very clear what to do. Only thing to explain is how you should
 name the key XML elements. In Inkscape go to Edit-XML editor and click on
 key. The element name must be in form:
 
   key_QtKeycode_unicode
 
 For possible QtKeycode values check this link[4] and for unicode values use
 your favourite unicode character map.
 
 Please not that my layouts are just very simple. If you manage to create
 better ones i will be glad to replace them. I can also make your national
 keyboards variants easily installable from qtmoko apps page.
 
 As for the other changes - you can now make clickable elements in themes
 that launch scripts in qterminal. So e.g. you can have icon on homescreen
 with your favourite script. For example how to do it check what happens
 when you click the new wifi icon in finxi theme (search for setDocument
 string here [5]).
 
 Another nice thing is atmospheric pressure indicator on GTA04 homescreen or
 number of gps sattelites/fix indicator on title bar.
 
 One more is freecell game - you can now waste a lot of time here :)
 
 GTA04 owners can now enjoy latest 3.4 kernel thanks to Neil Brown's amazing
 kernel work. I have been running this kernel for several days and all works
 perfectly. No regressions were spotted. Many thanks for this Neil.
 
 Thanks also everyone for their support and work.
 
 Enjoy the release!
 
 Radek
 
 
 [1] http://sourceforge.net/projects/qtmoko/files/GTA02/
 [2] http://sourceforge.net/projects/qtmoko/files/GTA04/
 [3] http://qtmoko.sourceforge.net/
 [4] http://qt-project.org/doc/qt-4.8/qt.html#Key-enum
 [5] https://github.com/radekp/qtmoko/blob/master/etc/themes/finxi/title.xml
 
 ___
 Openmoko community mailing list
 community@lists.openmoko.org
 http://lists.openmoko.org/mailman/listinfo/community

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: QtMoko v45

2012-06-15 Thread robin
hi radek and qtdevelopers!

thank you very much for this great release. I am at the moment trying to add a
German version. Now I have some questions regarding the keyboard:

a) is there any specific reason why the svg (qwerty) file is of the format:
   height: 330px and width: 300?
b) is every pixel then just scaled to have 640x480?
c) If I open the svg in inkscape no layers are shown, but if I click on a dark-
   grey rectangle. It says at the inkscape bottombar #key_XY_YZ Rectangle on 
   layer #key_XY_YZ. So what is the best way for me to edit the svg to add 
   another language layout (directly the xml file?)
d) some of the letters are not centered on the grey rectangle, eg the ´l´ is
   shifted somewhat to the left. I have almost finished correcting this. Should
   I send/upload these versions anywhere.
e) Is there any possibility to have the ¸show/hide keyboard` button in the top
   bar being moved to the bottom bar, so we can reduce the topbar size even   
   further - For android on freerunner it is only 24px which is just about as 
   low as you can go if you still want to read something, but would be too small
   to press any button

Another question would be if it is generally possible to start in landscape 
mode?
The landscape qwerty works quite well already using the thumbs.

And last: Bluetooth is turned on as a standard. Can I edit a start-up script 
some
where to have it turned off?

best regards and many thanks again


robin


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: QtMoko v45

2012-06-15 Thread Radek Polak
On Friday 15 June 2012 11:21:10 robin wrote:

 hi radek and qtdevelopers!
 
 thank you very much for this great release. I am at the moment trying to
 add a German version. Now I have some questions regarding the keyboard:
 
 a) is there any specific reason why the svg (qwerty) file is of the format:
height: 330px and width: 300?
 b) is every pixel then just scaled to have 640x480?

Svg is always scaled to display resolution.

 c) If I open the svg in inkscape no layers are shown, but if I click on a
 dark- grey rectangle. It says at the inkscape bottombar #key_XY_YZ
 Rectangle on layer #key_XY_YZ. So what is the best way for me to edit the
 svg to add another language layout (directly the xml file?)

I think i don't understand the question. You should be able to open the svg in 
inkscape and do all the work there (moving keys, changing the text or changing 
the unicode values).

 d) some of the letters are not centered on the grey rectangle, eg the ´l´
 is shifted somewhat to the left. I have almost finished correcting this.
 Should I send/upload these versions anywhere.

Yes please.

 e) Is there any possibility to have the ¸show/hide keyboard` button in the
 top bar being moved to the bottom bar, so we can reduce the topbar size
 even further - For android on freerunner it is only 24px which is just
 about as low as you can go if you still want to read something, but would
 be too small to press any button

It should be possible. E.g. the predictive keyboard uses bottom bar. I wanted 
to implement it but i also didnt want to hold the release more. So i will try 
to do it for v46.

 Another question would be if it is generally possible to start in landscape
 mode? The landscape qwerty works quite well already using the thumbs.

I can implement key for screen rotation or maybe if the layout filename 
contains landscape it could rotate the screen.

 And last: Bluetooth is turned on as a standard. Can I edit a start-up
 script some where to have it turned off?

I think there is script in /opt/qtmoko/bin called bt-poweroff.sh which turns 
bluetooth off. Maybe adding it to /etc/rc.local or qpe.sh could do it.

Regards

Radek

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: QtMoko v45

2012-06-15 Thread Radek Polak
On Friday 15 June 2012 10:31:13 David Garabana Barro wrote:

 There is a problem with this image
 
 When you try to apt-get update and install any package with apt, You get
 the following error:
 
 Setting up linux-image-2.6.34-qtmoko-gta02 (45-1) ...
 WARNING: Couldn't open directory /lib/modules/2.6.34-qtmoko: No such file
 or directory
 FATAL: Could not open /lib/modules/2.6.34-qtmoko/modules.dep.temp for
 writing: No such file or directory
 dpkg: error processing linux-image-2.6.34-qtmoko-gta02 (--configure):
  subprocess installed post-installation script returned error exit status 1

Hi David,
it's the same problem as was in v44 - in the end i didnt have time to fix it. 
Maybe uninstall and install kernel image manually could help.

Regards

Radek

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: QtMoko v45

2012-06-15 Thread francesco . devita

Thanks for the new release Radek! I'm looking forward to put hands on it! (:
Great work!

Regards
Joif

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: QtMoko v45

2012-06-15 Thread robin
hi joif,

if I remember correctly you wrote the mokofaen theme which I like a lot. would
it be possible to add a recent calls button to the dialer layout? also the 
dialer layout does not scale if put in landscape which doesnt matter too much
as the buttons are big enough but it would just look prettier...

best regards

robin


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: QtMoko v45

2012-06-15 Thread francesco . devita

Il 15/06/2012 21:34, robin ha scritto:

would
it be possible to add a recent calls button to the dialer layout? also the
dialer layout does not scale if put in landscape which doesnt matter too much
as the buttons are big enough but it would just look prettier...

I'm planning to update it during the next month, following also the 
changes in the v45, I have just to finish the university exams for this 
session ;) I'll take in mind the suggestions, thanks!


Joif

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: QtMoko v45

2012-06-15 Thread robin
I remember that this issue existed already with an update prior to v45.
with the manual installation procedure do you mean:
dpkg -i ./*.deb ? or is there a different command which has to be used?

regards

robin


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: QtMoko v45

2012-06-13 Thread Patryk Benderz
Dnia 2012-06-12, wto o godzinie 22:40 +, Radek Polak pisze:
 Hi,
 QtMoko v45 is out now. You can get images for GTA02 (Freerunner) here[1] and 
Hi Radek, thanks for keeping GTA02 up :)
-- 
Patryk LeadMan Benderz
Linux Registered User #377521
()  ascii ribbon campaign - against html e-mail
/\  www.asciiribbon.org   - against proprietary attachments


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: QtMoko v45

2012-06-13 Thread Griera
Hi:

On Tue, 12 Jun 2012 22:40:27 +
Radek Polak pson...@seznam.cz wrote:

 Hi,
 QtMoko v45 is out now. You can get images for GTA02 (Freerunner) here[1] and 
 GTA04 (Phoenux) here[2].

Thanks a lot!!

 
 For more info about QtMoko please visit our homepage [3].
 
 This is list of changes since previous v44 version:
 
   * fixed wifi password not saving problem
   * new big transparent keyboard
   * GTA04 has new 3.4 kernel thanks to Neil Brown
   * GTA04 has now vibra motor support
   * show atmospheric pressure on home screen on GTA04 (Neil Jerram)
   * removed all other input methods from build
   * display wifi icon in title bar
   * run ping on default DNS when wifi icon is clicked
   * gps icon in title bar with number of satellites and fix indicator
   * gps has now api for number of satellites
   * gps plugin for GTA04 now makes gps always enabled
   * GTA04 charge indicator is polling battery every 30s
   * GTA02 gps - checking for ntpserver available with ping (Jiri Pinkava)
   * qterminal can now run scripts using setDocument() api method
   * scripts for powering on/off modem on GTA04A04
   * charging udev rules for GTA04 (Neil Brown)
   * options to boot from all mmc partitions in shutdown ui
   * build fixes and various code improvements (Yann Dirson)
   * added new freecell game
 
 Probably most noticeable is new keyboard. It has two layouts - one suitable 
 for terminal and one for SMS. They look like this:
 
   http://qtmoko.sourceforge.net/screenshots/abc.png
   http://qtmoko.sourceforge.net/screenshots/qwerty.png
 
 Layouts are completely customizable. You can easily change key size, 
 position, 
 background. It's very easy to add international characters and new layouts. 
 Just have a look at /opt/qtmoko/etc/im/svgkbd/ The layouts are normal svg 
 images. You can use inkscape to open and edit them. It should be very clear 
 what to do. Only thing to explain is how you should name the key XML 
 elements. 
 In Inkscape go to Edit-XML editor and click on key. The element name must be 
 in form:
 
   key_QtKeycode_unicode
 
 For possible QtKeycode values check this link[4] and for unicode values use 
 your favourite unicode character map.
 
 Please not that my layouts are just very simple. If you manage to create 
 better ones i will be glad to replace them. I can also make your national 
 keyboards variants easily installable from qtmoko apps page.
 
 As for the other changes - you can now make clickable elements in themes that 
 launch scripts in qterminal. So e.g. you can have icon on homescreen with 
 your 
 favourite script. For example how to do it check what happens when you click 
 the new wifi icon in finxi theme (search for setDocument string here [5]).
 
 Another nice thing is atmospheric pressure indicator on GTA04 homescreen or 
 number of gps sattelites/fix indicator on title bar.
 
 One more is freecell game - you can now waste a lot of time here :)
 
 GTA04 owners can now enjoy latest 3.4 kernel thanks to Neil Brown's amazing 
 kernel work. I have been running this kernel for several days and all works 
 perfectly. No regressions were spotted. Many thanks for this Neil.
 
 Thanks also everyone for their support and work.
 
 Enjoy the release!
 
 Radek
 
 
 [1] http://sourceforge.net/projects/qtmoko/files/GTA02/
 [2] http://sourceforge.net/projects/qtmoko/files/GTA04/
 [3] http://qtmoko.sourceforge.net/
 [4] http://qt-project.org/doc/qt-4.8/qt.html#Key-enum
 [5] https://github.com/radekp/qtmoko/blob/master/etc/themes/finxi/title.xml
 
 ___
 Openmoko community mailing list
 community@lists.openmoko.org
 http://lists.openmoko.org/mailman/listinfo/community

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: QtMoko v45

2012-06-13 Thread Xavier Cremaschi
Great news!


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: QtMoko v45

2012-06-12 Thread Radek Polak
On Tuesday 12 June 2012 22:40:27 Radek Polak wrote:

 QtMoko v45 is out now. You can get images for GTA02 (Freerunner) here[1]

Btw the gta02 image is completely untested yet. I will do some testing 
tomorrow.

Regards

Radek

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community