* Fixed accounts order in the folder view
[modest] / ChangeLog2
index 0b4170f..4a0c6f2 100644 (file)
@@ -1,3 +1,114 @@
+2007-04-25  Murray Cumming  <murrayc@murrayc.com>
+
+       * src/dbus_api/modest-dbus-callbacks.c: Added uri_unescape(),
+       and uri_parse_mailto() utility functions.
+       (on_idle_mail_to): Parse, unescape, and use the subject, cc, bcc, and body items in 
+       the mailto URI.
+       * tests/dbus_api/test_mail_to.c: (main): Add escaped spaces in the URI to test this.
+
+2007-04-24  Murray Cumming  <murrayc@murrayc.com>
+
+       * src/dbus_api/modest-dbus-api.h:
+       * src/dbus_api/modest-dbus-callbacks.c:
+       Use an idle callback to execute the modest code in the application's own thread.
+       Remove the helloworld example method.
+       Handle mail-to and open-message D-Bus methods, though the mail-to format needs to be 
+       parsed, and the open-message method is not implemented because this is not yet implemented in 
+       modest itself.
+       * libmodest-dbus-client/libmodest-dbus-client.c:
+       (libmodest_dbus_client_send_mail), (libmodest_dbus_client_mail_to),
+       (libmodest_dbus_client_open_message):
+       * libmodest-dbus-client/libmodest-dbus-client.h: New functions for the new methods.
+       
+       * src/modest-tny-msg.c: (modest_tny_msg_new), (add_body_part): Handle NULLs for subject and 
+       body without crashing.
+       
+       * tests/dbus_api/Makefile.am:
+       * tests/dbus_api/test_mail_to.c:
+       * tests/dbus_api/test_open_message.c: New tests for the new methods.
+
+2007-04-24  Murray Cumming  <murrayc@murrayc.com>
+
+       * libmodest-dbus-client/libmodest-dbus-client-1.0.pc.in:
+       Added file to fix the build. Sorry.
+       
+       * src/dbus_api/Makefile.am:
+       * src/dbus_api/modest-dbus-api.h:
+       * src/dbus_api/modest-dbus-callbacks.h:
+       * src/dbus_api/modest-dbus-callbacks.c: (on_send_mail),
+       (modest_dbus_req_handler):
+       Put constants in a separate header so it can be reused by the 
+       client library, without duplication
+       
+       * libmodest-dbus-client/Makefile.am:
+       * libmodest-dbus-client/libmodest-dbus-client.c:
+       (libmodest_dbus_client_call_helloworld),
+       (libmodfest_dbus_client_send_mail),
+       (libmodfest_dbus_client_mailto),
+       (libmodfest_dbus_client_open_message):
+       * libmodest-dbus-client/libmodest-dbus-client.h:
+       (Partly) Implement a send_mail D-Bus method.
+       
+       * tests/dbus_api/Makefile.am:
+       * tests/dbus_api/test_send_mail.c: (main): Added a test for 
+       the send_email D-Bus method.
+
+2007-04-24  Murray Cumming  <murrayc@murrayc.com>
+
+       * Makefile.am:
+       * configure.ac:
+       * libmodest-dbus-client/Makefile.am:
+       * libmodest-dbus-client/libmodest-dbus-client.c:
+       * libmodest-dbus-client/libmodest-dbus-client.h:
+       * tests/dbus_api/Makefile.am:
+       * tests/dbus_api/test_hello.c: (main): Added directory structure for a C convenience library 
+       for using the modest D-Bus API, and used that from the test. It is still just a helloworld.
+
+2007-04-24  Murray Cumming  <murrayc@murrayc.com>
+
+       * src/maemo/easysetup/modest-easysetup-wizard.c:
+       (create_page_account_details):
+       * src/maemo/modest-account-settings-dialog.c:
+       (create_page_account_details): Explicitly set auto-capitalization mode for the title 
+       widgets, because this might not be the default in future versions of the Maemo GTK+. 
+       However, I can not not get capitalization to work even in a simple test case.
+
+2007-04-24  Murray Cumming  <murrayc@murrayc.com>
+
+       * src/maemo/easysetup/modest-easysetup-wizard.c:
+       (create_page_custom_incoming), (create_page_custom_outgoing):
+       * src/maemo/modest-account-settings-dialog.c:
+       (create_page_account_details), (create_page_incoming),
+       (create_page_outgoing): Use a separate label in a caption for GtkCheckButtons, 
+       instead of using gtk_check_button_with_label(), so they are aligned like the other 
+       widgets, as per the UI spec.
+
+2007-04-24  Murray Cumming  <murrayc@murrayc.com>
+
+       * src/maemo/easysetup/modest-easysetup-wizard.c:
+       * src/maemo/modest-connection-specific-smtp-edit-window.c:
+       * src/widgets/modest-validating-entry.c:
+       * src/widgets/modest-validating-entry.h: Rename the validating widget so it has a 
+       Modest prefix instead of an EasySetup prefix.
+
+2007-04-23  Murray Cumming  <murrayc@murrayc.com>
+
+       * src/widgets/modest-validating-entry.h:
+       * src/widgets/modest-validating-entry.c: (on_insert_text),
+       Added easysetup_validating_entry_set_max_func(), used to set a callback 
+       to call when the max number of characters is reached. GtkEntry has a max-length 
+       already but is silent about it.
+
+       * src/maemo/easysetup/modest-easysetup-wizard.c: (on_entry_max),
+       (create_page_account_details), (create_page_user_details),
+       (create_account):
+       * src/maemo/modest-account-settings-dialog.c: (on_entry_max),
+       (create_page_account_details), (create_page_user_details),
+       (create_page_outgoing):
+       * src/modest-ui-actions.c: (modest_ui_actions_on_details): 
+       Use easysetup_validating_entry_set_max_func() to show the warning dialog, as per 
+       the UI spec, when the user tries to enter more than the max number of characters.
+
 2007-04-23  Murray Cumming  <murrayc@murrayc.com>
 
        * src/maemo/easysetup/modest-easysetup-wizard.c: