diff --git a/README b/README index 2f989bf7..34a2037d 100644 --- a/README +++ b/README @@ -20,21 +20,49 @@ along with Transdroid. If not, see . --- Some code/libraries are used in the project: - Base16Encoder (Apache OpenJPA) - Marc Prud'hommeaux (Apache License, Version 2.0) - MultipartEntity (AOSP) - Apache Software Foundation (Apache License, Version 2.0) + ActionBarSherlock + Jake Wharton + Apache License, Version 2.0 + http://actionbarsherlock.com/ + AndroidAnnotations + Pierre-Yves Ricau (eBusinessInformations) et al. + Apache License, Version 2.0 + http://androidannotations.org/ + Crouton + Code: Benjamin Weiss (Neofonie Mobile Gmbh) et al. + Idea: Cyril Mottier + Apache License, Version 2.0 + https://github.com/keyboardsurfer/Crouton + BetterPickers + Derek Brameyer + Apache License, Version 2.0 + https://github.com/derekbrameyer/android-betterpickers + Base16Encoder + Marc Prud'hommeaux + Apache OpenJPA + http://openjpa.apache.org/ + MultipartEntity + Apache Software Foundation + Apache License, Version 2.0 http://source.android.com/ RssParser (learning-android) - Tane Piper (Public Domain) + Tane Piper + Public Domain http://github.com/digitalspaghetti/learning-android Base64 - Robert Harder (Public Domain) + Robert Harder + Public Domain http://iharder.net/base64 android-xmlrpc - pskink et al. (Apache License, Version 2.0) + pskink et al. + Apache License, Version 2.0 http://code.google.com/p/android-xmlrpc/ android-ColorPickerPreference - Daniel Nilsson and Sergey Margaritov (Apache License, Version 2.0) + Daniel Nilsson and Sergey Margaritov + Apache License, Version 2.0 https://github.com/attenzione/android-ColorPickerPreference + CheckableRelativeLayout + Cédric Caron (MarvinLabs) + Public Domain + http://www.marvinlabs.com/2010/10/custom-listview-ability-check-items/ diff --git a/android/.classpath b/android/.classpath index 348383ad..d8c7af81 100644 --- a/android/.classpath +++ b/android/.classpath @@ -5,6 +5,6 @@ - + diff --git a/android/src/com/xirvik/transdroid/preferences/PreferencesXirvikServer.java b/android/src/com/xirvik/transdroid/preferences/PreferencesXirvikServer.java index 0abd68a2..84e8f001 100644 --- a/android/src/com/xirvik/transdroid/preferences/PreferencesXirvikServer.java +++ b/android/src/com/xirvik/transdroid/preferences/PreferencesXirvikServer.java @@ -230,7 +230,7 @@ public class PreferencesXirvikServer extends PreferenceActivity { String url = "https://" + serverValue + ":443/browsers_addons/transdroid_autoconf.txt"; HttpResponse request = httpclient.execute(new HttpGet(url)); InputStream stream = request.getEntity().getContent(); - String folderVal = HttpHelper.ConvertStreamToString(stream).trim(); + String folderVal = HttpHelper.convertStreamToString(stream).trim(); if (folderVal.startsWith(" + + + + + + + + + + + + + diff --git a/core/.factorypath b/core/.factorypath new file mode 100644 index 00000000..d528d92e --- /dev/null +++ b/core/.factorypath @@ -0,0 +1,3 @@ + + + diff --git a/core/.project b/core/.project new file mode 100644 index 00000000..1b341fee --- /dev/null +++ b/core/.project @@ -0,0 +1,33 @@ + + + Transdroid Core + + + + + + com.android.ide.eclipse.adt.ResourceManagerBuilder + + + + + com.android.ide.eclipse.adt.PreCompilerBuilder + + + + + org.eclipse.jdt.core.javabuilder + + + + + com.android.ide.eclipse.adt.ApkBuilder + + + + + + com.android.ide.eclipse.adt.AndroidNature + org.eclipse.jdt.core.javanature + + diff --git a/core/.settings/org.eclipse.jdt.apt.core.prefs b/core/.settings/org.eclipse.jdt.apt.core.prefs new file mode 100644 index 00000000..7d52ece5 --- /dev/null +++ b/core/.settings/org.eclipse.jdt.apt.core.prefs @@ -0,0 +1,4 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.apt.aptEnabled=true +org.eclipse.jdt.apt.genSrcDir=.apt_generated +org.eclipse.jdt.apt.reconcileEnabled=true diff --git a/core/.settings/org.eclipse.jdt.core.prefs b/core/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 00000000..0b3561ab --- /dev/null +++ b/core/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,2 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.processAnnotations=enabled diff --git a/core/AndroidManifest.xml b/core/AndroidManifest.xml new file mode 100644 index 00000000..34f5d8e2 --- /dev/null +++ b/core/AndroidManifest.xml @@ -0,0 +1,11 @@ + + + + + + \ No newline at end of file diff --git a/core/build.xml b/core/build.xml new file mode 100644 index 00000000..2371fdcc --- /dev/null +++ b/core/build.xml @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/core/compile-libs/androidannotations-3.0-SNAPSHOT.jar b/core/compile-libs/androidannotations-3.0-SNAPSHOT.jar new file mode 100644 index 00000000..310da002 Binary files /dev/null and b/core/compile-libs/androidannotations-3.0-SNAPSHOT.jar differ diff --git a/core/custom_rules.xml b/core/custom_rules.xml new file mode 100644 index 00000000..183179db --- /dev/null +++ b/core/custom_rules.xml @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Instrumenting classes from ${out.absolute.dir}/classes... + + + + + + + + + + + + + + + + + + + + + Creating library output jar file... + + + + + + + Custom jar packaging exclusion: ${android.package.excludes} + + + + + + + + + + + + + + + + diff --git a/core/libs/androidannotations-api-3.0-SNAPSHOT.jar b/core/libs/androidannotations-api-3.0-SNAPSHOT.jar new file mode 100644 index 00000000..bf0bfae5 Binary files /dev/null and b/core/libs/androidannotations-api-3.0-SNAPSHOT.jar differ diff --git a/core/libs/ormlite-android-4.24.jar b/core/libs/ormlite-android-4.24.jar new file mode 100644 index 00000000..d876135e Binary files /dev/null and b/core/libs/ormlite-android-4.24.jar differ diff --git a/core/libs/ormlite-core-4.24.jar b/core/libs/ormlite-core-4.24.jar new file mode 100644 index 00000000..a9ab582b Binary files /dev/null and b/core/libs/ormlite-core-4.24.jar differ diff --git a/core/libs/transdroid-connect.jar b/core/libs/transdroid-connect.jar new file mode 100644 index 00000000..4c18bffc Binary files /dev/null and b/core/libs/transdroid-connect.jar differ diff --git a/core/libs/universal-image-loader-1.8.4.jar b/core/libs/universal-image-loader-1.8.4.jar new file mode 100644 index 00000000..78369c20 Binary files /dev/null and b/core/libs/universal-image-loader-1.8.4.jar differ diff --git a/core/local.properties b/core/local.properties new file mode 100644 index 00000000..47f704fe --- /dev/null +++ b/core/local.properties @@ -0,0 +1,10 @@ +# This file is automatically generated by Android Tools. +# Do not modify this file -- YOUR CHANGES WILL BE ERASED! +# +# This file must *NOT* be checked into Version Control Systems, +# as it contains information specific to your local configuration. + +# location of the SDK. This is only used by Ant +# For customization when using a Version Control System, please read the +# header note. +sdk.dir=/home/eric/Dev/android-sdk diff --git a/core/proguard-project.txt b/core/proguard-project.txt new file mode 100644 index 00000000..f2fe1559 --- /dev/null +++ b/core/proguard-project.txt @@ -0,0 +1,20 @@ +# To enable ProGuard in your project, edit project.properties +# to define the proguard.config property as described in that file. +# +# Add project specific ProGuard rules here. +# By default, the flags in this file are appended to flags specified +# in ${sdk.dir}/tools/proguard/proguard-android.txt +# You can edit the include path and order by changing the ProGuard +# include property in project.properties. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# Add any project specific keep options here: + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} diff --git a/core/project.properties b/core/project.properties new file mode 100644 index 00000000..0ca2ebd5 --- /dev/null +++ b/core/project.properties @@ -0,0 +1,18 @@ +# This file is automatically generated by Android Tools. +# Do not modify this file -- YOUR CHANGES WILL BE ERASED! +# +# This file must be checked in Version Control Systems. +# +# To customize properties used by the Ant build system edit +# "ant.properties", and override values to adapt the script to your +# project structure. +# +# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): +#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt + +# Project target. +target=android-18 +android.library.reference.1=../external/JakeWharton-ActionBarSherlock/library +android.library.reference.2=../external/ColorPickerPreference +android.library=true +android.library.reference.3=../external/Crouton/library diff --git a/core/res/drawable-hdpi-v11/ic_stat_notification.png b/core/res/drawable-hdpi-v11/ic_stat_notification.png new file mode 100644 index 00000000..3d2ae715 Binary files /dev/null and b/core/res/drawable-hdpi-v11/ic_stat_notification.png differ diff --git a/core/res/drawable-hdpi/ab_bottom_solid_transdroid.9.png b/core/res/drawable-hdpi/ab_bottom_solid_transdroid.9.png new file mode 100644 index 00000000..64793735 Binary files /dev/null and b/core/res/drawable-hdpi/ab_bottom_solid_transdroid.9.png differ diff --git a/core/res/drawable-hdpi/ab_bottom_solid_transdroid2.9.png b/core/res/drawable-hdpi/ab_bottom_solid_transdroid2.9.png new file mode 100644 index 00000000..af25e462 Binary files /dev/null and b/core/res/drawable-hdpi/ab_bottom_solid_transdroid2.9.png differ diff --git a/core/res/drawable-hdpi/ab_solid_transdroid.9.png b/core/res/drawable-hdpi/ab_solid_transdroid.9.png new file mode 100644 index 00000000..12ece624 Binary files /dev/null and b/core/res/drawable-hdpi/ab_solid_transdroid.9.png differ diff --git a/core/res/drawable-hdpi/ab_solid_transdroid2.9.png b/core/res/drawable-hdpi/ab_solid_transdroid2.9.png new file mode 100644 index 00000000..6344cbc2 Binary files /dev/null and b/core/res/drawable-hdpi/ab_solid_transdroid2.9.png differ diff --git a/core/res/drawable-hdpi/ab_stacked_solid_transdroid.9.png b/core/res/drawable-hdpi/ab_stacked_solid_transdroid.9.png new file mode 100644 index 00000000..005445ac Binary files /dev/null and b/core/res/drawable-hdpi/ab_stacked_solid_transdroid.9.png differ diff --git a/core/res/drawable-hdpi/ab_stacked_solid_transdroid2.9.png b/core/res/drawable-hdpi/ab_stacked_solid_transdroid2.9.png new file mode 100644 index 00000000..a48652d3 Binary files /dev/null and b/core/res/drawable-hdpi/ab_stacked_solid_transdroid2.9.png differ diff --git a/core/res/drawable-hdpi/ab_texture_tile_transdroid2.png b/core/res/drawable-hdpi/ab_texture_tile_transdroid2.png new file mode 100644 index 00000000..87cc8211 Binary files /dev/null and b/core/res/drawable-hdpi/ab_texture_tile_transdroid2.png differ diff --git a/core/res/drawable-hdpi/ab_transparent_transdroid.9.png b/core/res/drawable-hdpi/ab_transparent_transdroid.9.png new file mode 100644 index 00000000..fc241b9f Binary files /dev/null and b/core/res/drawable-hdpi/ab_transparent_transdroid.9.png differ diff --git a/core/res/drawable-hdpi/ab_transparent_transdroid2.9.png b/core/res/drawable-hdpi/ab_transparent_transdroid2.9.png new file mode 100644 index 00000000..e517f83b Binary files /dev/null and b/core/res/drawable-hdpi/ab_transparent_transdroid2.9.png differ diff --git a/core/res/drawable-hdpi/btn_cab_done_default_transdroid2.9.png b/core/res/drawable-hdpi/btn_cab_done_default_transdroid2.9.png new file mode 100644 index 00000000..fc6944ea Binary files /dev/null and b/core/res/drawable-hdpi/btn_cab_done_default_transdroid2.9.png differ diff --git a/core/res/drawable-hdpi/btn_cab_done_focused_transdroid2.9.png b/core/res/drawable-hdpi/btn_cab_done_focused_transdroid2.9.png new file mode 100644 index 00000000..72a72d8b Binary files /dev/null and b/core/res/drawable-hdpi/btn_cab_done_focused_transdroid2.9.png differ diff --git a/core/res/drawable-hdpi/btn_cab_done_pressed_transdroid2.9.png b/core/res/drawable-hdpi/btn_cab_done_pressed_transdroid2.9.png new file mode 100644 index 00000000..8c69a5cf Binary files /dev/null and b/core/res/drawable-hdpi/btn_cab_done_pressed_transdroid2.9.png differ diff --git a/core/res/drawable-hdpi/cab_background_bottom_transdroid2.9.png b/core/res/drawable-hdpi/cab_background_bottom_transdroid2.9.png new file mode 100644 index 00000000..d61abca3 Binary files /dev/null and b/core/res/drawable-hdpi/cab_background_bottom_transdroid2.9.png differ diff --git a/core/res/drawable-hdpi/cab_background_top_transdroid2.9.png b/core/res/drawable-hdpi/cab_background_top_transdroid2.9.png new file mode 100644 index 00000000..6bc2078c Binary files /dev/null and b/core/res/drawable-hdpi/cab_background_top_transdroid2.9.png differ diff --git a/core/res/drawable-hdpi/ic_action_discard_dark.png b/core/res/drawable-hdpi/ic_action_discard_dark.png new file mode 100644 index 00000000..ffd19d9e Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_discard_dark.png differ diff --git a/core/res/drawable-hdpi/ic_action_discard_light.png b/core/res/drawable-hdpi/ic_action_discard_light.png new file mode 100644 index 00000000..e9ce89e0 Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_discard_light.png differ diff --git a/core/res/drawable-hdpi/ic_action_labels_dark.png b/core/res/drawable-hdpi/ic_action_labels_dark.png new file mode 100644 index 00000000..432e7c00 Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_labels_dark.png differ diff --git a/core/res/drawable-hdpi/ic_action_labels_light.png b/core/res/drawable-hdpi/ic_action_labels_light.png new file mode 100644 index 00000000..9b093a67 Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_labels_light.png differ diff --git a/core/res/drawable-hdpi/ic_action_new_dark.png b/core/res/drawable-hdpi/ic_action_new_dark.png new file mode 100644 index 00000000..ad8ada6b Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_new_dark.png differ diff --git a/core/res/drawable-hdpi/ic_action_new_light.png b/core/res/drawable-hdpi/ic_action_new_light.png new file mode 100644 index 00000000..5741995c Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_new_light.png differ diff --git a/core/res/drawable-hdpi/ic_action_pause_dark.png b/core/res/drawable-hdpi/ic_action_pause_dark.png new file mode 100644 index 00000000..6b435bb0 Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_pause_dark.png differ diff --git a/core/res/drawable-hdpi/ic_action_pause_light.png b/core/res/drawable-hdpi/ic_action_pause_light.png new file mode 100644 index 00000000..9661cfbb Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_pause_light.png differ diff --git a/core/res/drawable-hdpi/ic_action_priority_high_dark.png b/core/res/drawable-hdpi/ic_action_priority_high_dark.png new file mode 100644 index 00000000..84478f76 Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_priority_high_dark.png differ diff --git a/core/res/drawable-hdpi/ic_action_priority_high_light.png b/core/res/drawable-hdpi/ic_action_priority_high_light.png new file mode 100644 index 00000000..4edf7a36 Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_priority_high_light.png differ diff --git a/core/res/drawable-hdpi/ic_action_priority_low_dark.png b/core/res/drawable-hdpi/ic_action_priority_low_dark.png new file mode 100644 index 00000000..8802cad4 Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_priority_low_dark.png differ diff --git a/core/res/drawable-hdpi/ic_action_priority_low_light.png b/core/res/drawable-hdpi/ic_action_priority_low_light.png new file mode 100644 index 00000000..23ada0ca Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_priority_low_light.png differ diff --git a/core/res/drawable-hdpi/ic_action_priority_normal_dark.png b/core/res/drawable-hdpi/ic_action_priority_normal_dark.png new file mode 100644 index 00000000..7f7890f2 Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_priority_normal_dark.png differ diff --git a/core/res/drawable-hdpi/ic_action_priority_normal_light.png b/core/res/drawable-hdpi/ic_action_priority_normal_light.png new file mode 100644 index 00000000..0246a1b7 Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_priority_normal_light.png differ diff --git a/core/res/drawable-hdpi/ic_action_priority_off_dark.png b/core/res/drawable-hdpi/ic_action_priority_off_dark.png new file mode 100644 index 00000000..ab37b556 Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_priority_off_dark.png differ diff --git a/core/res/drawable-hdpi/ic_action_priority_off_light.png b/core/res/drawable-hdpi/ic_action_priority_off_light.png new file mode 100644 index 00000000..7bf6101d Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_priority_off_light.png differ diff --git a/core/res/drawable-hdpi/ic_action_refresh_dark.png b/core/res/drawable-hdpi/ic_action_refresh_dark.png new file mode 100644 index 00000000..bb9d855f Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_refresh_dark.png differ diff --git a/core/res/drawable-hdpi/ic_action_refresh_light.png b/core/res/drawable-hdpi/ic_action_refresh_light.png new file mode 100644 index 00000000..479aca46 Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_refresh_light.png differ diff --git a/core/res/drawable-hdpi/ic_action_remove_dark.png b/core/res/drawable-hdpi/ic_action_remove_dark.png new file mode 100644 index 00000000..094eea58 Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_remove_dark.png differ diff --git a/core/res/drawable-hdpi/ic_action_remove_light.png b/core/res/drawable-hdpi/ic_action_remove_light.png new file mode 100644 index 00000000..cde36e1f Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_remove_light.png differ diff --git a/core/res/drawable-hdpi/ic_action_resume_dark.png b/core/res/drawable-hdpi/ic_action_resume_dark.png new file mode 100644 index 00000000..738aae1a Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_resume_dark.png differ diff --git a/core/res/drawable-hdpi/ic_action_resume_light.png b/core/res/drawable-hdpi/ic_action_resume_light.png new file mode 100644 index 00000000..b4f692fc Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_resume_light.png differ diff --git a/core/res/drawable-hdpi/ic_action_rss_dark.png b/core/res/drawable-hdpi/ic_action_rss_dark.png new file mode 100644 index 00000000..02ec51ef Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_rss_dark.png differ diff --git a/core/res/drawable-hdpi/ic_action_rss_light.png b/core/res/drawable-hdpi/ic_action_rss_light.png new file mode 100644 index 00000000..6aa10203 Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_rss_light.png differ diff --git a/core/res/drawable-hdpi/ic_action_search_dark.png b/core/res/drawable-hdpi/ic_action_search_dark.png new file mode 100644 index 00000000..f12e005e Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_search_dark.png differ diff --git a/core/res/drawable-hdpi/ic_action_search_light.png b/core/res/drawable-hdpi/ic_action_search_light.png new file mode 100644 index 00000000..e6b70451 Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_search_light.png differ diff --git a/core/res/drawable-hdpi/ic_action_sort_by_size_dark.png b/core/res/drawable-hdpi/ic_action_sort_by_size_dark.png new file mode 100644 index 00000000..cbb5f451 Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_sort_by_size_dark.png differ diff --git a/core/res/drawable-hdpi/ic_action_sort_by_size_light.png b/core/res/drawable-hdpi/ic_action_sort_by_size_light.png new file mode 100644 index 00000000..3b34aaf8 Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_sort_by_size_light.png differ diff --git a/core/res/drawable-hdpi/ic_action_start_dark.png b/core/res/drawable-hdpi/ic_action_start_dark.png new file mode 100644 index 00000000..df8a2ca2 Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_start_dark.png differ diff --git a/core/res/drawable-hdpi/ic_action_start_light.png b/core/res/drawable-hdpi/ic_action_start_light.png new file mode 100644 index 00000000..e70f0413 Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_start_light.png differ diff --git a/core/res/drawable-hdpi/ic_action_stop_dark.png b/core/res/drawable-hdpi/ic_action_stop_dark.png new file mode 100644 index 00000000..dd5d6a1c Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_stop_dark.png differ diff --git a/core/res/drawable-hdpi/ic_action_stop_light.png b/core/res/drawable-hdpi/ic_action_stop_light.png new file mode 100644 index 00000000..9c2f96da Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_stop_light.png differ diff --git a/core/res/drawable-hdpi/ic_action_trackers_dark.png b/core/res/drawable-hdpi/ic_action_trackers_dark.png new file mode 100644 index 00000000..97231b91 Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_trackers_dark.png differ diff --git a/core/res/drawable-hdpi/ic_action_trackers_light.png b/core/res/drawable-hdpi/ic_action_trackers_light.png new file mode 100644 index 00000000..89fa0cd0 Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_trackers_light.png differ diff --git a/core/res/drawable-hdpi/ic_action_turtle_disabled_light.png b/core/res/drawable-hdpi/ic_action_turtle_disabled_light.png new file mode 100644 index 00000000..a99cd104 Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_turtle_disabled_light.png differ diff --git a/core/res/drawable-hdpi/ic_action_turtle_enabled.png b/core/res/drawable-hdpi/ic_action_turtle_enabled.png new file mode 100644 index 00000000..1532eb39 Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_turtle_enabled.png differ diff --git a/core/res/drawable-hdpi/ic_action_website_dark.png b/core/res/drawable-hdpi/ic_action_website_dark.png new file mode 100644 index 00000000..e154afdb Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_website_dark.png differ diff --git a/core/res/drawable-hdpi/ic_action_website_light.png b/core/res/drawable-hdpi/ic_action_website_light.png new file mode 100644 index 00000000..6a2bc885 Binary files /dev/null and b/core/res/drawable-hdpi/ic_action_website_light.png differ diff --git a/core/res/drawable-hdpi/ic_activity_torrents.png b/core/res/drawable-hdpi/ic_activity_torrents.png new file mode 100644 index 00000000..63728265 Binary files /dev/null and b/core/res/drawable-hdpi/ic_activity_torrents.png differ diff --git a/core/res/drawable-hdpi/ic_empty_details_dark.png b/core/res/drawable-hdpi/ic_empty_details_dark.png new file mode 100644 index 00000000..718615e5 Binary files /dev/null and b/core/res/drawable-hdpi/ic_empty_details_dark.png differ diff --git a/core/res/drawable-hdpi/ic_empty_details_light.png b/core/res/drawable-hdpi/ic_empty_details_light.png new file mode 100644 index 00000000..6a1b5aa9 Binary files /dev/null and b/core/res/drawable-hdpi/ic_empty_details_light.png differ diff --git a/core/res/drawable-hdpi/ic_launcher.png b/core/res/drawable-hdpi/ic_launcher.png new file mode 100644 index 00000000..d6181101 Binary files /dev/null and b/core/res/drawable-hdpi/ic_launcher.png differ diff --git a/core/res/drawable-hdpi/ic_stat_notification.png b/core/res/drawable-hdpi/ic_stat_notification.png new file mode 100644 index 00000000..32ba0b73 Binary files /dev/null and b/core/res/drawable-hdpi/ic_stat_notification.png differ diff --git a/core/res/drawable-hdpi/list_focused_transdroid.9.png b/core/res/drawable-hdpi/list_focused_transdroid.9.png new file mode 100644 index 00000000..b342ccbb Binary files /dev/null and b/core/res/drawable-hdpi/list_focused_transdroid.9.png differ diff --git a/core/res/drawable-hdpi/list_focused_transdroid2.9.png b/core/res/drawable-hdpi/list_focused_transdroid2.9.png new file mode 100644 index 00000000..411da949 Binary files /dev/null and b/core/res/drawable-hdpi/list_focused_transdroid2.9.png differ diff --git a/core/res/drawable-hdpi/menu_dropdown_panel_transdroid.9.png b/core/res/drawable-hdpi/menu_dropdown_panel_transdroid.9.png new file mode 100644 index 00000000..bab5e3ba Binary files /dev/null and b/core/res/drawable-hdpi/menu_dropdown_panel_transdroid.9.png differ diff --git a/core/res/drawable-hdpi/menu_dropdown_panel_transdroid2.9.png b/core/res/drawable-hdpi/menu_dropdown_panel_transdroid2.9.png new file mode 100644 index 00000000..a1148598 Binary files /dev/null and b/core/res/drawable-hdpi/menu_dropdown_panel_transdroid2.9.png differ diff --git a/core/res/drawable-hdpi/menu_hardkey_panel_transdroid.9.png b/core/res/drawable-hdpi/menu_hardkey_panel_transdroid.9.png new file mode 100644 index 00000000..40a8f3eb Binary files /dev/null and b/core/res/drawable-hdpi/menu_hardkey_panel_transdroid.9.png differ diff --git a/core/res/drawable-hdpi/progress_bg_transdroid.9.png b/core/res/drawable-hdpi/progress_bg_transdroid.9.png new file mode 100644 index 00000000..3d5c707d Binary files /dev/null and b/core/res/drawable-hdpi/progress_bg_transdroid.9.png differ diff --git a/core/res/drawable-hdpi/progress_bg_transdroid2.9.png b/core/res/drawable-hdpi/progress_bg_transdroid2.9.png new file mode 100644 index 00000000..3b183e07 Binary files /dev/null and b/core/res/drawable-hdpi/progress_bg_transdroid2.9.png differ diff --git a/core/res/drawable-hdpi/progress_primary_transdroid.9.png b/core/res/drawable-hdpi/progress_primary_transdroid.9.png new file mode 100644 index 00000000..44a3c436 Binary files /dev/null and b/core/res/drawable-hdpi/progress_primary_transdroid.9.png differ diff --git a/core/res/drawable-hdpi/progress_primary_transdroid2.9.png b/core/res/drawable-hdpi/progress_primary_transdroid2.9.png new file mode 100644 index 00000000..8a6b5208 Binary files /dev/null and b/core/res/drawable-hdpi/progress_primary_transdroid2.9.png differ diff --git a/core/res/drawable-hdpi/progress_secondary_transdroid.9.png b/core/res/drawable-hdpi/progress_secondary_transdroid.9.png new file mode 100644 index 00000000..32196b2b Binary files /dev/null and b/core/res/drawable-hdpi/progress_secondary_transdroid.9.png differ diff --git a/core/res/drawable-hdpi/progress_secondary_transdroid2.9.png b/core/res/drawable-hdpi/progress_secondary_transdroid2.9.png new file mode 100644 index 00000000..34d2c6ea Binary files /dev/null and b/core/res/drawable-hdpi/progress_secondary_transdroid2.9.png differ diff --git a/core/res/drawable-hdpi/spinner_ab_default_transdroid.9.png b/core/res/drawable-hdpi/spinner_ab_default_transdroid.9.png new file mode 100644 index 00000000..4fd4aeba Binary files /dev/null and b/core/res/drawable-hdpi/spinner_ab_default_transdroid.9.png differ diff --git a/core/res/drawable-hdpi/spinner_ab_default_transdroid2.9.png b/core/res/drawable-hdpi/spinner_ab_default_transdroid2.9.png new file mode 100644 index 00000000..e518eb7d Binary files /dev/null and b/core/res/drawable-hdpi/spinner_ab_default_transdroid2.9.png differ diff --git a/core/res/drawable-hdpi/spinner_ab_disabled_transdroid.9.png b/core/res/drawable-hdpi/spinner_ab_disabled_transdroid.9.png new file mode 100644 index 00000000..d42c97b8 Binary files /dev/null and b/core/res/drawable-hdpi/spinner_ab_disabled_transdroid.9.png differ diff --git a/core/res/drawable-hdpi/spinner_ab_disabled_transdroid2.9.png b/core/res/drawable-hdpi/spinner_ab_disabled_transdroid2.9.png new file mode 100644 index 00000000..b6febf96 Binary files /dev/null and b/core/res/drawable-hdpi/spinner_ab_disabled_transdroid2.9.png differ diff --git a/core/res/drawable-hdpi/spinner_ab_focused_transdroid.9.png b/core/res/drawable-hdpi/spinner_ab_focused_transdroid.9.png new file mode 100644 index 00000000..4761bd26 Binary files /dev/null and b/core/res/drawable-hdpi/spinner_ab_focused_transdroid.9.png differ diff --git a/core/res/drawable-hdpi/spinner_ab_focused_transdroid2.9.png b/core/res/drawable-hdpi/spinner_ab_focused_transdroid2.9.png new file mode 100644 index 00000000..544ae6ae Binary files /dev/null and b/core/res/drawable-hdpi/spinner_ab_focused_transdroid2.9.png differ diff --git a/core/res/drawable-hdpi/spinner_ab_pressed_transdroid.9.png b/core/res/drawable-hdpi/spinner_ab_pressed_transdroid.9.png new file mode 100644 index 00000000..bddc913e Binary files /dev/null and b/core/res/drawable-hdpi/spinner_ab_pressed_transdroid.9.png differ diff --git a/core/res/drawable-hdpi/spinner_ab_pressed_transdroid2.9.png b/core/res/drawable-hdpi/spinner_ab_pressed_transdroid2.9.png new file mode 100644 index 00000000..7d207c52 Binary files /dev/null and b/core/res/drawable-hdpi/spinner_ab_pressed_transdroid2.9.png differ diff --git a/core/res/drawable-hdpi/tab_selected_focused_transdroid.9.png b/core/res/drawable-hdpi/tab_selected_focused_transdroid.9.png new file mode 100644 index 00000000..36fec49a Binary files /dev/null and b/core/res/drawable-hdpi/tab_selected_focused_transdroid.9.png differ diff --git a/core/res/drawable-hdpi/tab_selected_focused_transdroid2.9.png b/core/res/drawable-hdpi/tab_selected_focused_transdroid2.9.png new file mode 100644 index 00000000..15e12068 Binary files /dev/null and b/core/res/drawable-hdpi/tab_selected_focused_transdroid2.9.png differ diff --git a/core/res/drawable-hdpi/tab_selected_pressed_transdroid.9.png b/core/res/drawable-hdpi/tab_selected_pressed_transdroid.9.png new file mode 100644 index 00000000..aa07ad6f Binary files /dev/null and b/core/res/drawable-hdpi/tab_selected_pressed_transdroid.9.png differ diff --git a/core/res/drawable-hdpi/tab_selected_pressed_transdroid2.9.png b/core/res/drawable-hdpi/tab_selected_pressed_transdroid2.9.png new file mode 100644 index 00000000..cca1aeb2 Binary files /dev/null and b/core/res/drawable-hdpi/tab_selected_pressed_transdroid2.9.png differ diff --git a/core/res/drawable-hdpi/tab_selected_transdroid.9.png b/core/res/drawable-hdpi/tab_selected_transdroid.9.png new file mode 100644 index 00000000..d59bde58 Binary files /dev/null and b/core/res/drawable-hdpi/tab_selected_transdroid.9.png differ diff --git a/core/res/drawable-hdpi/tab_selected_transdroid2.9.png b/core/res/drawable-hdpi/tab_selected_transdroid2.9.png new file mode 100644 index 00000000..ca828066 Binary files /dev/null and b/core/res/drawable-hdpi/tab_selected_transdroid2.9.png differ diff --git a/core/res/drawable-hdpi/tab_unselected_focused_transdroid.9.png b/core/res/drawable-hdpi/tab_unselected_focused_transdroid.9.png new file mode 100644 index 00000000..40613b47 Binary files /dev/null and b/core/res/drawable-hdpi/tab_unselected_focused_transdroid.9.png differ diff --git a/core/res/drawable-hdpi/tab_unselected_focused_transdroid2.9.png b/core/res/drawable-hdpi/tab_unselected_focused_transdroid2.9.png new file mode 100644 index 00000000..d8ed7709 Binary files /dev/null and b/core/res/drawable-hdpi/tab_unselected_focused_transdroid2.9.png differ diff --git a/core/res/drawable-hdpi/tab_unselected_pressed_transdroid.9.png b/core/res/drawable-hdpi/tab_unselected_pressed_transdroid.9.png new file mode 100644 index 00000000..ef83039c Binary files /dev/null and b/core/res/drawable-hdpi/tab_unselected_pressed_transdroid.9.png differ diff --git a/core/res/drawable-hdpi/tab_unselected_pressed_transdroid2.9.png b/core/res/drawable-hdpi/tab_unselected_pressed_transdroid2.9.png new file mode 100644 index 00000000..bd9026bc Binary files /dev/null and b/core/res/drawable-hdpi/tab_unselected_pressed_transdroid2.9.png differ diff --git a/core/res/drawable-hdpi/tab_unselected_transdroid2.9.png b/core/res/drawable-hdpi/tab_unselected_transdroid2.9.png new file mode 100644 index 00000000..c442c393 Binary files /dev/null and b/core/res/drawable-hdpi/tab_unselected_transdroid2.9.png differ diff --git a/core/res/drawable-mdpi-v11/ic_stat_notification.png b/core/res/drawable-mdpi-v11/ic_stat_notification.png new file mode 100644 index 00000000..a598474c Binary files /dev/null and b/core/res/drawable-mdpi-v11/ic_stat_notification.png differ diff --git a/core/res/drawable-mdpi/ab_bottom_solid_transdroid.9.png b/core/res/drawable-mdpi/ab_bottom_solid_transdroid.9.png new file mode 100644 index 00000000..135904dc Binary files /dev/null and b/core/res/drawable-mdpi/ab_bottom_solid_transdroid.9.png differ diff --git a/core/res/drawable-mdpi/ab_bottom_solid_transdroid2.9.png b/core/res/drawable-mdpi/ab_bottom_solid_transdroid2.9.png new file mode 100644 index 00000000..77ef47fe Binary files /dev/null and b/core/res/drawable-mdpi/ab_bottom_solid_transdroid2.9.png differ diff --git a/core/res/drawable-mdpi/ab_solid_transdroid.9.png b/core/res/drawable-mdpi/ab_solid_transdroid.9.png new file mode 100644 index 00000000..fa3d4284 Binary files /dev/null and b/core/res/drawable-mdpi/ab_solid_transdroid.9.png differ diff --git a/core/res/drawable-mdpi/ab_solid_transdroid2.9.png b/core/res/drawable-mdpi/ab_solid_transdroid2.9.png new file mode 100644 index 00000000..9b1e02aa Binary files /dev/null and b/core/res/drawable-mdpi/ab_solid_transdroid2.9.png differ diff --git a/core/res/drawable-mdpi/ab_stacked_solid_transdroid.9.png b/core/res/drawable-mdpi/ab_stacked_solid_transdroid.9.png new file mode 100644 index 00000000..fd09cb18 Binary files /dev/null and b/core/res/drawable-mdpi/ab_stacked_solid_transdroid.9.png differ diff --git a/core/res/drawable-mdpi/ab_stacked_solid_transdroid2.9.png b/core/res/drawable-mdpi/ab_stacked_solid_transdroid2.9.png new file mode 100644 index 00000000..3c78f52c Binary files /dev/null and b/core/res/drawable-mdpi/ab_stacked_solid_transdroid2.9.png differ diff --git a/core/res/drawable-mdpi/ab_texture_tile_transdroid2.png b/core/res/drawable-mdpi/ab_texture_tile_transdroid2.png new file mode 100644 index 00000000..87cc8211 Binary files /dev/null and b/core/res/drawable-mdpi/ab_texture_tile_transdroid2.png differ diff --git a/core/res/drawable-mdpi/ab_transparent_transdroid.9.png b/core/res/drawable-mdpi/ab_transparent_transdroid.9.png new file mode 100644 index 00000000..8c3b514f Binary files /dev/null and b/core/res/drawable-mdpi/ab_transparent_transdroid.9.png differ diff --git a/core/res/drawable-mdpi/ab_transparent_transdroid2.9.png b/core/res/drawable-mdpi/ab_transparent_transdroid2.9.png new file mode 100644 index 00000000..f24375ca Binary files /dev/null and b/core/res/drawable-mdpi/ab_transparent_transdroid2.9.png differ diff --git a/core/res/drawable-mdpi/btn_cab_done_default_transdroid2.9.png b/core/res/drawable-mdpi/btn_cab_done_default_transdroid2.9.png new file mode 100644 index 00000000..da14cdbc Binary files /dev/null and b/core/res/drawable-mdpi/btn_cab_done_default_transdroid2.9.png differ diff --git a/core/res/drawable-mdpi/btn_cab_done_focused_transdroid2.9.png b/core/res/drawable-mdpi/btn_cab_done_focused_transdroid2.9.png new file mode 100644 index 00000000..89b06832 Binary files /dev/null and b/core/res/drawable-mdpi/btn_cab_done_focused_transdroid2.9.png differ diff --git a/core/res/drawable-mdpi/btn_cab_done_pressed_transdroid2.9.png b/core/res/drawable-mdpi/btn_cab_done_pressed_transdroid2.9.png new file mode 100644 index 00000000..767cf60e Binary files /dev/null and b/core/res/drawable-mdpi/btn_cab_done_pressed_transdroid2.9.png differ diff --git a/core/res/drawable-mdpi/cab_background_bottom_transdroid2.9.png b/core/res/drawable-mdpi/cab_background_bottom_transdroid2.9.png new file mode 100644 index 00000000..df024689 Binary files /dev/null and b/core/res/drawable-mdpi/cab_background_bottom_transdroid2.9.png differ diff --git a/core/res/drawable-mdpi/cab_background_top_transdroid2.9.png b/core/res/drawable-mdpi/cab_background_top_transdroid2.9.png new file mode 100644 index 00000000..02b6f3b6 Binary files /dev/null and b/core/res/drawable-mdpi/cab_background_top_transdroid2.9.png differ diff --git a/core/res/drawable-mdpi/ic_action_discard.png b/core/res/drawable-mdpi/ic_action_discard.png new file mode 100644 index 00000000..a8ee5f25 Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_discard.png differ diff --git a/core/res/drawable-mdpi/ic_action_discard_light.png b/core/res/drawable-mdpi/ic_action_discard_light.png new file mode 100644 index 00000000..cedb1085 Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_discard_light.png differ diff --git a/core/res/drawable-mdpi/ic_action_labels_dark.png b/core/res/drawable-mdpi/ic_action_labels_dark.png new file mode 100644 index 00000000..b85d7c58 Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_labels_dark.png differ diff --git a/core/res/drawable-mdpi/ic_action_labels_light.png b/core/res/drawable-mdpi/ic_action_labels_light.png new file mode 100644 index 00000000..8567d5e4 Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_labels_light.png differ diff --git a/core/res/drawable-mdpi/ic_action_new_dark.png b/core/res/drawable-mdpi/ic_action_new_dark.png new file mode 100644 index 00000000..4d5d484b Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_new_dark.png differ diff --git a/core/res/drawable-mdpi/ic_action_new_light.png b/core/res/drawable-mdpi/ic_action_new_light.png new file mode 100644 index 00000000..884c9d27 Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_new_light.png differ diff --git a/core/res/drawable-mdpi/ic_action_pause_dark.png b/core/res/drawable-mdpi/ic_action_pause_dark.png new file mode 100644 index 00000000..a5aee6f2 Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_pause_dark.png differ diff --git a/core/res/drawable-mdpi/ic_action_pause_light.png b/core/res/drawable-mdpi/ic_action_pause_light.png new file mode 100644 index 00000000..01858e34 Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_pause_light.png differ diff --git a/core/res/drawable-mdpi/ic_action_priority_high_dark.png b/core/res/drawable-mdpi/ic_action_priority_high_dark.png new file mode 100644 index 00000000..9cfeeebc Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_priority_high_dark.png differ diff --git a/core/res/drawable-mdpi/ic_action_priority_high_light.png b/core/res/drawable-mdpi/ic_action_priority_high_light.png new file mode 100644 index 00000000..bef007c6 Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_priority_high_light.png differ diff --git a/core/res/drawable-mdpi/ic_action_priority_low_dark.png b/core/res/drawable-mdpi/ic_action_priority_low_dark.png new file mode 100644 index 00000000..89927f63 Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_priority_low_dark.png differ diff --git a/core/res/drawable-mdpi/ic_action_priority_low_light.png b/core/res/drawable-mdpi/ic_action_priority_low_light.png new file mode 100644 index 00000000..44e768fa Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_priority_low_light.png differ diff --git a/core/res/drawable-mdpi/ic_action_priority_normal_dark.png b/core/res/drawable-mdpi/ic_action_priority_normal_dark.png new file mode 100644 index 00000000..7dd2c7bd Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_priority_normal_dark.png differ diff --git a/core/res/drawable-mdpi/ic_action_priority_normal_light.png b/core/res/drawable-mdpi/ic_action_priority_normal_light.png new file mode 100644 index 00000000..4a471f36 Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_priority_normal_light.png differ diff --git a/core/res/drawable-mdpi/ic_action_priority_off_dark.png b/core/res/drawable-mdpi/ic_action_priority_off_dark.png new file mode 100644 index 00000000..8d9c72d5 Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_priority_off_dark.png differ diff --git a/core/res/drawable-mdpi/ic_action_priority_off_light.png b/core/res/drawable-mdpi/ic_action_priority_off_light.png new file mode 100644 index 00000000..d7766bc2 Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_priority_off_light.png differ diff --git a/core/res/drawable-mdpi/ic_action_refresh_dark.png b/core/res/drawable-mdpi/ic_action_refresh_dark.png new file mode 100644 index 00000000..bd611e8e Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_refresh_dark.png differ diff --git a/core/res/drawable-mdpi/ic_action_refresh_light.png b/core/res/drawable-mdpi/ic_action_refresh_light.png new file mode 100644 index 00000000..63e70e17 Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_refresh_light.png differ diff --git a/core/res/drawable-mdpi/ic_action_remove_dark.png b/core/res/drawable-mdpi/ic_action_remove_dark.png new file mode 100644 index 00000000..3336760d Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_remove_dark.png differ diff --git a/core/res/drawable-mdpi/ic_action_remove_light.png b/core/res/drawable-mdpi/ic_action_remove_light.png new file mode 100644 index 00000000..9f4c3d6a Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_remove_light.png differ diff --git a/core/res/drawable-mdpi/ic_action_resume_dark.png b/core/res/drawable-mdpi/ic_action_resume_dark.png new file mode 100644 index 00000000..28e81379 Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_resume_dark.png differ diff --git a/core/res/drawable-mdpi/ic_action_resume_light.png b/core/res/drawable-mdpi/ic_action_resume_light.png new file mode 100644 index 00000000..937e0299 Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_resume_light.png differ diff --git a/core/res/drawable-mdpi/ic_action_rss_dark.png b/core/res/drawable-mdpi/ic_action_rss_dark.png new file mode 100644 index 00000000..2de867b8 Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_rss_dark.png differ diff --git a/core/res/drawable-mdpi/ic_action_rss_light.png b/core/res/drawable-mdpi/ic_action_rss_light.png new file mode 100644 index 00000000..2c5d0933 Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_rss_light.png differ diff --git a/core/res/drawable-mdpi/ic_action_search_dark.png b/core/res/drawable-mdpi/ic_action_search_dark.png new file mode 100644 index 00000000..587d9e0b Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_search_dark.png differ diff --git a/core/res/drawable-mdpi/ic_action_search_light.png b/core/res/drawable-mdpi/ic_action_search_light.png new file mode 100644 index 00000000..3aa64404 Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_search_light.png differ diff --git a/core/res/drawable-mdpi/ic_action_sort_by_size_dark.png b/core/res/drawable-mdpi/ic_action_sort_by_size_dark.png new file mode 100644 index 00000000..aa921e76 Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_sort_by_size_dark.png differ diff --git a/core/res/drawable-mdpi/ic_action_sort_by_size_light.png b/core/res/drawable-mdpi/ic_action_sort_by_size_light.png new file mode 100644 index 00000000..af004e5f Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_sort_by_size_light.png differ diff --git a/core/res/drawable-mdpi/ic_action_start_dark.png b/core/res/drawable-mdpi/ic_action_start_dark.png new file mode 100644 index 00000000..6a40cd5f Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_start_dark.png differ diff --git a/core/res/drawable-mdpi/ic_action_start_light.png b/core/res/drawable-mdpi/ic_action_start_light.png new file mode 100644 index 00000000..1e3bc97a Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_start_light.png differ diff --git a/core/res/drawable-mdpi/ic_action_stop_dark.png b/core/res/drawable-mdpi/ic_action_stop_dark.png new file mode 100644 index 00000000..20df4158 Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_stop_dark.png differ diff --git a/core/res/drawable-mdpi/ic_action_stop_light.png b/core/res/drawable-mdpi/ic_action_stop_light.png new file mode 100644 index 00000000..0c1a0a97 Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_stop_light.png differ diff --git a/core/res/drawable-mdpi/ic_action_trackers_dark.png b/core/res/drawable-mdpi/ic_action_trackers_dark.png new file mode 100644 index 00000000..539bad7d Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_trackers_dark.png differ diff --git a/core/res/drawable-mdpi/ic_action_trackers_light.png b/core/res/drawable-mdpi/ic_action_trackers_light.png new file mode 100644 index 00000000..f9c51464 Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_trackers_light.png differ diff --git a/core/res/drawable-mdpi/ic_action_turtle_disabled.png b/core/res/drawable-mdpi/ic_action_turtle_disabled.png new file mode 100644 index 00000000..70155517 Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_turtle_disabled.png differ diff --git a/core/res/drawable-mdpi/ic_action_turtle_enabled.png b/core/res/drawable-mdpi/ic_action_turtle_enabled.png new file mode 100644 index 00000000..fedbfc9b Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_turtle_enabled.png differ diff --git a/core/res/drawable-mdpi/ic_action_website_dark.png b/core/res/drawable-mdpi/ic_action_website_dark.png new file mode 100644 index 00000000..41b56ec9 Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_website_dark.png differ diff --git a/core/res/drawable-mdpi/ic_action_website_light.png b/core/res/drawable-mdpi/ic_action_website_light.png new file mode 100644 index 00000000..f146cf99 Binary files /dev/null and b/core/res/drawable-mdpi/ic_action_website_light.png differ diff --git a/core/res/drawable-mdpi/ic_activity_torrents.png b/core/res/drawable-mdpi/ic_activity_torrents.png new file mode 100644 index 00000000..ce606a71 Binary files /dev/null and b/core/res/drawable-mdpi/ic_activity_torrents.png differ diff --git a/core/res/drawable-mdpi/ic_empty_details_dark.png b/core/res/drawable-mdpi/ic_empty_details_dark.png new file mode 100644 index 00000000..5bd58335 Binary files /dev/null and b/core/res/drawable-mdpi/ic_empty_details_dark.png differ diff --git a/core/res/drawable-mdpi/ic_empty_details_light.png b/core/res/drawable-mdpi/ic_empty_details_light.png new file mode 100644 index 00000000..92ed5fa0 Binary files /dev/null and b/core/res/drawable-mdpi/ic_empty_details_light.png differ diff --git a/core/res/drawable-mdpi/ic_launcher.png b/core/res/drawable-mdpi/ic_launcher.png new file mode 100644 index 00000000..c153fddf Binary files /dev/null and b/core/res/drawable-mdpi/ic_launcher.png differ diff --git a/core/res/drawable-mdpi/ic_stat_notification.png b/core/res/drawable-mdpi/ic_stat_notification.png new file mode 100644 index 00000000..ddbf26ce Binary files /dev/null and b/core/res/drawable-mdpi/ic_stat_notification.png differ diff --git a/core/res/drawable-mdpi/list_focused_transdroid.9.png b/core/res/drawable-mdpi/list_focused_transdroid.9.png new file mode 100644 index 00000000..cc6c75f9 Binary files /dev/null and b/core/res/drawable-mdpi/list_focused_transdroid.9.png differ diff --git a/core/res/drawable-mdpi/list_focused_transdroid2.9.png b/core/res/drawable-mdpi/list_focused_transdroid2.9.png new file mode 100644 index 00000000..469e1e0e Binary files /dev/null and b/core/res/drawable-mdpi/list_focused_transdroid2.9.png differ diff --git a/core/res/drawable-mdpi/menu_dropdown_panel_transdroid.9.png b/core/res/drawable-mdpi/menu_dropdown_panel_transdroid.9.png new file mode 100644 index 00000000..2b2458ef Binary files /dev/null and b/core/res/drawable-mdpi/menu_dropdown_panel_transdroid.9.png differ diff --git a/core/res/drawable-mdpi/menu_dropdown_panel_transdroid2.9.png b/core/res/drawable-mdpi/menu_dropdown_panel_transdroid2.9.png new file mode 100644 index 00000000..ea341b50 Binary files /dev/null and b/core/res/drawable-mdpi/menu_dropdown_panel_transdroid2.9.png differ diff --git a/core/res/drawable-mdpi/menu_hardkey_panel_transdroid.9.png b/core/res/drawable-mdpi/menu_hardkey_panel_transdroid.9.png new file mode 100644 index 00000000..19b2feb5 Binary files /dev/null and b/core/res/drawable-mdpi/menu_hardkey_panel_transdroid.9.png differ diff --git a/core/res/drawable-mdpi/progress_bg_transdroid.9.png b/core/res/drawable-mdpi/progress_bg_transdroid.9.png new file mode 100644 index 00000000..9372a60f Binary files /dev/null and b/core/res/drawable-mdpi/progress_bg_transdroid.9.png differ diff --git a/core/res/drawable-mdpi/progress_bg_transdroid2.9.png b/core/res/drawable-mdpi/progress_bg_transdroid2.9.png new file mode 100644 index 00000000..71753a4b Binary files /dev/null and b/core/res/drawable-mdpi/progress_bg_transdroid2.9.png differ diff --git a/core/res/drawable-mdpi/progress_primary_transdroid.9.png b/core/res/drawable-mdpi/progress_primary_transdroid.9.png new file mode 100644 index 00000000..27192ef1 Binary files /dev/null and b/core/res/drawable-mdpi/progress_primary_transdroid.9.png differ diff --git a/core/res/drawable-mdpi/progress_primary_transdroid2.9.png b/core/res/drawable-mdpi/progress_primary_transdroid2.9.png new file mode 100644 index 00000000..2bbbbb9a Binary files /dev/null and b/core/res/drawable-mdpi/progress_primary_transdroid2.9.png differ diff --git a/core/res/drawable-mdpi/progress_secondary_transdroid.9.png b/core/res/drawable-mdpi/progress_secondary_transdroid.9.png new file mode 100644 index 00000000..2b240eae Binary files /dev/null and b/core/res/drawable-mdpi/progress_secondary_transdroid.9.png differ diff --git a/core/res/drawable-mdpi/progress_secondary_transdroid2.9.png b/core/res/drawable-mdpi/progress_secondary_transdroid2.9.png new file mode 100644 index 00000000..9dd0f6cb Binary files /dev/null and b/core/res/drawable-mdpi/progress_secondary_transdroid2.9.png differ diff --git a/core/res/drawable-mdpi/spinner_ab_default_transdroid.9.png b/core/res/drawable-mdpi/spinner_ab_default_transdroid.9.png new file mode 100644 index 00000000..9aeafee2 Binary files /dev/null and b/core/res/drawable-mdpi/spinner_ab_default_transdroid.9.png differ diff --git a/core/res/drawable-mdpi/spinner_ab_default_transdroid2.9.png b/core/res/drawable-mdpi/spinner_ab_default_transdroid2.9.png new file mode 100644 index 00000000..5e1dd470 Binary files /dev/null and b/core/res/drawable-mdpi/spinner_ab_default_transdroid2.9.png differ diff --git a/core/res/drawable-mdpi/spinner_ab_disabled_transdroid.9.png b/core/res/drawable-mdpi/spinner_ab_disabled_transdroid.9.png new file mode 100644 index 00000000..88dd4415 Binary files /dev/null and b/core/res/drawable-mdpi/spinner_ab_disabled_transdroid.9.png differ diff --git a/core/res/drawable-mdpi/spinner_ab_disabled_transdroid2.9.png b/core/res/drawable-mdpi/spinner_ab_disabled_transdroid2.9.png new file mode 100644 index 00000000..38025ad3 Binary files /dev/null and b/core/res/drawable-mdpi/spinner_ab_disabled_transdroid2.9.png differ diff --git a/core/res/drawable-mdpi/spinner_ab_focused_transdroid.9.png b/core/res/drawable-mdpi/spinner_ab_focused_transdroid.9.png new file mode 100644 index 00000000..63a0fda5 Binary files /dev/null and b/core/res/drawable-mdpi/spinner_ab_focused_transdroid.9.png differ diff --git a/core/res/drawable-mdpi/spinner_ab_focused_transdroid2.9.png b/core/res/drawable-mdpi/spinner_ab_focused_transdroid2.9.png new file mode 100644 index 00000000..e8c8b0f7 Binary files /dev/null and b/core/res/drawable-mdpi/spinner_ab_focused_transdroid2.9.png differ diff --git a/core/res/drawable-mdpi/spinner_ab_pressed_transdroid.9.png b/core/res/drawable-mdpi/spinner_ab_pressed_transdroid.9.png new file mode 100644 index 00000000..15652b11 Binary files /dev/null and b/core/res/drawable-mdpi/spinner_ab_pressed_transdroid.9.png differ diff --git a/core/res/drawable-mdpi/spinner_ab_pressed_transdroid2.9.png b/core/res/drawable-mdpi/spinner_ab_pressed_transdroid2.9.png new file mode 100644 index 00000000..c9d4e8b6 Binary files /dev/null and b/core/res/drawable-mdpi/spinner_ab_pressed_transdroid2.9.png differ diff --git a/core/res/drawable-mdpi/tab_selected_focused_transdroid.9.png b/core/res/drawable-mdpi/tab_selected_focused_transdroid.9.png new file mode 100644 index 00000000..ac6ffee0 Binary files /dev/null and b/core/res/drawable-mdpi/tab_selected_focused_transdroid.9.png differ diff --git a/core/res/drawable-mdpi/tab_selected_focused_transdroid2.9.png b/core/res/drawable-mdpi/tab_selected_focused_transdroid2.9.png new file mode 100644 index 00000000..87a5b7c6 Binary files /dev/null and b/core/res/drawable-mdpi/tab_selected_focused_transdroid2.9.png differ diff --git a/core/res/drawable-mdpi/tab_selected_pressed_transdroid.9.png b/core/res/drawable-mdpi/tab_selected_pressed_transdroid.9.png new file mode 100644 index 00000000..690f41de Binary files /dev/null and b/core/res/drawable-mdpi/tab_selected_pressed_transdroid.9.png differ diff --git a/core/res/drawable-mdpi/tab_selected_pressed_transdroid2.9.png b/core/res/drawable-mdpi/tab_selected_pressed_transdroid2.9.png new file mode 100644 index 00000000..5cfe08f0 Binary files /dev/null and b/core/res/drawable-mdpi/tab_selected_pressed_transdroid2.9.png differ diff --git a/core/res/drawable-mdpi/tab_selected_transdroid.9.png b/core/res/drawable-mdpi/tab_selected_transdroid.9.png new file mode 100644 index 00000000..1aa38d48 Binary files /dev/null and b/core/res/drawable-mdpi/tab_selected_transdroid.9.png differ diff --git a/core/res/drawable-mdpi/tab_selected_transdroid2.9.png b/core/res/drawable-mdpi/tab_selected_transdroid2.9.png new file mode 100644 index 00000000..79e55713 Binary files /dev/null and b/core/res/drawable-mdpi/tab_selected_transdroid2.9.png differ diff --git a/core/res/drawable-mdpi/tab_unselected_focused_transdroid.9.png b/core/res/drawable-mdpi/tab_unselected_focused_transdroid.9.png new file mode 100644 index 00000000..f9c9c6bd Binary files /dev/null and b/core/res/drawable-mdpi/tab_unselected_focused_transdroid.9.png differ diff --git a/core/res/drawable-mdpi/tab_unselected_focused_transdroid2.9.png b/core/res/drawable-mdpi/tab_unselected_focused_transdroid2.9.png new file mode 100644 index 00000000..1a55fa4b Binary files /dev/null and b/core/res/drawable-mdpi/tab_unselected_focused_transdroid2.9.png differ diff --git a/core/res/drawable-mdpi/tab_unselected_pressed_transdroid.9.png b/core/res/drawable-mdpi/tab_unselected_pressed_transdroid.9.png new file mode 100644 index 00000000..2acd0bbe Binary files /dev/null and b/core/res/drawable-mdpi/tab_unselected_pressed_transdroid.9.png differ diff --git a/core/res/drawable-mdpi/tab_unselected_pressed_transdroid2.9.png b/core/res/drawable-mdpi/tab_unselected_pressed_transdroid2.9.png new file mode 100644 index 00000000..57a75c8c Binary files /dev/null and b/core/res/drawable-mdpi/tab_unselected_pressed_transdroid2.9.png differ diff --git a/core/res/drawable-mdpi/tab_unselected_transdroid2.9.png b/core/res/drawable-mdpi/tab_unselected_transdroid2.9.png new file mode 100644 index 00000000..7f723870 Binary files /dev/null and b/core/res/drawable-mdpi/tab_unselected_transdroid2.9.png differ diff --git a/core/res/drawable-xhdpi-v11/ic_stat_notification.png b/core/res/drawable-xhdpi-v11/ic_stat_notification.png new file mode 100644 index 00000000..721ed41b Binary files /dev/null and b/core/res/drawable-xhdpi-v11/ic_stat_notification.png differ diff --git a/core/res/drawable-xhdpi/ab_bottom_solid_transdroid.9.png b/core/res/drawable-xhdpi/ab_bottom_solid_transdroid.9.png new file mode 100644 index 00000000..abf5694b Binary files /dev/null and b/core/res/drawable-xhdpi/ab_bottom_solid_transdroid.9.png differ diff --git a/core/res/drawable-xhdpi/ab_bottom_solid_transdroid2.9.png b/core/res/drawable-xhdpi/ab_bottom_solid_transdroid2.9.png new file mode 100644 index 00000000..b1a11071 Binary files /dev/null and b/core/res/drawable-xhdpi/ab_bottom_solid_transdroid2.9.png differ diff --git a/core/res/drawable-xhdpi/ab_solid_transdroid.9.png b/core/res/drawable-xhdpi/ab_solid_transdroid.9.png new file mode 100644 index 00000000..143a16f4 Binary files /dev/null and b/core/res/drawable-xhdpi/ab_solid_transdroid.9.png differ diff --git a/core/res/drawable-xhdpi/ab_solid_transdroid2.9.png b/core/res/drawable-xhdpi/ab_solid_transdroid2.9.png new file mode 100644 index 00000000..550ceee8 Binary files /dev/null and b/core/res/drawable-xhdpi/ab_solid_transdroid2.9.png differ diff --git a/core/res/drawable-xhdpi/ab_stacked_solid_transdroid.9.png b/core/res/drawable-xhdpi/ab_stacked_solid_transdroid.9.png new file mode 100644 index 00000000..f9a1e1f2 Binary files /dev/null and b/core/res/drawable-xhdpi/ab_stacked_solid_transdroid.9.png differ diff --git a/core/res/drawable-xhdpi/ab_stacked_solid_transdroid2.9.png b/core/res/drawable-xhdpi/ab_stacked_solid_transdroid2.9.png new file mode 100644 index 00000000..61130d91 Binary files /dev/null and b/core/res/drawable-xhdpi/ab_stacked_solid_transdroid2.9.png differ diff --git a/core/res/drawable-xhdpi/ab_texture_tile_transdroid2.png b/core/res/drawable-xhdpi/ab_texture_tile_transdroid2.png new file mode 100644 index 00000000..4cd50792 Binary files /dev/null and b/core/res/drawable-xhdpi/ab_texture_tile_transdroid2.png differ diff --git a/core/res/drawable-xhdpi/ab_transparent_transdroid.9.png b/core/res/drawable-xhdpi/ab_transparent_transdroid.9.png new file mode 100644 index 00000000..24020e23 Binary files /dev/null and b/core/res/drawable-xhdpi/ab_transparent_transdroid.9.png differ diff --git a/core/res/drawable-xhdpi/ab_transparent_transdroid2.9.png b/core/res/drawable-xhdpi/ab_transparent_transdroid2.9.png new file mode 100644 index 00000000..78739156 Binary files /dev/null and b/core/res/drawable-xhdpi/ab_transparent_transdroid2.9.png differ diff --git a/core/res/drawable-xhdpi/btn_cab_done_default_transdroid2.9.png b/core/res/drawable-xhdpi/btn_cab_done_default_transdroid2.9.png new file mode 100644 index 00000000..5d9632ed Binary files /dev/null and b/core/res/drawable-xhdpi/btn_cab_done_default_transdroid2.9.png differ diff --git a/core/res/drawable-xhdpi/btn_cab_done_focused_transdroid2.9.png b/core/res/drawable-xhdpi/btn_cab_done_focused_transdroid2.9.png new file mode 100644 index 00000000..57e1c92e Binary files /dev/null and b/core/res/drawable-xhdpi/btn_cab_done_focused_transdroid2.9.png differ diff --git a/core/res/drawable-xhdpi/btn_cab_done_pressed_transdroid2.9.png b/core/res/drawable-xhdpi/btn_cab_done_pressed_transdroid2.9.png new file mode 100644 index 00000000..56b13fa9 Binary files /dev/null and b/core/res/drawable-xhdpi/btn_cab_done_pressed_transdroid2.9.png differ diff --git a/core/res/drawable-xhdpi/cab_background_bottom_transdroid2.9.png b/core/res/drawable-xhdpi/cab_background_bottom_transdroid2.9.png new file mode 100644 index 00000000..9272cc29 Binary files /dev/null and b/core/res/drawable-xhdpi/cab_background_bottom_transdroid2.9.png differ diff --git a/core/res/drawable-xhdpi/cab_background_top_transdroid2.9.png b/core/res/drawable-xhdpi/cab_background_top_transdroid2.9.png new file mode 100644 index 00000000..ca1b570b Binary files /dev/null and b/core/res/drawable-xhdpi/cab_background_top_transdroid2.9.png differ diff --git a/core/res/drawable-xhdpi/ic_action_discard_dark.png b/core/res/drawable-xhdpi/ic_action_discard_dark.png new file mode 100644 index 00000000..412b3335 Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_discard_dark.png differ diff --git a/core/res/drawable-xhdpi/ic_action_discard_light.png b/core/res/drawable-xhdpi/ic_action_discard_light.png new file mode 100644 index 00000000..98c73da1 Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_discard_light.png differ diff --git a/core/res/drawable-xhdpi/ic_action_labels_dark.png b/core/res/drawable-xhdpi/ic_action_labels_dark.png new file mode 100644 index 00000000..8fdcd1a2 Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_labels_dark.png differ diff --git a/core/res/drawable-xhdpi/ic_action_labels_light.png b/core/res/drawable-xhdpi/ic_action_labels_light.png new file mode 100644 index 00000000..c1ec9727 Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_labels_light.png differ diff --git a/core/res/drawable-xhdpi/ic_action_new_dark.png b/core/res/drawable-xhdpi/ic_action_new_dark.png new file mode 100644 index 00000000..23b9a1c1 Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_new_dark.png differ diff --git a/core/res/drawable-xhdpi/ic_action_new_light.png b/core/res/drawable-xhdpi/ic_action_new_light.png new file mode 100644 index 00000000..9b48a63d Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_new_light.png differ diff --git a/core/res/drawable-xhdpi/ic_action_pause_dark.png b/core/res/drawable-xhdpi/ic_action_pause_dark.png new file mode 100644 index 00000000..333c1b24 Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_pause_dark.png differ diff --git a/core/res/drawable-xhdpi/ic_action_pause_light.png b/core/res/drawable-xhdpi/ic_action_pause_light.png new file mode 100644 index 00000000..97d6f91a Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_pause_light.png differ diff --git a/core/res/drawable-xhdpi/ic_action_priority_high_dark.png b/core/res/drawable-xhdpi/ic_action_priority_high_dark.png new file mode 100644 index 00000000..5932124c Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_priority_high_dark.png differ diff --git a/core/res/drawable-xhdpi/ic_action_priority_high_light.png b/core/res/drawable-xhdpi/ic_action_priority_high_light.png new file mode 100644 index 00000000..c20807d6 Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_priority_high_light.png differ diff --git a/core/res/drawable-xhdpi/ic_action_priority_low_dark.png b/core/res/drawable-xhdpi/ic_action_priority_low_dark.png new file mode 100644 index 00000000..d0b6ba5f Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_priority_low_dark.png differ diff --git a/core/res/drawable-xhdpi/ic_action_priority_low_light.png b/core/res/drawable-xhdpi/ic_action_priority_low_light.png new file mode 100644 index 00000000..abf14070 Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_priority_low_light.png differ diff --git a/core/res/drawable-xhdpi/ic_action_priority_normal_dark.png b/core/res/drawable-xhdpi/ic_action_priority_normal_dark.png new file mode 100644 index 00000000..8c1f81af Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_priority_normal_dark.png differ diff --git a/core/res/drawable-xhdpi/ic_action_priority_normal_light.png b/core/res/drawable-xhdpi/ic_action_priority_normal_light.png new file mode 100644 index 00000000..9405ed21 Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_priority_normal_light.png differ diff --git a/core/res/drawable-xhdpi/ic_action_priority_off_dark.png b/core/res/drawable-xhdpi/ic_action_priority_off_dark.png new file mode 100644 index 00000000..f6b9ff22 Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_priority_off_dark.png differ diff --git a/core/res/drawable-xhdpi/ic_action_priority_off_light.png b/core/res/drawable-xhdpi/ic_action_priority_off_light.png new file mode 100644 index 00000000..4424a0c3 Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_priority_off_light.png differ diff --git a/core/res/drawable-xhdpi/ic_action_refresh_dark.png b/core/res/drawable-xhdpi/ic_action_refresh_dark.png new file mode 100644 index 00000000..a7fdc0df Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_refresh_dark.png differ diff --git a/core/res/drawable-xhdpi/ic_action_refresh_light.png b/core/res/drawable-xhdpi/ic_action_refresh_light.png new file mode 100644 index 00000000..e6212cf6 Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_refresh_light.png differ diff --git a/core/res/drawable-xhdpi/ic_action_remove_dark.png b/core/res/drawable-xhdpi/ic_action_remove_dark.png new file mode 100644 index 00000000..f391760e Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_remove_dark.png differ diff --git a/core/res/drawable-xhdpi/ic_action_remove_light.png b/core/res/drawable-xhdpi/ic_action_remove_light.png new file mode 100644 index 00000000..ca7d159f Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_remove_light.png differ diff --git a/core/res/drawable-xhdpi/ic_action_resume_dark.png b/core/res/drawable-xhdpi/ic_action_resume_dark.png new file mode 100644 index 00000000..fe6b5588 Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_resume_dark.png differ diff --git a/core/res/drawable-xhdpi/ic_action_resume_light.png b/core/res/drawable-xhdpi/ic_action_resume_light.png new file mode 100644 index 00000000..61b8d595 Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_resume_light.png differ diff --git a/core/res/drawable-xhdpi/ic_action_rss_dark.png b/core/res/drawable-xhdpi/ic_action_rss_dark.png new file mode 100644 index 00000000..dcd88e1c Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_rss_dark.png differ diff --git a/core/res/drawable-xhdpi/ic_action_rss_light.png b/core/res/drawable-xhdpi/ic_action_rss_light.png new file mode 100644 index 00000000..03365510 Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_rss_light.png differ diff --git a/core/res/drawable-xhdpi/ic_action_search_dark.png b/core/res/drawable-xhdpi/ic_action_search_dark.png new file mode 100644 index 00000000..3549f84d Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_search_dark.png differ diff --git a/core/res/drawable-xhdpi/ic_action_search_light.png b/core/res/drawable-xhdpi/ic_action_search_light.png new file mode 100644 index 00000000..804420ae Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_search_light.png differ diff --git a/core/res/drawable-xhdpi/ic_action_sort_by_size_light.png b/core/res/drawable-xhdpi/ic_action_sort_by_size_light.png new file mode 100644 index 00000000..59da08e4 Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_sort_by_size_light.png differ diff --git a/core/res/drawable-xhdpi/ic_action_start_dark.png b/core/res/drawable-xhdpi/ic_action_start_dark.png new file mode 100644 index 00000000..51124993 Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_start_dark.png differ diff --git a/core/res/drawable-xhdpi/ic_action_start_light.png b/core/res/drawable-xhdpi/ic_action_start_light.png new file mode 100644 index 00000000..2d67d31e Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_start_light.png differ diff --git a/core/res/drawable-xhdpi/ic_action_stop_dark.png b/core/res/drawable-xhdpi/ic_action_stop_dark.png new file mode 100644 index 00000000..ee5eda25 Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_stop_dark.png differ diff --git a/core/res/drawable-xhdpi/ic_action_stop_light.png b/core/res/drawable-xhdpi/ic_action_stop_light.png new file mode 100644 index 00000000..9a23e3d4 Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_stop_light.png differ diff --git a/core/res/drawable-xhdpi/ic_action_trackers_dark.png b/core/res/drawable-xhdpi/ic_action_trackers_dark.png new file mode 100644 index 00000000..2caf74c9 Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_trackers_dark.png differ diff --git a/core/res/drawable-xhdpi/ic_action_trackers_light.png b/core/res/drawable-xhdpi/ic_action_trackers_light.png new file mode 100644 index 00000000..b607e604 Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_trackers_light.png differ diff --git a/core/res/drawable-xhdpi/ic_action_turtle_disabled.png b/core/res/drawable-xhdpi/ic_action_turtle_disabled.png new file mode 100644 index 00000000..12068f67 Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_turtle_disabled.png differ diff --git a/core/res/drawable-xhdpi/ic_action_turtle_enabled.png b/core/res/drawable-xhdpi/ic_action_turtle_enabled.png new file mode 100644 index 00000000..8bfedf1e Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_turtle_enabled.png differ diff --git a/core/res/drawable-xhdpi/ic_action_website_dark.png b/core/res/drawable-xhdpi/ic_action_website_dark.png new file mode 100644 index 00000000..9b77be96 Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_website_dark.png differ diff --git a/core/res/drawable-xhdpi/ic_action_website_light.png b/core/res/drawable-xhdpi/ic_action_website_light.png new file mode 100644 index 00000000..bd6b8682 Binary files /dev/null and b/core/res/drawable-xhdpi/ic_action_website_light.png differ diff --git a/core/res/drawable-xhdpi/ic_activity_torrents.png b/core/res/drawable-xhdpi/ic_activity_torrents.png new file mode 100644 index 00000000..25614e00 Binary files /dev/null and b/core/res/drawable-xhdpi/ic_activity_torrents.png differ diff --git a/core/res/drawable-xhdpi/ic_empty_details_dark.png b/core/res/drawable-xhdpi/ic_empty_details_dark.png new file mode 100644 index 00000000..7b446989 Binary files /dev/null and b/core/res/drawable-xhdpi/ic_empty_details_dark.png differ diff --git a/core/res/drawable-xhdpi/ic_empty_details_light.png b/core/res/drawable-xhdpi/ic_empty_details_light.png new file mode 100644 index 00000000..055caa04 Binary files /dev/null and b/core/res/drawable-xhdpi/ic_empty_details_light.png differ diff --git a/core/res/drawable-xhdpi/ic_launcher.png b/core/res/drawable-xhdpi/ic_launcher.png new file mode 100644 index 00000000..258c1fe5 Binary files /dev/null and b/core/res/drawable-xhdpi/ic_launcher.png differ diff --git a/core/res/drawable-xhdpi/ic_stat_notification.png b/core/res/drawable-xhdpi/ic_stat_notification.png new file mode 100644 index 00000000..abf1f208 Binary files /dev/null and b/core/res/drawable-xhdpi/ic_stat_notification.png differ diff --git a/core/res/drawable-xhdpi/list_focused_transdroid.9.png b/core/res/drawable-xhdpi/list_focused_transdroid.9.png new file mode 100644 index 00000000..368d15f6 Binary files /dev/null and b/core/res/drawable-xhdpi/list_focused_transdroid.9.png differ diff --git a/core/res/drawable-xhdpi/list_focused_transdroid2.9.png b/core/res/drawable-xhdpi/list_focused_transdroid2.9.png new file mode 100644 index 00000000..d41b7ecd Binary files /dev/null and b/core/res/drawable-xhdpi/list_focused_transdroid2.9.png differ diff --git a/core/res/drawable-xhdpi/menu_dropdown_panel_transdroid.9.png b/core/res/drawable-xhdpi/menu_dropdown_panel_transdroid.9.png new file mode 100644 index 00000000..2974663c Binary files /dev/null and b/core/res/drawable-xhdpi/menu_dropdown_panel_transdroid.9.png differ diff --git a/core/res/drawable-xhdpi/menu_dropdown_panel_transdroid2.9.png b/core/res/drawable-xhdpi/menu_dropdown_panel_transdroid2.9.png new file mode 100644 index 00000000..3d9f6149 Binary files /dev/null and b/core/res/drawable-xhdpi/menu_dropdown_panel_transdroid2.9.png differ diff --git a/core/res/drawable-xhdpi/menu_hardkey_panel_transdroid.9.png b/core/res/drawable-xhdpi/menu_hardkey_panel_transdroid.9.png new file mode 100644 index 00000000..97c03063 Binary files /dev/null and b/core/res/drawable-xhdpi/menu_hardkey_panel_transdroid.9.png differ diff --git a/core/res/drawable-xhdpi/progress_bg_transdroid.9.png b/core/res/drawable-xhdpi/progress_bg_transdroid.9.png new file mode 100644 index 00000000..8b4853aa Binary files /dev/null and b/core/res/drawable-xhdpi/progress_bg_transdroid.9.png differ diff --git a/core/res/drawable-xhdpi/progress_bg_transdroid2.9.png b/core/res/drawable-xhdpi/progress_bg_transdroid2.9.png new file mode 100644 index 00000000..5ffc2acc Binary files /dev/null and b/core/res/drawable-xhdpi/progress_bg_transdroid2.9.png differ diff --git a/core/res/drawable-xhdpi/progress_primary_transdroid.9.png b/core/res/drawable-xhdpi/progress_primary_transdroid.9.png new file mode 100644 index 00000000..b1c9444a Binary files /dev/null and b/core/res/drawable-xhdpi/progress_primary_transdroid.9.png differ diff --git a/core/res/drawable-xhdpi/progress_primary_transdroid2.9.png b/core/res/drawable-xhdpi/progress_primary_transdroid2.9.png new file mode 100644 index 00000000..e6d5511a Binary files /dev/null and b/core/res/drawable-xhdpi/progress_primary_transdroid2.9.png differ diff --git a/core/res/drawable-xhdpi/progress_secondary_transdroid.9.png b/core/res/drawable-xhdpi/progress_secondary_transdroid.9.png new file mode 100644 index 00000000..48cc8e57 Binary files /dev/null and b/core/res/drawable-xhdpi/progress_secondary_transdroid.9.png differ diff --git a/core/res/drawable-xhdpi/progress_secondary_transdroid2.9.png b/core/res/drawable-xhdpi/progress_secondary_transdroid2.9.png new file mode 100644 index 00000000..8676a0fd Binary files /dev/null and b/core/res/drawable-xhdpi/progress_secondary_transdroid2.9.png differ diff --git a/core/res/drawable-xhdpi/spinner_ab_default_transdroid.9.png b/core/res/drawable-xhdpi/spinner_ab_default_transdroid.9.png new file mode 100644 index 00000000..14b1401d Binary files /dev/null and b/core/res/drawable-xhdpi/spinner_ab_default_transdroid.9.png differ diff --git a/core/res/drawable-xhdpi/spinner_ab_default_transdroid2.9.png b/core/res/drawable-xhdpi/spinner_ab_default_transdroid2.9.png new file mode 100644 index 00000000..f738a44c Binary files /dev/null and b/core/res/drawable-xhdpi/spinner_ab_default_transdroid2.9.png differ diff --git a/core/res/drawable-xhdpi/spinner_ab_disabled_transdroid.9.png b/core/res/drawable-xhdpi/spinner_ab_disabled_transdroid.9.png new file mode 100644 index 00000000..c9dfbd60 Binary files /dev/null and b/core/res/drawable-xhdpi/spinner_ab_disabled_transdroid.9.png differ diff --git a/core/res/drawable-xhdpi/spinner_ab_disabled_transdroid2.9.png b/core/res/drawable-xhdpi/spinner_ab_disabled_transdroid2.9.png new file mode 100644 index 00000000..79d24c9f Binary files /dev/null and b/core/res/drawable-xhdpi/spinner_ab_disabled_transdroid2.9.png differ diff --git a/core/res/drawable-xhdpi/spinner_ab_focused_transdroid.9.png b/core/res/drawable-xhdpi/spinner_ab_focused_transdroid.9.png new file mode 100644 index 00000000..e4eddc17 Binary files /dev/null and b/core/res/drawable-xhdpi/spinner_ab_focused_transdroid.9.png differ diff --git a/core/res/drawable-xhdpi/spinner_ab_focused_transdroid2.9.png b/core/res/drawable-xhdpi/spinner_ab_focused_transdroid2.9.png new file mode 100644 index 00000000..e52a8dd4 Binary files /dev/null and b/core/res/drawable-xhdpi/spinner_ab_focused_transdroid2.9.png differ diff --git a/core/res/drawable-xhdpi/spinner_ab_pressed_transdroid.9.png b/core/res/drawable-xhdpi/spinner_ab_pressed_transdroid.9.png new file mode 100644 index 00000000..95f9b4c6 Binary files /dev/null and b/core/res/drawable-xhdpi/spinner_ab_pressed_transdroid.9.png differ diff --git a/core/res/drawable-xhdpi/spinner_ab_pressed_transdroid2.9.png b/core/res/drawable-xhdpi/spinner_ab_pressed_transdroid2.9.png new file mode 100644 index 00000000..ec063706 Binary files /dev/null and b/core/res/drawable-xhdpi/spinner_ab_pressed_transdroid2.9.png differ diff --git a/core/res/drawable-xhdpi/tab_selected_focused_transdroid.9.png b/core/res/drawable-xhdpi/tab_selected_focused_transdroid.9.png new file mode 100644 index 00000000..1c6ccb7b Binary files /dev/null and b/core/res/drawable-xhdpi/tab_selected_focused_transdroid.9.png differ diff --git a/core/res/drawable-xhdpi/tab_selected_focused_transdroid2.9.png b/core/res/drawable-xhdpi/tab_selected_focused_transdroid2.9.png new file mode 100644 index 00000000..34fcda3b Binary files /dev/null and b/core/res/drawable-xhdpi/tab_selected_focused_transdroid2.9.png differ diff --git a/core/res/drawable-xhdpi/tab_selected_pressed_transdroid.9.png b/core/res/drawable-xhdpi/tab_selected_pressed_transdroid.9.png new file mode 100644 index 00000000..bed352bd Binary files /dev/null and b/core/res/drawable-xhdpi/tab_selected_pressed_transdroid.9.png differ diff --git a/core/res/drawable-xhdpi/tab_selected_pressed_transdroid2.9.png b/core/res/drawable-xhdpi/tab_selected_pressed_transdroid2.9.png new file mode 100644 index 00000000..bfb3d453 Binary files /dev/null and b/core/res/drawable-xhdpi/tab_selected_pressed_transdroid2.9.png differ diff --git a/core/res/drawable-xhdpi/tab_selected_transdroid.9.png b/core/res/drawable-xhdpi/tab_selected_transdroid.9.png new file mode 100644 index 00000000..794323de Binary files /dev/null and b/core/res/drawable-xhdpi/tab_selected_transdroid.9.png differ diff --git a/core/res/drawable-xhdpi/tab_selected_transdroid2.9.png b/core/res/drawable-xhdpi/tab_selected_transdroid2.9.png new file mode 100644 index 00000000..0c90c530 Binary files /dev/null and b/core/res/drawable-xhdpi/tab_selected_transdroid2.9.png differ diff --git a/core/res/drawable-xhdpi/tab_unselected_focused_transdroid.9.png b/core/res/drawable-xhdpi/tab_unselected_focused_transdroid.9.png new file mode 100644 index 00000000..564f40f5 Binary files /dev/null and b/core/res/drawable-xhdpi/tab_unselected_focused_transdroid.9.png differ diff --git a/core/res/drawable-xhdpi/tab_unselected_focused_transdroid2.9.png b/core/res/drawable-xhdpi/tab_unselected_focused_transdroid2.9.png new file mode 100644 index 00000000..90d55085 Binary files /dev/null and b/core/res/drawable-xhdpi/tab_unselected_focused_transdroid2.9.png differ diff --git a/core/res/drawable-xhdpi/tab_unselected_pressed_transdroid.9.png b/core/res/drawable-xhdpi/tab_unselected_pressed_transdroid.9.png new file mode 100644 index 00000000..3f885d60 Binary files /dev/null and b/core/res/drawable-xhdpi/tab_unselected_pressed_transdroid.9.png differ diff --git a/core/res/drawable-xhdpi/tab_unselected_pressed_transdroid2.9.png b/core/res/drawable-xhdpi/tab_unselected_pressed_transdroid2.9.png new file mode 100644 index 00000000..b5d5335c Binary files /dev/null and b/core/res/drawable-xhdpi/tab_unselected_pressed_transdroid2.9.png differ diff --git a/core/res/drawable-xhdpi/tab_unselected_transdroid2.9.png b/core/res/drawable-xhdpi/tab_unselected_transdroid2.9.png new file mode 100644 index 00000000..6fd9a251 Binary files /dev/null and b/core/res/drawable-xhdpi/tab_unselected_transdroid2.9.png differ diff --git a/core/res/drawable-xxhdpi-v11/ic_stat_notification.png b/core/res/drawable-xxhdpi-v11/ic_stat_notification.png new file mode 100644 index 00000000..d09f3bf0 Binary files /dev/null and b/core/res/drawable-xxhdpi-v11/ic_stat_notification.png differ diff --git a/core/res/drawable-xxhdpi/ic_launcher.png b/core/res/drawable-xxhdpi/ic_launcher.png new file mode 100644 index 00000000..6f6ea1ce Binary files /dev/null and b/core/res/drawable-xxhdpi/ic_launcher.png differ diff --git a/core/res/drawable-xxhdpi/ic_stat_notification.png b/core/res/drawable-xxhdpi/ic_stat_notification.png new file mode 100644 index 00000000..e5afa301 Binary files /dev/null and b/core/res/drawable-xxhdpi/ic_stat_notification.png differ diff --git a/core/res/drawable/ab_background_textured_transdroid2.xml b/core/res/drawable/ab_background_textured_transdroid2.xml new file mode 100644 index 00000000..d08217b4 --- /dev/null +++ b/core/res/drawable/ab_background_textured_transdroid2.xml @@ -0,0 +1,21 @@ + + + + \ No newline at end of file diff --git a/core/res/drawable/btn_cab_done_transdroid2.xml b/core/res/drawable/btn_cab_done_transdroid2.xml new file mode 100644 index 00000000..ba1783fc --- /dev/null +++ b/core/res/drawable/btn_cab_done_transdroid2.xml @@ -0,0 +1,27 @@ + + + + + + + + diff --git a/core/res/drawable/details_list_background_dark.xml b/core/res/drawable/details_list_background_dark.xml new file mode 100644 index 00000000..6da452cb --- /dev/null +++ b/core/res/drawable/details_list_background_dark.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/core/res/drawable/details_list_background_light.xml b/core/res/drawable/details_list_background_light.xml new file mode 100644 index 00000000..57af89ec --- /dev/null +++ b/core/res/drawable/details_list_background_light.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/core/res/drawable/loading_progress_dark.xml b/core/res/drawable/loading_progress_dark.xml new file mode 100644 index 00000000..326e7639 --- /dev/null +++ b/core/res/drawable/loading_progress_dark.xml @@ -0,0 +1,5 @@ + + diff --git a/core/res/drawable/loading_progress_light.xml b/core/res/drawable/loading_progress_light.xml new file mode 100644 index 00000000..ed73f056 --- /dev/null +++ b/core/res/drawable/loading_progress_light.xml @@ -0,0 +1,5 @@ + + diff --git a/core/res/drawable/pressed_background_transdroid.xml b/core/res/drawable/pressed_background_transdroid.xml new file mode 100644 index 00000000..d59067c2 --- /dev/null +++ b/core/res/drawable/pressed_background_transdroid.xml @@ -0,0 +1,21 @@ + + + + + + diff --git a/core/res/drawable/pressed_background_transdroid2.xml b/core/res/drawable/pressed_background_transdroid2.xml new file mode 100644 index 00000000..4998b8fd --- /dev/null +++ b/core/res/drawable/pressed_background_transdroid2.xml @@ -0,0 +1,22 @@ + + + + + + diff --git a/core/res/drawable/section_header.xml b/core/res/drawable/section_header.xml new file mode 100644 index 00000000..d6094f63 --- /dev/null +++ b/core/res/drawable/section_header.xml @@ -0,0 +1,12 @@ + + + + + + + + + \ No newline at end of file diff --git a/core/res/drawable/selectable_background_transdroid.xml b/core/res/drawable/selectable_background_transdroid.xml new file mode 100644 index 00000000..77db9571 --- /dev/null +++ b/core/res/drawable/selectable_background_transdroid.xml @@ -0,0 +1,25 @@ + + + + + + + + + \ No newline at end of file diff --git a/core/res/drawable/selectable_background_transdroid2.xml b/core/res/drawable/selectable_background_transdroid2.xml new file mode 100644 index 00000000..268cdcd4 --- /dev/null +++ b/core/res/drawable/selectable_background_transdroid2.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/core/res/drawable/spinner_background_ab_transdroid.xml b/core/res/drawable/spinner_background_ab_transdroid.xml new file mode 100644 index 00000000..32edfe7b --- /dev/null +++ b/core/res/drawable/spinner_background_ab_transdroid.xml @@ -0,0 +1,27 @@ + + + + + + + + + diff --git a/core/res/drawable/spinner_background_ab_transdroid2.xml b/core/res/drawable/spinner_background_ab_transdroid2.xml new file mode 100644 index 00000000..d1adeb93 --- /dev/null +++ b/core/res/drawable/spinner_background_ab_transdroid2.xml @@ -0,0 +1,28 @@ + + + + + + + + + diff --git a/core/res/drawable/tab_indicator_ab_transdroid.xml b/core/res/drawable/tab_indicator_ab_transdroid.xml new file mode 100644 index 00000000..5345f3e5 --- /dev/null +++ b/core/res/drawable/tab_indicator_ab_transdroid.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/core/res/drawable/tab_indicator_ab_transdroid2.xml b/core/res/drawable/tab_indicator_ab_transdroid2.xml new file mode 100644 index 00000000..c940e202 --- /dev/null +++ b/core/res/drawable/tab_indicator_ab_transdroid2.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/core/res/layout-v14/actionbar_progressitem.xml b/core/res/layout-v14/actionbar_progressitem.xml new file mode 100644 index 00000000..f6dfd64a --- /dev/null +++ b/core/res/layout-v14/actionbar_progressitem.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + diff --git a/core/res/layout-w600dp/activity_search.xml b/core/res/layout-w600dp/activity_search.xml new file mode 100644 index 00000000..88035aff --- /dev/null +++ b/core/res/layout-w600dp/activity_search.xml @@ -0,0 +1,40 @@ + + + + + + + + + + \ No newline at end of file diff --git a/core/res/layout-w600dp/activity_torrents.xml b/core/res/layout-w600dp/activity_torrents.xml new file mode 100644 index 00000000..b19c1959 --- /dev/null +++ b/core/res/layout-w600dp/activity_torrents.xml @@ -0,0 +1,27 @@ + + + + + + + + + \ No newline at end of file diff --git a/core/res/layout-w900dp/activity_rssfeeds.xml b/core/res/layout-w900dp/activity_rssfeeds.xml new file mode 100644 index 00000000..8e208f55 --- /dev/null +++ b/core/res/layout-w900dp/activity_rssfeeds.xml @@ -0,0 +1,26 @@ + + + + + + + + \ No newline at end of file diff --git a/core/res/layout-w900dp/activity_torrents.xml b/core/res/layout-w900dp/activity_torrents.xml new file mode 100644 index 00000000..8ffcf39b --- /dev/null +++ b/core/res/layout-w900dp/activity_torrents.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/core/res/layout/actionbar_navigation.xml b/core/res/layout/actionbar_navigation.xml new file mode 100644 index 00000000..203d103f --- /dev/null +++ b/core/res/layout/actionbar_navigation.xml @@ -0,0 +1,27 @@ + + + + + + + + \ No newline at end of file diff --git a/core/res/layout/actionbar_progressitem.xml b/core/res/layout/actionbar_progressitem.xml new file mode 100644 index 00000000..5123e8df --- /dev/null +++ b/core/res/layout/actionbar_progressitem.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + diff --git a/core/res/layout/actionbar_searchsite.xml b/core/res/layout/actionbar_searchsite.xml new file mode 100644 index 00000000..63244f61 --- /dev/null +++ b/core/res/layout/actionbar_searchsite.xml @@ -0,0 +1,17 @@ + + + + + + \ No newline at end of file diff --git a/core/res/layout/actionbar_serverstatus.xml b/core/res/layout/actionbar_serverstatus.xml new file mode 100644 index 00000000..e5370b6a --- /dev/null +++ b/core/res/layout/actionbar_serverstatus.xml @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/core/res/layout/activity_details.xml b/core/res/layout/activity_details.xml new file mode 100644 index 00000000..f1d8b7c8 --- /dev/null +++ b/core/res/layout/activity_details.xml @@ -0,0 +1,16 @@ + + + + + + + \ No newline at end of file diff --git a/core/res/layout/activity_rssfeeds.xml b/core/res/layout/activity_rssfeeds.xml new file mode 100644 index 00000000..a8e7aaac --- /dev/null +++ b/core/res/layout/activity_rssfeeds.xml @@ -0,0 +1,15 @@ + + + + + + \ No newline at end of file diff --git a/core/res/layout/activity_rssitems.xml b/core/res/layout/activity_rssitems.xml new file mode 100644 index 00000000..e86818dd --- /dev/null +++ b/core/res/layout/activity_rssitems.xml @@ -0,0 +1,15 @@ + + + + + + \ No newline at end of file diff --git a/core/res/layout/activity_search.xml b/core/res/layout/activity_search.xml new file mode 100644 index 00000000..e26348e2 --- /dev/null +++ b/core/res/layout/activity_search.xml @@ -0,0 +1,29 @@ + + + + + + + + \ No newline at end of file diff --git a/core/res/layout/activity_torrents.xml b/core/res/layout/activity_torrents.xml new file mode 100644 index 00000000..feb3cba7 --- /dev/null +++ b/core/res/layout/activity_torrents.xml @@ -0,0 +1,16 @@ + + + + + + + \ No newline at end of file diff --git a/core/res/layout/dialog_about.xml b/core/res/layout/dialog_about.xml new file mode 100644 index 00000000..ce92e4a2 --- /dev/null +++ b/core/res/layout/dialog_about.xml @@ -0,0 +1,48 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/core/res/layout/dialog_changelog.xml b/core/res/layout/dialog_changelog.xml new file mode 100644 index 00000000..dc51afd1 --- /dev/null +++ b/core/res/layout/dialog_changelog.xml @@ -0,0 +1,15 @@ + + + + + + diff --git a/core/res/layout/dialog_setlabel.xml b/core/res/layout/dialog_setlabel.xml new file mode 100644 index 00000000..034d2b49 --- /dev/null +++ b/core/res/layout/dialog_setlabel.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/core/res/layout/dialog_trackers.xml b/core/res/layout/dialog_trackers.xml new file mode 100644 index 00000000..691f1132 --- /dev/null +++ b/core/res/layout/dialog_trackers.xml @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/core/res/layout/dialog_transferrates.xml b/core/res/layout/dialog_transferrates.xml new file mode 100644 index 00000000..9bdf34d3 --- /dev/null +++ b/core/res/layout/dialog_transferrates.xml @@ -0,0 +1,293 @@ + + + + + + + + + + + + + + + + +