markusm
|
2009-12-17
, 16:52
|
Posts: 87 |
Thanked: 63 times |
Joined on Dec 2009
|
#101
|
The Following 5 Users Say Thank You to markusm For This Useful Post: | ||
|
2009-12-17
, 19:44
|
|
Posts: 77 |
Thanked: 48 times |
Joined on Sep 2009
@ UK
|
#102
|
|
2009-12-18
, 09:16
|
|
Posts: 1,391 |
Thanked: 4,272 times |
Joined on Sep 2007
@ Vienna, Austria
|
#103
|
|
2009-12-18
, 15:06
|
|
Posts: 529 |
Thanked: 262 times |
Joined on Dec 2008
@ Eastleigh, Hampshire, UK
|
#104
|
Testing 0.1.1-9 here, some feedback:
- Scrolling the list with arrow keys would be nice (currently, the arrow keys switch focus - that's okay too, but but then the view should scroll with the focused item - HildonPannableArea has "scroll_to" and "scroll_to_child" methods for doing this)
- "Set UID/PWD" could be renamed to "Set login data" or "Authentication setup" or "Login" or something (some people might fear three-character uppercase abbreviations )
- Properties: Use a GtkDialog with one action button (add this using GtkDialog's "add_button" method) "Save" instead of OK and remove the Cancel button (Cancel is clicking outside the dialog)
- Properties: Instead of having labels and these spin boxes, think about having a HildonPickerButton for selecting values (Click on the clock, "New alarm" and then on "Time" to see what I mean, although you obviously only want one column)
- "Properties" itself should probably be renamed to "Preferences" or "Settings"
- What does "Toggle ServiceType do"? (I know now from looking at the window title, but it was not really obvious to me at first) Maybe change it to a HildonPickerButton "ServiceType" that will display a list of possible types (the PickerButton will also show the currently selected value, making the current system state more visible to the user)
- Related to the service type changes (thanks for supporting identi.ca, btw!) - what does happen with the login data? Shouldn't the login data be saved per-service and when switching the service (I haven't set up identi.ca yet) a username/password prompt should pop up?
If you have a bug tracker (request a product on bugs.maemo.org), I can enter these as bug reports if you want to make it easier for you to manage, proritize and merge requests.
|
2009-12-18
, 15:10
|
|
Posts: 529 |
Thanked: 262 times |
Joined on Dec 2008
@ Eastleigh, Hampshire, UK
|
#105
|
My input on the layout. A kind of compromise from all the previous and would be easy to make user selectable color schemes for.
The Following User Says Thank You to dwould For This Useful Post: | ||
|
2009-12-18
, 15:17
|
|
Posts: 529 |
Thanked: 262 times |
Joined on Dec 2008
@ Eastleigh, Hampshire, UK
|
#106
|
I believe 1.1.9 is not storing credentials (a filesystem permissions problem? BTW: Better store config things in GConf).
In fact, while the app shows up, I can't see any twitter content. All UI is there and I can do "Set UID/PWD". However, trying to send a Tweet then gives me an error "401, not authorised: check uid/pwd"
After quiting and restarting, UID/PWD still is empty.
(Starting from Terminal shows "store_creds called" after OKing "Set UID/PWD", so this step looks good. Where are the creds currently stored?)
The only thing that work for me is the [search] function (as this is probably anonymous). Still really cool to see all the Japanese and Arab results in their native fonts :-)
|
2009-12-18
, 15:28
|
Posts: 87 |
Thanked: 63 times |
Joined on Dec 2009
|
#107
|
|
2009-12-18
, 15:39
|
|
Posts: 529 |
Thanked: 262 times |
Joined on Dec 2008
@ Eastleigh, Hampshire, UK
|
#108
|
You get the icons from me (if you want) as I made them . I'm happy to help designing the graphics if you so wish. (I'm an Art Director / UI/UX designer by profession.)
I was going to suggest a disappearing UI as using Twitter is mostly reading stuff and less posting - at least usually I think this is the case.
You could just copy the layout concept from the Conversations view. Have a big "Tweet" button on top of the messages that scrolls away with the messages but as soon as the scrolling stops or the user taps the screen the button appears on top of the list again (fixed position). And I also think the writing of the new tweet could be done in a dialogue with only the text box and a button for sending. Clicking outside the dialogue cancels (but you could still remember the text that was written in case the user want's pick up where he/she left.
If you want I could try to do some mockups of different scenarios.
|
2009-12-20
, 19:54
|
|
Posts: 529 |
Thanked: 262 times |
Joined on Dec 2008
@ Eastleigh, Hampshire, UK
|
#109
|
The Following 2 Users Say Thank You to dwould For This Useful Post: | ||
|
2009-12-20
, 21:37
|
Posts: 883 |
Thanked: 980 times |
Joined on Jul 2007
@ Bern, Switzerland
|
#110
|
I take it as a good point that I should investigate using GConf instead. don't suppose you can point me to a guide on doing that?
the password field for some reason auto-capitalises which sometimes catches people out thinking they've entered details correctly when they have not. I don't know why. I will probably switch to using one of the build it dialogs for obtaining credentials and hope is resolves that issue
global timeMode conf_client = gconf.client_get_default() conf_client.add_dir("/apps/tomch.com/mClock/general", gconf.CLIENT_PRELOAD_NONE) timeModeStored = conf_client.get_string("/apps/tomch.com/mClock/general/timeMode") if(timeModeStored!="maxi" and timeModeStored!="mini"): conf_client.set_string("/apps/tomch.com/mClock/general/timeMode", "maxi") timeModeStored = "maxi"