Hi Guys,
i have created new QtMoko images on debian rootfs. You can find them
together with some info on my site [1].

These images should give you:
- full debian system (over ssh)
- working calls/sms
- working gprs
- usable media player
- and lot of more features

In this new image QT was upgraded to version 4.5.1 and with attached
patch i have fixed the missing virtual keyboard in password fields. You
can find sources in my git branch qt451.

Another thing is qmplayer - media player that can play ogg/mp3/avi files
but is also able to download or stream media from PC. You can find more
info on qmplayer homepage [2].

Kernel is now based on packaging config. The kernel size is now under
2MB so it can be booted with u-boot.

We have also new logo [3] (thanks to my wife).

My plan for future is to merge other's GIT's - i am running build right
now, so we'll see if that worked :)

On the experimenting front - i was able to run TangoGPS and other X apps
via vnc. It was quite slow and mouse dragging wanst working, but still
quite usable.

Btw is anyone planning to release ready-to-flash QtMoko images for FSO?
I see there is just install script, but i would like to have image that
can be just flashed and booted.

Cheers

Radek


[1] http://activationrecord.net/radekp/qtmoko/
[2] http://activationrecord.net/radekp/qmplayer/
[3] http://activationrecord.net/radekp/qtmoko/qtmoko.svg
diff --git a/qtopiacore/qt/src/gui/widgets/qlineedit.cpp 
b/qtopiacore/qt/src/gui/widgets/qlineedit.cpp
index 70c7d5c..2aea5b7 100644
--- a/qtopiacore/qt/src/gui/widgets/qlineedit.cpp
+++ b/qtopiacore/qt/src/gui/widgets/qlineedit.cpp
@@ -98,7 +98,7 @@ extern void qt_mac_secure_keyboard(bool); 
//qapplication_mac.cpp
 static inline bool shouldEnableInputMethod(QLineEdit *lineedit)
 {
     const QLineEdit::EchoMode mode = lineedit->echoMode();
-    return !lineedit->isReadOnly() && (mode == QLineEdit::Normal || mode == 
QLineEdit::PasswordEchoOnEdit);
+    return !lineedit->isReadOnly();// && (mode == QLineEdit::Normal || mode == 
QLineEdit::PasswordEchoOnEdit);
 }
 
 /*!
_______________________________________________
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community

Reply via email to