1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
* convert sim-auth-input-view to ui-utils
* convert the call screens to ui-utils
* convert the USSD view
* convert the dialogs
* Change a lot of the mallocs to eina_stringshare_add, better for internal use
* Sim Auth
* Vibration when wrong PIN or PUK was entered
* Incoming Call
* Dialer
* Make + work
* USSD
* Messages
* Contacts?
# Move all the utility functions to phonegui
# make a special source for weird string functions
# Make a g_value_safe_get_value and put it in the same file with the other gvalue funcs.
# Fix the g_value mess, internal design does NOT use g_values and when getting data from dbus function that do, just use a wrapper to modifiy.
# Write sfree (i.e- safe free) that checks that the value is not null before freing maybe even a macro that also sets to null afterwards.
# Fix the mess with hash tables in call-* and probably everywhere else as well, atm we don't free just allocate, a lot, even when there's no real need.
# When calling cross frame functions (i.e contacts from dialer and etc, use phoneui_* functions and *not* frame show functions)
#order the mess in the makefile.am's split into dirs
#Remove the ugly hack from views.h (and actually drop most of it entirely)
KNOWN BUGS
Messages:
- list does not reload after deleting a message
- text wraps badly when writing a message
- message display does not scroll when message is too long
- no index when adding a contact
Contacts:
- new contacts don't get into the list (have to restart)
Notes from max_posedon:
[08:56] max_posedon | 1. it sometimes haven't enough time to register to GSM at phone start
[08:57] max_posedon | 2. it doesn't shows incomming sms, I see "1 new message" at home screen, press it -nothing
[08:58] max_posedon | 3. shr-messages/shr-contacts empty at first start
[09:00] max_posedon | 4. shr-messages in "list" doesn't show contact names, only phone numbers
[09:01] max_posedon | 5. shr-messages on "new sms" line-wrap is very small, near 10 I think
TODO:
* Make caching on boot/on first load configurable
sim-manager:
* show loading screen when importing all
* add index to genlist
* sort contacts by Name
|