Sesca ample

2009-02-17 Thread Yann Neveu
Hi all
A new mobile framework has been annouced during Barcelona 3G expo. It seems to 
be based on Qt and reference implementation is on openmoko device.

http://www.sesca.com/In_english/News/Sesca_announced_a_Qt-
based_smartphone_application_stack_Sesca_Ample

Does anyone here know more about it? Licencing? Screenshot?

Yann 

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


Weather app: meooem 0.0.1

2008-12-21 Thread Yann Neveu
Here: 
http://gabuzomeu.fr/openmoko/meooem/ and on 
http://www.opkg.org/package_66.html , you'll find a small app which fetch yahoo 
rss weather feed and add an icon on your illume launcher. 
You can press on it to update datas. If not connected, no feed, and the temp 
will be -1.

Code is bloated and ugly and the next step is to clean up before adding other 
functions like displaying next days forecast and things like that. Other 
change will be the icon set which could be more free than the stardock ones 
(see the /usr/share/pixmaps/meoeem/stardock/permission.txt).

Please modify  /etc/meooem.conf to have you preffered city weather instead of 
mine.

Any suggestions welcomed.

Yann


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


Re: OpenMooCow 0.3

2008-12-19 Thread Yann Neveu
On Friday 19 December 2008 21:22:03 Klaus Kurzmann wrote:

 I had the same problem... modprobe snd-pcm-oss helped :-)

For me, /etc/init.d/speech-dispatcher stop helped

Yann




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


Re: [Android] Soft keyboard

2008-11-21 Thread Yann Neveu
Le Fri, 21 Nov 2008 12:19:50 -0200,
Denis Galvão [EMAIL PROTECTED] a écrit :

 Hi Yann.
 
 Should I press the button twice? once?
 
 I sent the Phone.apk into the apps dir, but the answer didn't work
 for me. Is there any tricky around that?

Should be juste one on the power button.
Have you restarted the phone after the copy?
The Phone.apk is on the phone end not on the usd?

Anyway, i'll retry later this night to check how and when i pressed.

Yann

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


Re: [Android] Soft keyboard

2008-11-21 Thread Yann Neveu
Le Fri, 21 Nov 2008 16:36:26 +0100,
Yann Neveu [EMAIL PROTECTED] a écrit :

 Le Fri, 21 Nov 2008 12:19:50 -0200,
 Denis Galvão [EMAIL PROTECTED] a écrit :
 
  Hi Yann.
  
  Should I press the button twice? once?
  
  I sent the Phone.apk into the apps dir, but the answer didn't work
  for me. Is there any tricky around that?
 
 Should be juste one on the power button.
 Have you restarted the phone after the copy?
 The Phone.apk is on the phone end not on the usd?
 
 Anyway, i'll retry later this night to check how and when i pressed.

I've tried it again and logged to check that my modification was ok.

D/PHONE/InCallScreen(  634): handling key up event...
W/PHONE/InCallScreen(  634): KEYCODE_MENU or KEYCODE_CALL

So after the test, just one pressure on power key make the phone
answer.

Do you have some log about handling key up event... ?

Yann

Yann 

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


Re: [Android] Soft keyboard

2008-11-21 Thread Yann Neveu
Le Fri, 21 Nov 2008 15:49:06 -0200,
Denis Galvão [EMAIL PROTECTED] a écrit :

 It is on the app dir on the SD.
 
 Am I wrong doing that?

Yes, it shoul overwrite the system one, you've to enable rw mount in
init.rc. You can install another distro on usd, boot on it to modify
init.rc, see some mails above in this thread.

Yann


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


Re: [Android] Soft keyboard

2008-11-21 Thread Yann Neveu
Le Fri, 21 Nov 2008 09:48:01 -0800 (PST),
akurpiel [EMAIL PROTECTED] a écrit :

 With new Phone.apk answer  is working for me, but I cant end  call -
 power button give me 
 dial keyboard, not previous menu.

Yes, just added a hook for the answer, not for the end call :) Anyway,
without suspending, android on FR is not really ready to be your phone
for everyday right? :)
I'll see if i can add an end call hook but will not try hard since i
suppose there will be a more elegant way than mine ( by using virtual
buttons probably)...
But i'm glad to know that it works with yours too.

Yann

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


Re: [Android] Soft keyboard

2008-11-20 Thread Yann neveu
Le jeudi 20 novembre 2008 04:49:36 Walter Chang, vous avez écrit :
 nope.  lets hope the next release from sean fixes that.

I've modified and compiled the Phone application ton answer by pressing the 
power (menu) button.
It seems to work in emulator but i don't know how to transfer it to FR since 
the rootfs is read-only:

[EMAIL PROTECTED]:~/Documents/neo/mydroid$ /opt/android-sdk/tools/adb install 
./out/target/product/generic/system/app/Phone.apk
466 KB/s (733077 bytes in 1.534s)   
  
pkg: /data/local/tmp/Phone.apk  
  
Failure [INSTALL_FAILED_ALREADY_EXISTS]

[EMAIL PROTECTED]:~/Documents/neo/mydroid$ /opt/android-sdk/tools/adb install  
-r 
./out/target/product/generic/system/app/Phone.apk
465 KB/s (733077 bytes in 1.539s)
pkg: /data/local/tmp/Phone.apk
Failure [INSTALL_FAILED_REPLACE_COULDNT_DELETE]


Does anybody know if i can make the rootfs rw to allow change system apps?

Thanks

Yann

Ho and the modification i've made is in 
packages/apps/Phone/src/com/android/phone/CallNotifier.java.
I've just modified line 969:
} else if (keyCode == KeyEvent.KEYCODE_CALL || keyCode == 
KeyEvent.KEYCODE_MENU ) {
in public boolean onKeyUp(int keyCode, KeyEvent event) method ...
Really quick and dirty  but just a test to know if i'm able to personnalize 
it.



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


Re: [Android] Soft keyboard

2008-11-20 Thread Yann neveu
Le jeudi 20 novembre 2008 21:01:48 Petr Vanek, vous avez écrit :
 This sounds great! You can boot another distro from the uSD card  and
 then mount the root rw:

   mount -t jffs2 /dev/mtdblock6 /media/cf

Ok, have to prepare a distro on sd card so, thanks.

The Phone.apk is here: http://gabuzomeu.fr/openmoko/Phone.apk

Don't know if it's work, i think it should answer AND open the menu...
Anyway, backup before use

Yann

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


Re: [Android] Soft keyboard

2008-11-20 Thread Yann neveu
Le jeudi 20 novembre 2008 21:23:33 Yann neveu, vous avez écrit :
 Le jeudi 20 novembre 2008 21:01:48 Petr Vanek, vous avez écrit :
  This sounds great! You can boot another distro from the uSD card  and
  then mount the root rw:
 
  mount -t jffs2 /dev/mtdblock6 /media/cf


ok, i've installed a fresh om-testing on card ( nicer than ever ) and modified 
init.rc to mount rootfs rw. Copied Phone.apk in /system/app/Phone.apk, 
rebooted and... placed a call to myself.

I've successfully answered using power button.

So, seems to work :)


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