2007-04-16 Murray Cumming <murrayc@murrayc.com>
[modest] / ChangeLog2
1 2007-04-16  Murray Cumming  <murrayc@murrayc.com>
2
3         * po/en_GB.po: Added needed logical ID and translation.
4         * src/widgets/modest-account-view.c: (on_account_default_toggled),
5         (init_view): Made the is-default column clicking work.
6
7 2007-04-16  Murray Cumming  <murrayc@murrayc.com>
8
9         * configure.ac:
10         * src/maemo/easysetup/Makefile.am:
11         * src/maemo/easysetup/modest-easysetup-wizard.c:
12         (modest_easysetup_wizard_dialog_init):
13         * src/maemo/easysetup/provider-data-test.keyfile:
14         * src/maemo/easysetup/provider-data.keyfile: 
15         Moved the provider data file to the new modest-providers-data package and used it from there.
16
17 2007-04-16  Murray Cumming  <murrayc@murrayc.com>
18
19         * src/modest-local-folder-info.c:
20         (modest_local_folder_info_get_type_display_name): Use _() to actually get the translated string. 
21         N_() was already used on the static strings, but this just marks it for translation without 
22         using the translation.
23
24 2007-04-06  Murray Cumming  <murrayc@murrayc.com>
25
26         * src/maemo/modest-account-settings-dialog.c:
27         (create_page_incoming),
28         (modest_account_settings_dialog_set_account_name): 
29         Added comments about the need for new API in ModestAccountMgr to handle the authentication 
30         and secure-connection stuff that is stored in the options GSList* with hard-coded names.
31         I will do this if nobody else gets there first.
32
33 2007-04-06  Murray Cumming  <murrayc@murrayc.com>
34
35         * src/maemo/modest-account-settings-dialog.c: (save_configuration): 
36         Saved much of the incoming and outgoing data too, though I cannot yet see how to 
37         save the security stuff.
38
39 2007-04-06  Murray Cumming  <murrayc@murrayc.com>
40
41         * src/maemo/easysetup/modest-easysetup-wizard.c: (create_account): 
42         Set the email address and user fullname, which I now see must be 
43         done separately.
44         
45         * src/maemo/modest-account-settings-dialog.h:
46         * src/maemo/modest-account-settings-dialog.c:
47          (on_response),
48         (modest_account_settings_dialog_set_account_name): Show the email address, fullname, 
49         leave-on-server and authentication.
50         (save_configuration): Save most of the non-server-account specific stuff, but I don't see 
51         how to do the rest.
52
53 2007-04-06  Murray Cumming  <murrayc@murrayc.com>
54
55
56         * src/maemo/modest-account-settings-dialog.c:
57         * src/maemo/modest-account-settings-dialog.h:
58         Most (but not all) of the widgets are now present as specified by the UI spec.
59         No changes are yet saved, and some details are not properly shown yet.
60         
61         * po/en_GB.po: Added translations for logical IDs used by the Account Settings dialog.
62
63 2007-04-06  Murray Cumming  <murrayc@murrayc.com>
64
65         * src/maemo/Makefile.am:
66         * src/maemo/modest-account-settings-dialog.c:
67         * src/maemo/modest-account-settings-dialog.h: The beginnings of the dialog to edit 
68         an existing account. Doesn't do much yet.
69         
70         * src/maemo/modest-account-view-window.c: (on_edit_button_clicked): 
71         Open the accounts settings dialog when Edit is clicked.
72
73 2007-04-05  Murray Cumming  <murrayc@murrayc.com>
74
75         * src/maemo/easysetup/Makefile.am:
76         * src/maemo/easysetup/modest-easysetup-country-combo-box.c:
77         (load_from_file): 
78         * src/maemo/easysetup/modest-easysetup-wizard.c:
79         (modest_easysetup_wizard_dialog_init):
80         Try to get the source directory from the build system,
81         instead of hard-coding "./" into the source code, when opening our local 
82         copies of the configuration files.
83         But this still fails when opening the wizard from the Accounts window, 
84         maybe because the working directory seems to change at runtime.
85         So the wizard will fail the second time unless you copy the files into their 
86         proper locations - see the stdout warnings for the paths.
87         
88         (create_page_account_details),(on_before_next): 
89         Check for existing non-server accounts instead of server accounts, 
90         so the default account name is useful again, and to prevent trying to 
91         recreate accounts.
92         
93         * src/maemo/modest-account-view-window.c: (on_new_button_clicked): 
94         Show the wizard when New is clicked.
95         
96         * src/widgets/modest-account-view.c: (on_account_default_toggled),
97         (init_view): Show the column headers, and show the columns that are 
98         specified in the UI specs. However, something in Maemo's GTK+ prevents 
99         us from handling the GtkCellRendererToggle::toggled signal, so we cannot 
100         change the default account. This is despite unsetting the special properties.
101
102 2007-04-05  Murray Cumming  <murrayc@murrayc.com>
103
104         * docs/reference/modest-design.sgml: Corrected spelling mistake.
105         * src/maemo/easysetup/modest-easysetup-wizard.c: (create_account): 
106         Create the 2 server accounts and then create the account, using the names of the 2 server accounts.
107         This seems to be how this should be used. If it is, then I will update the AccountMgr documentation 
108         to make that clearer.
109         * src/modest-account-mgr.h: Corrected the modest_account_mgr_search_server_account() documentation.
110
111 2007-04-05  Murray Cumming  <murrayc@murrayc.com>
112
113         * src/maemo/modest-account-view-window.c:
114         (modest_account_view_window_init),
115         (modest_account_view_window_new):
116         Use the same buttons as specified in the 
117         UI spec. Add the widgets to the vbox and action_area instead of just assigning them to 
118         the existing widgets, which never had a chance of working.
119         Put the ModestAccountView treeview in a scrolled window.
120         Do not repeat the initialization in both _init() and _new().
121         
122         * src/widgets/modest-account-view.c: (update_account_view):
123         Add a warning about modest_account_mgr_account_names() returning NULL, which is why 
124         this widget and window shows no accounts.
125         
126         * po/en_GB.po: Added translations needed for the dialog button logical IDs.
127         
128 2007-04-05  Murray Cumming  <murrayc@murrayc.com>
129
130         * src/maemo/easysetup/modest-easysetup-wizard.c:
131         (set_default_custom_servernames): Avoid a dereference of a destroyed widget.
132         (create_account): Do a sanity check, showing that modest_account_mgr_account_names() 
133         returns NULL after modest_account_mgr_add_server_account() returned TRUE, 
134         which seems wrong.
135         
136         * src/maemo/modest-main-window-ui.h: Specify the callback for the Accounts menu item.
137         * src/modest-ui-actions.c: (modest_ui_actions_on_accounts): Open the wizard if no 
138         accounts exist yet, as in the UI spec.
139         
140         * src/modest-account-mgr.h: Add TODO comment about a possible memory leak.
141
142 2007-04-05  Murray Cumming  <murrayc@murrayc.com>
143
144         * src/maemo/Makefile.am:
145         * src/maemo/modest-connection-specific-smtp-edit-window.c:
146         * src/maemo/modest-connection-specific-smtp-edit-window.h: 
147         New window for editing connection-specific smtp details.
148         Not fully implemented.
149
150         * src/maemo/modest-connection-specific-smtp-window.c:
151         (modest_connection_specific_smtp_window_finalize) :
152         unref the tree model.
153         (on_button_edit): Show the edit window.
154
155 2007-04-05  Murray Cumming  <murrayc@murrayc.com>
156
157         * src/Makefile.am: Change sequence of sub-libraries, which fixed an undefined symbol 
158         error for me.
159         
160         * src/maemo/Makefile.am:
161         * src/maemo/modest-connection-specific-smtp-window.c:
162         * src/maemo/modest-connection-specific-smtp-window.h:
163         New window for showing the list of connections, for connection-specific 
164         SMTP servers. Not fully implemented, because it needs an enhancement to TnyMaemoDevice.
165         * src/maemo/easysetup/modest-easysetup-wizard.c:
166         (create_page_custom_outgoing): Show the new window when the button is clicked.
167
168 2007-04-04  Murray Cumming  <murrayc@murrayc.com>
169
170         * src/maemo/easysetup/modest-easysetup-wizard.c: (create_account):
171         * src/maemo/easysetup/modest-presets.c: (modest_presets_new):
172         * src/maemo/modest-msg-edit-window.c:
173         (modest_msg_edit_window_insert_image):
174         * src/modest-conf.c: (modest_conf_key_escape):
175         * src/modest-mail-operation.c:
176         (modest_mail_operation_send_new_mail):
177         * src/modest-ui-actions.c: (modest_ui_actions_on_accounts),
178         (modest_ui_actions_on_new_account):
179         * src/widgets/modest-attachment-view.c: (update_filename_request):
180         * src/widgets/modest-mail-header-view.c: 
181         Corrected warnings that were breaking the build, by commenting out unused variables, 
182         and a function, and by including a header.
183
184 2007-04-04  Murray Cumming  <murrayc@murrayc.com>
185
186         * configure.ac: Define MODEST_PLATFORM_MAEMO and MODEST_PLATFORM_GNOME in config.h, 
187         so we can #ifdef around platform-specific code when necessary.
188         * src/modest-ui-actions.c: (modest_ui_actions_on_new_account): Use MODEST_PLATFORM_MAEMO 
189         to allow this to build for the GNOME platform too.
190
191 2007-04-04  Murray Cumming  <murrayc@murrayc.com>
192
193         * src/maemo/easysetup/modest-easysetup-wizard.c:
194         Added util_increment_name() and used it in create_page_account_details() 
195         to make sure that the default account name is always a new name.
196         
197         (modest_easysetup_wizard_dialog_init), 
198         (set_default_custom_servernames): Some minor memory management fixes.
199
200 2007-04-04  Murray Cumming  <murrayc@murrayc.com>
201
202         * Makefile.am:
203         * configure.ac:
204         * src/modest-runtime.c: (init_i18n): Restored the translation 
205         infrastructure, so that GETTEXT_PACKAGE and MODEST_LOCALE_DIR 
206         are defined in config.h, and the translations are installed.
207         
208         * src/maemo/easysetup/: Include config.h so that GETTEXT_PACKAGE 
209         is defined for translation.
210
211 2007-04-03  Murray Cumming  <murrayc@murrayc.com>
212
213         * src/maemo/easysetup/modest-easysetup-country-combo-box.c:
214         (load_from_file):
215         * src/maemo/easysetup/modest-easysetup-wizard.c:
216         (modest_easysetup_wizard_dialog_init):
217         * src/maemo/easysetup/modest-presets.c: (modest_presets_new): 
218         Use realistic paths (though they should use $prefix generically) to the 
219         mcc_mapping and provider-data.keyfile files which might work when they 
220         are installed by the future version of the operator-wizard package, 
221         and then fallback to paths in our source code, with an explanatory 
222         warning.
223
224 2007-04-03  Murray Cumming  <murrayc@murrayc.com>
225
226         * configure.ac:
227         * src/Makefile.am:
228         * src/maemo/Makefile.am:
229         * src/maemo/easysetup/: Added files from the previously-exernal 
230         osso-modest-easysetup.
231         * src/maemo/modest-main-window-ui.h:
232         * src/modest-ui-actions.c: 
233         * src/modest-ui-actions.h:
234         Added modest_ui_actions_on_new_account() as a signal handler for the 
235         New Account menu item. It shows the easysetup wizard.
236         * po/en_GB.po: Added additional needed logical IDs and translations.
237         
238 Started ChangeLog2 file, because I cannot work without a ChangeLog. murrayc.
239 Apparently ChangeLog is not used for some vague Nokia legal reasons.
240