![]() |
2011-04-20
, 07:33
|
Posts: 1,808 |
Thanked: 4,272 times |
Joined on Feb 2011
@ Germany
|
#22
|
![]() |
2011-04-20
, 13:08
|
|
Posts: 2,427 |
Thanked: 2,986 times |
Joined on Dec 2007
|
#23
|
The Following User Says Thank You to daperl For This Useful Post: | ||
![]() |
2011-04-20
, 16:42
|
Posts: 82 |
Thanked: 214 times |
Joined on Jan 2010
@ Cape town
|
#24
|
Have you seen how the iOS 4 email client works? It's very good, very simple, and very powerful. If you were to borrow from that, most of your design work would be done.
Here's Apple's overview:
http://www.apple.com/iphone/features/mail.html
Here's a tutorial video:
http://www.youtube.com/watch?v=0EYO5pRiHhI
Thanks cb22.. any chance of releasing a pre-pre-alpha version to have a look?
![]() |
2011-04-20
, 16:59
|
Posts: 137 |
Thanked: 81 times |
Joined on May 2010
|
#25
|
![]() |
2011-04-20
, 23:10
|
Posts: 82 |
Thanked: 214 times |
Joined on Jan 2010
@ Cape town
|
#26
|
First of all, I greatly appreciate the work you're doing here. The email client on Maemo5 has always been a big sore spot for me. It works... just not well.
Will you have keyboard shortcuts? Like R for reply, or N for next unread message. Also being able to select multiple messages and mark them as read? The inability to do this right now is painful for me.
If you have already thought of these things, sorry to bother you!
![]() |
2011-04-21
, 07:44
|
Posts: 1,808 |
Thanked: 4,272 times |
Joined on Feb 2011
@ Germany
|
#27
|
![]() |
2011-04-21
, 16:47
|
Posts: 82 |
Thanked: 214 times |
Joined on Jan 2010
@ Cape town
|
#28
|
Thanks for the video cb22, it looks really good
Unfortunately, other than possibly testing, I don't think I would be able to contribute much, mostly due to lack of time (as well as lack of experience with Python...)
In any case, you might consider splitting the daemon functionality and the GUI (which you probably have), so that e.g. the GUI might also be able to work with mbox and/or Maildir structures (like pine/alpine or mutt) as well as with the sqlite database.
This way one would use not only your daemon but also offlineimap as a back-end, or the other way around, use your daemon with e.g. alpine as GUI.
I'm not asking you to focus on this now, but maybe you can keep in mind so that it can be implemented in the future without having to re-code everything?
Cheers.
The Following User Says Thank You to cb22 For This Useful Post: | ||
![]() |
2011-04-25
, 21:12
|
Posts: 82 |
Thanked: 214 times |
Joined on Jan 2010
@ Cape town
|
#29
|
The Following 5 Users Say Thank You to cb22 For This Useful Post: | ||
![]() |
2011-05-02
, 17:35
|
Posts: 137 |
Thanked: 81 times |
Joined on May 2010
|
#30
|
GUI - Side:
* Been busy refactoring the QML code into something far more sensible then what I had originally
* I was getting 300 wakeups/30 sec on my GUI while doing nothing, that's down to 1/30 sec
* Startup is actually pretty fast. After stripping out all the unneeded libraries I was loading, and modularizing the QML a bit, I'd say it starts up a little bit faster than Modest. Not bad for a Python app.
* Since sqlite on the N900 is NOT compiled with FTS support, I'm using a different wrapper called APSW, compiled with a static sqlite library. At the moment, this is just chilling in my source tree, I should probably get around to packaging it.
* After disabling OpenGL, everything is much faster. A huge list of emails scrolls with no lag (and no visable tearing?!), transitions are smooth, and all looks good.
* SQLite is faaaaaaaaaaaaaaaaaaasssssst. Searching through the FTS is damn quick.
Backend - side:
* The backend is what handles the actual mail sync. It will be running 24/7 as a daemon. It's pretty lean at this point - no GUI dependencies or anything of the sort. I'll probbaly use dbus to signal the GUI when a new message comes in.