1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-15 14:05:05 -05:00
k-9/res
cketti 93b94f58c8 Add support for 'theme packs'
Right now only replacing the icon in the action bar is supported.
That's why the term "Icon Pack" is used in the UI.

Known bug: In a PreferenceActivity the second level still shows the
default app icon in the action bar :(

Icon packs need to include an activity with an intent filter for
the action "org.k9mail.THEME_PACK".

Example:

<activity android:name=".SomeActivity">
  <intent-filter>
    <action android:name="org.k9mail.THEME_PACK" />
  </intent-filter>

  <!-- Version number for the theme pack format -->
  <meta-data android:name="version" android:value="1"/>

  <meta-data android:name="name" android:value="Fancy icon"/>
  <meta-data android:name="author" android:value="cketti"/>
  <meta-data android:name="icon_app"
             android:resource="@drawable/ic_app"/>
</activity>
2013-07-01 07:35:01 +02:00
..
anim Tweak animations to use the (Slightly slower) android default animation speed. 2013-02-05 12:04:03 -05:00
drawable Add new multi-select checkboxes to message list 2013-06-07 07:07:27 +02:00
drawable-hdpi Add new multi-select checkboxes to message list 2013-06-07 07:07:27 +02:00
drawable-hdpi-v9 Notification icon update 2013-02-26 20:34:52 +01:00
drawable-hdpi-v11 Notification icon update 2013-02-26 20:34:52 +01:00
drawable-ldpi Change appearance of unread widget 2013-03-16 01:57:21 +01:00
drawable-ldpi-v9 Notification icon update 2013-02-26 20:34:52 +01:00
drawable-ldpi-v11 Notification icon update 2013-02-26 20:34:52 +01:00
drawable-mdpi Add new multi-select checkboxes to message list 2013-06-07 07:07:27 +02:00
drawable-mdpi-v9 Notification icon update 2013-02-26 20:34:52 +01:00
drawable-mdpi-v11 Notification icon update 2013-02-26 20:34:52 +01:00
drawable-xhdpi Add new multi-select checkboxes to message list 2013-06-07 07:07:27 +02:00
drawable-xhdpi-v9 Notification icon update 2013-02-26 20:34:52 +01:00
drawable-xhdpi-v11 Notification icon update 2013-02-26 20:34:52 +01:00
layout Add support for 'theme packs' 2013-07-01 07:35:01 +02:00
layout-land Remove unused stuff 2013-02-21 02:00:12 +01:00
layout-v14 When creating accounts only use 'modern' buttons starting with ICS 2013-05-05 06:17:56 +02:00
menu Remove submenu from the account context menu 2013-06-13 02:48:01 +02:00
raw Fixed typo 2013-05-13 00:27:47 +09:00
values Add support for 'theme packs' 2013-07-01 07:35:01 +02:00
values-ca Update message_compose_reply_header_fmt to have only one newline 2013-04-14 20:06:00 -07:00
values-cs added messageview_autofit_width and translation 2013-05-12 11:55:32 +03:00
values-da Update message_compose_reply_header_fmt to have only one newline 2013-04-14 20:06:00 -07:00
values-de Update German translation 2013-05-06 21:32:01 +02:00
values-el Update greek strings (29 of May 2013) 2013-05-29 11:30:59 +03:00
values-es Update message_compose_reply_header_fmt to have only one newline 2013-04-14 20:06:00 -07:00
values-fi Update message_compose_reply_header_fmt to have only one newline 2013-04-14 20:06:00 -07:00
values-fr Fix error in XML of French translation 2013-05-29 00:45:14 +02:00
values-fr-rCA Convert translations of 'accounts_welcome' to HTML 2012-12-17 19:00:17 +01:00
values-gl Update message_compose_reply_header_fmt to have only one newline 2013-04-14 20:06:00 -07:00
values-hu Update message_compose_reply_header_fmt to have only one newline 2013-04-14 20:06:00 -07:00
values-it Update message_compose_reply_header_fmt to have only one newline 2013-04-14 20:06:00 -07:00
values-iw Update message_compose_reply_header_fmt to have only one newline 2013-04-14 20:06:00 -07:00
values-ja Updated Japanese translation. catch up with 2e74d28. 2013-05-11 09:40:31 +09:00
values-ko Update message_compose_reply_header_fmt to have only one newline 2013-04-14 20:06:00 -07:00
values-land Change appearance of unread widget 2013-03-16 01:57:21 +01:00
values-nl Update message_compose_reply_header_fmt to have only one newline 2013-04-14 20:06:00 -07:00
values-pl Update message_compose_reply_header_fmt to have only one newline 2013-04-14 20:06:00 -07:00
values-pt-rBR New translations and tweaks (PT-BR) 2013-05-31 04:00:52 +02:00
values-ru Update message_compose_reply_header_fmt to have only one newline 2013-04-14 20:06:00 -07:00
values-sv Update message_compose_reply_header_fmt to have only one newline 2013-04-14 20:06:00 -07:00
values-sw600dp-land-v14 Change appearance of unread widget 2013-03-16 01:57:21 +01:00
values-sw600dp-port-v14 Change appearance of unread widget 2013-03-16 01:57:21 +01:00
values-tr Update message_compose_reply_header_fmt to have only one newline 2013-04-14 20:06:00 -07:00
values-uk Update message_compose_reply_header_fmt to have only one newline 2013-04-14 20:06:00 -07:00
values-v11 The theme changes also crashed Honeycomb devices; more fixing 2013-05-05 06:02:39 +02:00
values-v14 The theme changes also crashed Honeycomb devices; more fixing 2013-05-05 06:02:39 +02:00
values-zh-rCN Update message_compose_reply_header_fmt to have only one newline 2013-04-14 20:06:00 -07:00
values-zh-rTW Update message_compose_reply_header_fmt to have only one newline 2013-04-14 20:06:00 -07:00
xml Add support for 'theme packs' 2013-07-01 07:35:01 +02:00
xml-ja Move Japanese translation of the changelog into the correct directory 2013-05-19 04:44:38 +02:00