diff --git a/qBittorrentClient/app/build.gradle b/qBittorrentClient/app/build.gradle index 20c9ff0f..f4afbbf1 100644 --- a/qBittorrentClient/app/build.gradle +++ b/qBittorrentClient/app/build.gradle @@ -22,18 +22,18 @@ android { productFlavors { pro { applicationId 'com.lgallardo.qbittorrentclientpro' - versionName '4.1.0' + versionName '4.1.1' minSdkVersion 14 targetSdkVersion 21 - versionCode 410 + versionCode 411 archivesBaseName = "qBittorrentClient_v" + versionName } free { applicationId "com.lgallardo.qbittorrentclient" - versionName '4.1.0' + versionName '4.1.1' minSdkVersion 14 targetSdkVersion 21 - versionCode 410 + versionCode 411 archivesBaseName = "qBittorrentClient_v" + versionName } } @@ -57,6 +57,7 @@ dependencies { compile 'com.android.support:recyclerview-v7:22.1.1' compile 'com.android.support:cardview-v7:22.1.1' compile 'com.google.android.gms:play-services:7.3.0' - compile files('libs/httpcore-4.3.2.jar') - compile files('libs/httpmime-4.3.5.jar') + compile group: 'org.apache.httpcomponents' , name: 'httpclient-android' , version: '4.3.5.1' + compile (group: 'org.apache.httpcomponents' , name: 'httpmime' , version: '4.3.5') { + exclude module: 'org.apache.httpcomponents:httpclient'} } diff --git a/qBittorrentClient/app/proguard-rules.txt b/qBittorrentClient/app/proguard-rules.txt new file mode 100644 index 00000000..d07f361d --- /dev/null +++ b/qBittorrentClient/app/proguard-rules.txt @@ -0,0 +1,5 @@ +-keep class android.support.v4.** { *; } +-keep interface android.support.v4.** { *; } + +-keep class android.support.v7.** { *; } +-keep interface android.support.v7.** { *; } \ No newline at end of file diff --git a/qBittorrentClient/app/src/free/java/com/lgallardo/qbittorrentclient/MainActivity.java b/qBittorrentClient/app/src/free/java/com/lgallardo/qbittorrentclient/MainActivity.java index 654b3691..235c741c 100644 --- a/qBittorrentClient/app/src/free/java/com/lgallardo/qbittorrentclient/MainActivity.java +++ b/qBittorrentClient/app/src/free/java/com/lgallardo/qbittorrentclient/MainActivity.java @@ -36,8 +36,8 @@ import android.os.SystemClock; import android.preference.PreferenceManager; import android.support.v4.widget.DrawerLayout; -import android.support.v7.app.ActionBarActivity; import android.support.v7.app.ActionBarDrawerToggle; +import android.support.v7.app.AppCompatActivity; import android.support.v7.widget.Toolbar; import android.util.Log; import android.view.LayoutInflater; @@ -68,7 +68,7 @@ interface RefreshListener { public void swipeRefresh(); } -public class MainActivity extends ActionBarActivity implements RefreshListener { +public class MainActivity extends AppCompatActivity implements RefreshListener { // Torrent Info TAGs protected static final String TAG_NAME = "name"; @@ -234,6 +234,19 @@ protected void onCreate(Bundle savedInstanceState) { notification_period, alarmIntent); } + // Set alarm for RSS checking, if not set + if (PendingIntent.getBroadcast(getApplication(), 0, new Intent(getApplication(), RSSService.class), PendingIntent.FLAG_NO_CREATE) == null) { + + // Set Alarm for checking completed torrents + alarmMgr = (AlarmManager) getApplication().getSystemService(Context.ALARM_SERVICE); + Intent intent = new Intent(getApplication(), RSSService.class); + alarmIntent = PendingIntent.getBroadcast(getApplication(), 0, intent, 0); + + alarmMgr.setInexactRepeating(AlarmManager.ELAPSED_REALTIME_WAKEUP, + SystemClock.elapsedRealtime() + 5000, + AlarmManager.INTERVAL_DAY, alarmIntent); + } + if (qb_version.equals("3.2.x")) { if (cookie == null || cookie.equals("")) { new qBittorrentCookie().execute(); @@ -442,6 +455,10 @@ public void onDrawerOpened(View drawerView) { handler = new Handler(); handler.postDelayed(m_Runnable, refresh_period); + + // Load banner + loadBanner(); + } // Search bar in Material Design @@ -539,6 +556,28 @@ public void onResume() { } } + + if (fm.getBackStackEntryCount() == 0 && (fm.findFragmentByTag("secondFragment") instanceof TorrentDetailsFragment)) { + + // Create the about fragment + aboutFragment = new AboutFragment(); + + fragmentTransaction.replace(R.id.content_frame, aboutFragment, "secondFragment"); + + fragmentTransaction.commit(); + + // Se titile + setTitle(navigationDrawerItemTitles[drawerList.getCheckedItemPosition()]); + + // Close Contextual Action Bar + if (firstFragment != null && firstFragment.mActionMode != null) { + firstFragment.mActionMode.finish(); + } + + // Refresh current list + refreshCurrent(); + + } } catch (Exception e) { @@ -546,7 +585,7 @@ public void onResume() { } @Override - public void onPause() { + public void onPause() { super.onPause(); activityIsVisible = false; } @@ -716,9 +755,6 @@ private void refresh(String state) { if (networkInfo != null && networkInfo.isConnected() && !networkInfo.isFailover()) { - // Load banner - loadBanner(); - if (hostname.equals("")) { genericOkDialog(R.string.info, R.string.about_help1); } else { @@ -782,8 +818,21 @@ private void handleIntent(Intent intent) { refresh("completed"); } - } - catch (NullPointerException npe) { + + if (intent.getStringExtra("from").equals("RSSItemActivity")) { + + // Add torrent (file, url or magnet) + addTorrentByIntent(intent); + + // // Activity is visble + activityIsVisible = true; + + // Autorefresh + refreshCurrent(); + } + + + } catch (NullPointerException npe) { } } @@ -880,6 +929,10 @@ public boolean onOptionsItemSelected(MenuItem item) { // Add URL torrent addUrlTorrent(); return true; + case R.id.action_rss: + // Open RSS Activity + startActivity(new Intent(getBaseContext(), com.lgallardo.qbittorrentclient.RSSFeedActivity.class)); + return true; case R.id.action_pause: if (com.lgallardo.qbittorrentclient.TorrentDetailsFragment.hashToUpdate != null) { pauseTorrent(com.lgallardo.qbittorrentclient.TorrentDetailsFragment.hashToUpdate); @@ -2011,9 +2064,13 @@ public void swipeRefresh() { // Set the refresh layout (refresh icon, etc) refreshSwipeLayout(); + // Actually refresh data refreshCurrent(); + // Load banner + loadBanner(); + } } @@ -2035,7 +2092,7 @@ public void disableRefreshSwipeLayout(){ if (com.lgallardo.qbittorrentclient.TorrentDetailsFragment.mSwipeRefreshLayout != null) { com.lgallardo.qbittorrentclient.TorrentDetailsFragment.mSwipeRefreshLayout.setRefreshing(false); com.lgallardo.qbittorrentclient.TorrentDetailsFragment.mSwipeRefreshLayout.clearAnimation(); - com.lgallardo.qbittorrentclient.TorrentDetailsFragment .mSwipeRefreshLayout.setEnabled(true); + com.lgallardo.qbittorrentclient.TorrentDetailsFragment.mSwipeRefreshLayout.setEnabled(true); } listViewRefreshing = false; @@ -2136,6 +2193,8 @@ protected String doInBackground(String... params) { try { + httpStatusCode = 0; + jParser.postCommand(params[0], params[1]); } catch (JSONParserStatusCodeException e) { @@ -2285,7 +2344,7 @@ protected void onPostExecute(String result) { } } - // Here is where the action happens + // Here is where the action happens private class qBittorrentTask extends AsyncTask { @Override @@ -2389,7 +2448,7 @@ protected Torrent[] doInBackground(String... params) { } catch (JSONParserStatusCodeException e) { httpStatusCode = e.getCode(); torrents = null; - Log.e("JSONParserStatusCode", e.toString()); + Log.e("JSONParserStatusCode >", e.toString()); } catch (Exception e) { torrents = null; diff --git a/qBittorrentClient/app/src/free/res/layout-large/activity_main.xml b/qBittorrentClient/app/src/free/res/layout-large/activity_main.xml index c945a83d..c0cb404a 100644 --- a/qBittorrentClient/app/src/free/res/layout-large/activity_main.xml +++ b/qBittorrentClient/app/src/free/res/layout-large/activity_main.xml @@ -42,7 +42,8 @@ android:layout_below="@+id/app_bar" android:gravity="end" android:orientation="horizontal" - android:paddingBottom="5dp"> + android:paddingBottom="5dp" + android:paddingRight="2dp"> - + - \ No newline at end of file + \ No newline at end of file diff --git a/qBittorrentClient/app/src/free/res/layout-large/torrent_details_old.xml b/qBittorrentClient/app/src/free/res/layout-large/torrent_details_old.xml index 78313e0c..b48d5256 100644 --- a/qBittorrentClient/app/src/free/res/layout-large/torrent_details_old.xml +++ b/qBittorrentClient/app/src/free/res/layout-large/torrent_details_old.xml @@ -8,12 +8,12 @@ Contributors: Luis M. Gallardo D. --> - + + - \ No newline at end of file + \ No newline at end of file diff --git a/qBittorrentClient/app/src/free/res/layout-sw600dp/torrent_details.xml b/qBittorrentClient/app/src/free/res/layout-sw600dp/torrent_details.xml index a3b26da1..e8714a66 100644 --- a/qBittorrentClient/app/src/free/res/layout-sw600dp/torrent_details.xml +++ b/qBittorrentClient/app/src/free/res/layout-sw600dp/torrent_details.xml @@ -8,12 +8,12 @@ Contributors: Luis M. Gallardo D. --> - + + - \ No newline at end of file + \ No newline at end of file diff --git a/qBittorrentClient/app/src/free/res/layout-sw600dp/torrent_details_old.xml b/qBittorrentClient/app/src/free/res/layout-sw600dp/torrent_details_old.xml index 20d944b8..3995ebf9 100644 --- a/qBittorrentClient/app/src/free/res/layout-sw600dp/torrent_details_old.xml +++ b/qBittorrentClient/app/src/free/res/layout-sw600dp/torrent_details_old.xml @@ -8,12 +8,12 @@ Contributors: Luis M. Gallardo D. --> - + + - \ No newline at end of file + \ No newline at end of file diff --git a/qBittorrentClient/app/src/free/res/layout/activity_main.xml b/qBittorrentClient/app/src/free/res/layout/activity_main.xml index 6543e4a4..a4fe1568 100644 --- a/qBittorrentClient/app/src/free/res/layout/activity_main.xml +++ b/qBittorrentClient/app/src/free/res/layout/activity_main.xml @@ -32,6 +32,7 @@ android:orientation="horizontal" android:paddingTop="2dp" android:paddingBottom="2dp" + android:paddingRight="5dp" android:background="?dropShadowBackground" android:elevation="1dp" android:layout_below="@+id/app_bar" diff --git a/qBittorrentClient/app/src/free/res/values-es/strings.xml b/qBittorrentClient/app/src/free/res/values-es/strings.xml index 76af6535..c788653c 100644 --- a/qBittorrentClient/app/src/free/res/values-es/strings.xml +++ b/qBittorrentClient/app/src/free/res/values-es/strings.xml @@ -207,4 +207,12 @@ Velocidades y totales de subida/bajada Por favor califica la aplicación en Google Play Califica esta aplicación + Añadir RSS + Editar + RSS + Descargar nuevos torrents automáticamente? + Notificar nuevos torrents? + RSS url + Nombre + No se pudo obtener RSS diff --git a/qBittorrentClient/app/src/free/res/values-fr/strings.xml b/qBittorrentClient/app/src/free/res/values-fr/strings.xml index 5ca19e2f..a3dca00c 100644 --- a/qBittorrentClient/app/src/free/res/values-fr/strings.xml +++ b/qBittorrentClient/app/src/free/res/values-fr/strings.xml @@ -207,4 +207,12 @@ Transférer/vitesses de téléchargement et les totaux Se il vous plaît évaluer l\'application dans Google Play Évaluer l\'application + Ajouter RSS + Modifier + RSS + Téléchargez de nouveaux torrents automatiquement? + Notifier nouvelles torrents? + RSS url + Nom + Impossible d\'obtenir RSS \ No newline at end of file diff --git a/qBittorrentClient/app/src/free/res/values-it-rIT/strings.xml b/qBittorrentClient/app/src/free/res/values-it-rIT/strings.xml index 2a9292bb..e5f357ef 100644 --- a/qBittorrentClient/app/src/free/res/values-it-rIT/strings.xml +++ b/qBittorrentClient/app/src/free/res/values-it-rIT/strings.xml @@ -207,4 +207,12 @@ Carica / velocità di download e totali Si prega di valutare l\'applicazione in Google PlayPoPl Valuta questa applicazione + Aggiungere RSS + Modifica + RSS + Scarica nuovi torrents automaticamente? + Notifica nuove torrents? + RSS url + Nome + Impossibile ottenere RSS \ No newline at end of file diff --git a/qBittorrentClient/app/src/free/res/values-pl/strings.xml b/qBittorrentClient/app/src/free/res/values-pl/strings.xml index eabbd04a..d7dec952 100644 --- a/qBittorrentClient/app/src/free/res/values-pl/strings.xml +++ b/qBittorrentClient/app/src/free/res/values-pl/strings.xml @@ -208,4 +208,12 @@ Załaduj prędkości/pobierz i sumy Proszę ocenić aplikację w Google Play Oceń ten APP + Dodaj RSS + Edycja + RSS + Automatyczne pobieranie nowych torrents? + Informuj nowych torrents? + RSS url + Nazwa + Nie udało się uzyskać RSS \ No newline at end of file diff --git a/qBittorrentClient/app/src/free/res/values-pt-rBR/strings.xml b/qBittorrentClient/app/src/free/res/values-pt-rBR/strings.xml index bc19b852..ab7b477b 100644 --- a/qBittorrentClient/app/src/free/res/values-pt-rBR/strings.xml +++ b/qBittorrentClient/app/src/free/res/values-pt-rBR/strings.xml @@ -207,4 +207,12 @@ Velocidades de upload/download e totais Por favor, classifique o aplicativo no Google Play Avalie este aplicativo + Adicionar RSS + Editar + RSS + Baixar automaticamente novos torrents? + Notificar novos torrents? + RSS url + Nome + Não foi possível obter RSS \ No newline at end of file diff --git a/qBittorrentClient/app/src/free/res/values-pt-rPT/strings.xml b/qBittorrentClient/app/src/free/res/values-pt-rPT/strings.xml index bc19b852..ab7b477b 100644 --- a/qBittorrentClient/app/src/free/res/values-pt-rPT/strings.xml +++ b/qBittorrentClient/app/src/free/res/values-pt-rPT/strings.xml @@ -207,4 +207,12 @@ Velocidades de upload/download e totais Por favor, classifique o aplicativo no Google Play Avalie este aplicativo + Adicionar RSS + Editar + RSS + Baixar automaticamente novos torrents? + Notificar novos torrents? + RSS url + Nome + Não foi possível obter RSS \ No newline at end of file diff --git a/qBittorrentClient/app/src/free/res/values-ru/strings.xml b/qBittorrentClient/app/src/free/res/values-ru/strings.xml index 5d56a7c1..c755a844 100644 --- a/qBittorrentClient/app/src/free/res/values-ru/strings.xml +++ b/qBittorrentClient/app/src/free/res/values-ru/strings.xml @@ -206,4 +206,12 @@ Общая скорость скачивания\отдачи Оцените приложение в Google Play Оцените это приложение + Добавить RSS + Редактировать + RSS + Автоматически скачивать новые торренты? + Сообщите новые торренты? + RSS url + Имя + Не удалось получить RSS diff --git a/qBittorrentClient/app/src/free/res/values-sv/strings.xml b/qBittorrentClient/app/src/free/res/values-sv/strings.xml index 051cd4ac..79ff3d8e 100644 --- a/qBittorrentClient/app/src/free/res/values-sv/strings.xml +++ b/qBittorrentClient/app/src/free/res/values-sv/strings.xml @@ -34,6 +34,8 @@ Torrent och uppgifterna raderas! Prioritet ökat! Prioritet minskat! + Öppen navigering låda + Stäng navigering låda Att få alternativ... Alternativ sparade! Uppladdningshastighetsgränsen har satts @@ -152,8 +154,6 @@ Hämta hastighet: Storlek: Uppladdningshastighet: - Stäng navigering låda - Öppen navigering låda Filer Egenskaper Trackers @@ -206,4 +206,12 @@ © Luis M. Gallardo D. \n\nPublicerad under GPL v3 Bedöm appen i Google Play Betygsätt den här appen + lägg RSS + Redigera + RSS + Ladda ner nya torrents automatiskt? + Meddela nya torrents? + RSS url + Namn + Det gick inte att få RSS \ No newline at end of file diff --git a/qBittorrentClient/app/src/free/res/values/arrays.xml b/qBittorrentClient/app/src/free/res/values/arrays.xml index c0b5d2bf..61296bbe 100644 --- a/qBittorrentClient/app/src/free/res/values/arrays.xml +++ b/qBittorrentClient/app/src/free/res/values/arrays.xml @@ -11,10 +11,10 @@ 3 - 5 seconds - 10 seconds - 15 seconds - 20 seconds + 1 seconds + 2 seconds + 5 seconds + 10 seconds 30 seconds 1 minute 2 minutes @@ -94,5 +94,4 @@ Get Pro Help - \ No newline at end of file diff --git a/qBittorrentClient/app/src/free/res/values/strings.xml b/qBittorrentClient/app/src/free/res/values/strings.xml index 2a3b3282..ae6ce8be 100644 --- a/qBittorrentClient/app/src/free/res/values/strings.xml +++ b/qBittorrentClient/app/src/free/res/values/strings.xml @@ -20,6 +20,7 @@ Resume all Pause all Delete + Edit Delete data Increase priority Decrease priority @@ -216,4 +217,12 @@ Upload/download speeds and totals Rate this app Please rate the app in Google play + Add RSS + RSS + RSS url + Name + Download new torrents automatically? + Notify new torrents? + New torrents available + Could not get RSS \ No newline at end of file diff --git a/qBittorrentClient/app/src/main/AndroidManifest.xml b/qBittorrentClient/app/src/main/AndroidManifest.xml index 6ca1c0a0..5baaa0e5 100644 --- a/qBittorrentClient/app/src/main/AndroidManifest.xml +++ b/qBittorrentClient/app/src/main/AndroidManifest.xml @@ -1,4 +1,5 @@ - + package="com.lgallardo.qbittorrentclient" > - + + + + + android:theme="@style/AppTheme" > + android:launchMode="singleTask" > @@ -145,29 +149,31 @@ + android:theme="@style/Theme_Light" /> + android:theme="@style/Theme_Light" /> - + + + android:theme="@android:style/Theme.Translucent" /> - + + - + + android:enabled="true" > @@ -177,6 +183,176 @@ android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" /> /> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + diff --git a/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/JSONParser.java b/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/JSONParser.java index c7d933ff..001aa610 100644 --- a/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/JSONParser.java +++ b/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/JSONParser.java @@ -75,11 +75,11 @@ public class JSONParser { // constructor public JSONParser() { - this("", "", "", 0, "", "", 5, 8); + this("", "", "", 0, "", "", 10, 20); } public JSONParser(String hostname, String subfolder, int port, String username, String password) { - this(hostname, subfolder, "http", port, username, password, 5, 8); + this(hostname, subfolder, "http", port, username, password, 10, 20); } public JSONParser(String hostname, String subfolder, String protocol, int port, String username, String password, int connection_timeout, int data_timeout) { diff --git a/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/NotifierService.java b/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/NotifierService.java index 7641a8c2..5bd1e953 100644 --- a/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/NotifierService.java +++ b/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/NotifierService.java @@ -150,15 +150,15 @@ protected void getSettings() { // Get connection and data timeouts try { - connection_timeout = Integer.parseInt(sharedPrefs.getString("connection_timeout", "5")); + connection_timeout = Integer.parseInt(sharedPrefs.getString("connection_timeout", "10")); } catch (NumberFormatException e) { - connection_timeout = 5; + connection_timeout = 10; } try { - data_timeout = Integer.parseInt(sharedPrefs.getString("data_timeout", "8")); + data_timeout = Integer.parseInt(sharedPrefs.getString("data_timeout", "20")); } catch (NumberFormatException e) { - data_timeout = 8; + data_timeout = 20; } diff --git a/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/RSSFeed.java b/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/RSSFeed.java new file mode 100644 index 00000000..04d386ec --- /dev/null +++ b/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/RSSFeed.java @@ -0,0 +1,98 @@ +package com.lgallardo.qbittorrentclient; + +import java.util.ArrayList; + +/** + * Created by lgallard on 02/06/15. + */ +public class RSSFeed { + + public String channelTitle; + public String channelLink; + public String channelPubDate; + public ArrayList items; + public boolean autodDownload; + public boolean notifyNew; + public int itemCount; + public boolean resultOk; + + public RSSFeed() { + + } + + public RSSFeed(String title, String link, boolean autodDownload, boolean notifyNew) { + this.channelTitle = title; + this.channelLink = link; + this.autodDownload = autodDownload; + this.notifyNew = notifyNew; + } + + public RSSFeed(String title, String link) { + this(title, link, true, false); + } + + + public String getChannelTitle() { + return channelTitle; + } + + public void setChannelTitle(String channelTitle) { + this.channelTitle = channelTitle; + } + + public String getChannelLink() { + return channelLink; + } + + public void setChannelLink(String channelLink) { + this.channelLink = channelLink; + } + + public ArrayList getItems() { + return items; + } + + public void setItems(ArrayList items) { + this.items = items; + } + + public String getChannelPubDate() { + return channelPubDate; + } + + public void setChannelPubDate(String channelPubDate) { + this.channelPubDate = channelPubDate; + } + + public boolean getAutodDownload() { + return autodDownload; + } + + public void setAutodDownload(boolean autodDownload) { + this.autodDownload = autodDownload; + } + + public boolean getNotifyNew() { + return notifyNew; + } + + public void setNotifyNew(boolean notifyNew) { + this.notifyNew = notifyNew; + } + + public int getItemCount() { + return itemCount; + } + + public void setItemCount(int itemCount) { + this.itemCount = itemCount; + } + + public boolean isResultOk() { + return resultOk; + } + + public void setResultOk(boolean resultOk) { + this.resultOk = resultOk; + } +} \ No newline at end of file diff --git a/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/RSSFeedActivity.java b/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/RSSFeedActivity.java new file mode 100644 index 00000000..40da3ad0 --- /dev/null +++ b/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/RSSFeedActivity.java @@ -0,0 +1,641 @@ +package com.lgallardo.qbittorrentclient; + +import android.app.AlertDialog; +import android.content.DialogInterface; +import android.content.Intent; +import android.content.SharedPreferences; +import android.os.AsyncTask; +import android.os.Build; +import android.os.Bundle; +import android.preference.PreferenceManager; +import android.support.v4.widget.SwipeRefreshLayout; +import android.support.v7.app.AppCompatActivity; +import android.support.v7.widget.Toolbar; +import android.util.Log; +import android.util.TypedValue; +import android.view.ContextMenu; +import android.view.LayoutInflater; +import android.view.Menu; +import android.view.MenuItem; +import android.view.View; +import android.widget.AdapterView; +import android.widget.CheckBox; +import android.widget.EditText; +import android.widget.ListView; +import android.widget.Toast; + +import java.util.ArrayList; + +public class RSSFeedActivity extends AppCompatActivity { + + Toolbar toolbar; + public static RSSFeedChannelListAdapter myadapter; + private SharedPreferences sharedPrefs; + private StringBuilder builderPrefs; + private static String rss_feeds; + public static SwipeRefreshLayout mSwipeRefreshLayout; + public static RSSFeed rssInfo; + + public static ArrayList rssFeeds = new ArrayList(); + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + + + // Set Theme (It must be fore inflating or setContentView) + if (MainActivity.dark_ui) { + this.setTheme(R.style.Theme_Dark); + + if (Build.VERSION.SDK_INT >= 21) { + getWindow().setNavigationBarColor(getResources().getColor(R.color.Theme_Dark_toolbarBackground)); + getWindow().setStatusBarColor(getResources().getColor(R.color.Theme_Dark_toolbarBackground)); + } + } else { + this.setTheme(R.style.Theme_Light); + + if (Build.VERSION.SDK_INT >= 21) { + getWindow().setNavigationBarColor(getResources().getColor(R.color.primary)); + } + + } + + setContentView(R.layout.activity_rssfeed); + + toolbar = (Toolbar) findViewById(R.id.app_bar); + + if (MainActivity.dark_ui) { + toolbar.setBackgroundColor(getResources().getColor(R.color.Theme_Dark_primary)); + } + + setSupportActionBar(toolbar); + + getSupportActionBar().setDisplayHomeAsUpEnabled(true); + getSupportActionBar().setHomeButtonEnabled(false); + + // Set App title + setTitle(R.string.action_rss); + + + mSwipeRefreshLayout = (SwipeRefreshLayout) findViewById(R.id.rss_refresh_layout); + + + if (mSwipeRefreshLayout != null) { + + TypedValue typed_value = new TypedValue(); + getTheme().resolveAttribute(android.support.v7.appcompat.R.attr.actionBarSize, typed_value, true); + mSwipeRefreshLayout.setProgressViewOffset(false, 0, getResources().getDimensionPixelSize(typed_value.resourceId) * 2); + + mSwipeRefreshLayout.setEnabled(false); + + mSwipeRefreshLayout.setColorSchemeColors(R.color.primary, R.color.primary_dark, R.color.primary_text); + + mSwipeRefreshLayout.setRefreshing(true); + + + mSwipeRefreshLayout.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() { + @Override + public void onRefresh() { + + // Refresh all RSS feeds + new rssFeedsTask().execute(); + } + }); + } + + + ArrayList rssChannels = new ArrayList(); + + // Get ListView object from xml + ListView listView = (ListView) findViewById(R.id.channel_list); + + // Listener for listview + listView.setOnItemClickListener(new AdapterView.OnItemClickListener() { + @Override + public void onItemClick(AdapterView av, View v, int pos, long id) { + onListItemClick(v, pos, id); + } + }); + + + myadapter = new RSSFeedChannelListAdapter(this, rssChannels); + + listView.setAdapter(myadapter); + + // This is need for the Contextual menu + registerForContextMenu(listView); + + + + + // If it were awaked from an intent-filter, + // get intent from the intent filter and Add URL torrent + handleIntent(getIntent()); + } + + + private void onListItemClick(View v, int pos, long id) { +// Log.i("Debug", "onListItemClick id=" + id); +// Log.i("Debug", "onListItemClick pos=" + pos); + + if(myadapter.getRssChannels().get(pos).getItemCount() > 0) { + + Intent intent = new Intent(getBaseContext(), com.lgallardo.qbittorrentclient.RSSItemActivity.class); + intent.putExtra("position", pos); + + startActivity(intent); + } + + } + + + public void saveRssFeed(String title, String link, String pubDate, boolean autoDownload, boolean notifyNew) { + + String autoDownloadValue = Boolean.toString(autoDownload); + String notifyNewValue = Boolean.toString(notifyNew); + + + // Save options locally + sharedPrefs = PreferenceManager.getDefaultSharedPreferences(this); + SharedPreferences.Editor editor = sharedPrefs.edit(); + + // Save rss_feeds + if (rss_feeds.equals("")) { + + rss_feeds = title + ";" + link + ";" + pubDate + ";" + autoDownloadValue + ";" + notifyNewValue; + + } else { + rss_feeds = rss_feeds + "|" + title + ";" + link + ";" + pubDate + ";" + autoDownloadValue + ";" + notifyNewValue; + + } + +// Log.d("Debug", "rss_feeds: " + rss_feeds); + + editor.putString("rss_feeds", rss_feeds); + // Commit changes + editor.apply(); + + + } + + + @Override + public void onCreateContextMenu(ContextMenu menu, View v, ContextMenu.ContextMenuInfo menuInfo) { + + if (mSwipeRefreshLayout.isRefreshing()) { + return; + } + + if (v.getId() == R.id.channel_list) { + AdapterView.AdapterContextMenuInfo info = (AdapterView.AdapterContextMenuInfo) menuInfo; + + +// Log.d("Debug", "Chosen: " + info.id); +// Log.d("Debug", "Chosen: " + info.position); + + + getMenuInflater().inflate(R.menu.menu_rssrow_contextual, menu); + } + } + + @Override + public boolean onContextItemSelected(MenuItem item) { + AdapterView.AdapterContextMenuInfo info = (AdapterView.AdapterContextMenuInfo) item.getMenuInfo(); + +// Log.d("Debug", "Item: " + getResources().getResourceEntryName(item.getItemId())); + + + ArrayList rssChannels = myadapter.getRssChannels(); + + switch (item.getItemId()) { + + case R.id.action_edit: +// Log.d("Debug", "Edit!"); + + editRssFeed(info.position, rssChannels.get(info.position)); + + return true; + case R.id.action_delete: +// Log.d("Debug", "Delete!"); + + rssChannels.remove(info.position); + + myadapter.setRssChannels(rssChannels); + myadapter.notifyDataSetChanged(); + + // Save all; + rss_feeds = ""; + for (int i = 0; i < rssChannels.size(); i++) { + RSSFeed rssFeed = rssChannels.get(i); + saveRssFeed(rssFeed.getChannelTitle(), rssFeed.getChannelLink(), rssFeed.getChannelPubDate(), rssFeed.getAutodDownload(), rssFeed.getNotifyNew()); + } + + return true; + default: + return super.onOptionsItemSelected(item); + } + } + + @Override + public boolean onCreateOptionsMenu(Menu menu) { + // Inflate the menu; this adds items to the action bar if it is present. + getMenuInflater().inflate(R.menu.menu_rssfeed, menu); + return true; + } + + @Override + public boolean onOptionsItemSelected(MenuItem item) { + // Handle action bar item clicks here. The action bar will + // automatically handle clicks on the Home/Up button, so long + // as you specify a parent activity in AndroidManifest.xml. + switch (item.getItemId()) { + case android.R.id.home: + finish(); + return true; + case R.id.action_addRss: + // Add URL torrent + addRssFeed(new RSSFeed()); + return true; + case R.id.action_refreshRss: + mSwipeRefreshLayout.setRefreshing(true); + new rssFeedsTask().execute(); + return true; + case R.id.action_settings: + return true; + case R.id.action_edit: + return true; + case R.id.action_delete: +// Log.d("Debug", "Delete!"); + return true; + default: + return super.onOptionsItemSelected(item); + } + } + + private void addRssFeed(RSSFeed rssFeed) { + + // get prompts.xml view + LayoutInflater li = LayoutInflater.from(this); + View addTorrentView = li.inflate(R.layout.add_rss, null); + + // URL input + final EditText rssFeedUrlInput = (EditText) addTorrentView.findViewById(R.id.rssFeedUrl); + final EditText rssFeedNameInput = (EditText) addTorrentView.findViewById(R.id.rssFeedName); + final CheckBox rssFeedAutoDownloadInput = (CheckBox) addTorrentView.findViewById(R.id.rssFeedAutodownload); + final CheckBox rssFeedNotifyNewInput = (CheckBox) addTorrentView.findViewById(R.id.rssFeedNotifyNew); + + if (rssFeed != null) { + + rssFeedUrlInput.setText(rssFeed.getChannelLink()); + + if (rssFeed.getChannelTitle() != null) { + rssFeedNameInput.setText(rssFeed.getChannelTitle()); + } + + + if (!isFinishing()) { + // Dialog + AlertDialog.Builder builder = new AlertDialog.Builder(this); + + // Set add_torrent.xml to AlertDialog builder + builder.setView(addTorrentView); + + // Cancel + builder.setNeutralButton(R.string.cancel, new DialogInterface.OnClickListener() { + public void onClick(DialogInterface dialog, int id) { + // User cancelled the dialog + mSwipeRefreshLayout.setRefreshing(true); + new rssFeedsTask().execute(); + + } + }); + + // Ok + builder.setPositiveButton(R.string.ok, new DialogInterface.OnClickListener() { + public void onClick(DialogInterface dialog, int id) { + // User accepted the dialog +// Log.d("Debug", "RSS feed: " + rssFeedUrlInput.getText().toString()); + + // Get values from dialog view + String title = rssFeedNameInput.getText().toString(); + String link = rssFeedUrlInput.getText().toString(); + boolean autoDownload = rssFeedAutoDownloadInput.isChecked() ? true : false; + boolean notifyNew = rssFeedNotifyNewInput.isChecked() ? true : false; + + + //Save RSS feed + + if (link != null && !link.isEmpty()) { + + if (title == null || title.isEmpty()) { + title = link; + } + + saveRssFeed(title, link, "", autoDownload, notifyNew); + + + // Refresh channel list + mSwipeRefreshLayout.setRefreshing(true); + new rssFeedsTask().execute(); + + + } + + + } + }); + + // Create dialog + AlertDialog dialog = builder.create(); + + // Show dialog + dialog.show(); + } + } + + } + + private void editRssFeed(final int position, final RSSFeed rssFeed) { + + // get prompts.xml view + LayoutInflater li = LayoutInflater.from(this); + View addTorrentView = li.inflate(R.layout.add_rss, null); + + // URL input + final EditText rssFeedUrlInput = (EditText) addTorrentView.findViewById(R.id.rssFeedUrl); + final EditText rssFeedNameInput = (EditText) addTorrentView.findViewById(R.id.rssFeedName); + final CheckBox rssFeedAutoDownloadInput = (CheckBox) addTorrentView.findViewById(R.id.rssFeedAutodownload); + final CheckBox rssFeedNotifyNewInput = (CheckBox) addTorrentView.findViewById(R.id.rssFeedNotifyNew); + + + // Set dialog's values + rssFeedUrlInput.setText(rssFeed.getChannelLink()); + rssFeedNameInput.setText(rssFeed.getChannelTitle()); + rssFeedAutoDownloadInput.setChecked(rssFeed.getAutodDownload()); + rssFeedNotifyNewInput.setChecked(rssFeed.getNotifyNew()); + + if (rssFeed != null) { + + + if (!isFinishing()) { + // Dialog + AlertDialog.Builder builder = new AlertDialog.Builder(this); + + // Set add_torrent.xml to AlertDialog builder + builder.setView(addTorrentView); + + // Cancel + builder.setNeutralButton(R.string.cancel, new DialogInterface.OnClickListener() { + public void onClick(DialogInterface dialog, int id) { + // User cancelled the dialog + } + }); + + // Ok + builder.setPositiveButton(R.string.ok, new DialogInterface.OnClickListener() { + public void onClick(DialogInterface dialog, int id) { + // User accepted the dialog +// Log.d("Debug", "RSS feed: " + rssFeedUrlInput.getText().toString()); + + // Get values from dialog view + String title = rssFeedNameInput.getText().toString(); + String link = rssFeedUrlInput.getText().toString(); + boolean autoDownload = rssFeedAutoDownloadInput.isChecked() ? true : false; + boolean notifyNew = rssFeedNotifyNewInput.isChecked() ? true : false; + + + //Save RSS feed + + if (link != null && !link.isEmpty()) { + + if (title == null || title.isEmpty()) { + title = link; + } + +// saveRssFeed(title, link, "", autoDownload, notifyNew); + + rssFeed.setChannelTitle(title); + rssFeed.setChannelLink(link); + rssFeed.setAutodDownload(autoDownload); + rssFeed.setNotifyNew(notifyNew); +// +// +// // Refresh channel list +// mSwipeRefreshLayout.setRefreshing(true); +// new rssFeedsTask().execute(); + + ArrayList rssChannels = myadapter.getRssChannels(); + + rssChannels.set(position, rssFeed); + + + myadapter.setRssChannels(rssChannels); + myadapter.notifyDataSetChanged(); + + // Save all; + rss_feeds = ""; + for (int i = 0; i < rssChannels.size(); i++) { + RSSFeed rssFeed = rssChannels.get(i); + +// Log.d("Debug", "Saving: " + rssFeed.getChannelTitle() + ";" + rssFeed.getChannelLink() + ";" + rssFeed.getChannelPubDate() + ";" + rssFeed.getAutodDownload() + ";" + rssFeed.getNotifyNew()); + + + saveRssFeed(rssFeed.getChannelTitle(), rssFeed.getChannelLink(), rssFeed.getChannelPubDate(), rssFeed.getAutodDownload(), rssFeed.getNotifyNew()); + } + + + } + + } + }); + + // Create dialog + AlertDialog dialog = builder.create(); + + // Show dialog + dialog.show(); + } + } + + } + + @Override + protected void onNewIntent(Intent intent) { + + handleIntent(intent); + } + + private void handleIntent(Intent intent) { + + + if (intent != null) { + + // Add Rss from url + String rssUrl = intent.getDataString(); + +// Log.d("Debug", "RSS url: " + rssUrl); + + if (rssUrl != null) { + +// addRssFeed(rssInfo); + + RSSChannelInfoTask rssInfoTask = new RSSChannelInfoTask(); + +// new rssFeedsTask().execute(); +// +// +// + rssInfoTask.execute(rssUrl); + } + else { + + new rssFeedsTask().execute(); + } + + } + + } + + // Here is where the action happens + private class RSSChannelInfoTask extends AsyncTask { + @Override + protected RSSFeed doInBackground(String... params) { + + RSSFeed rssFeed = new RSSFeed(); + + try { + + RSSFeedParser rssFeedParser = new RSSFeedParser(); + rssFeed = rssFeedParser.getRSSChannelInfo(params[0]); + } catch (Exception e) { + Log.e("Debug", e.getMessage()); + Log.e("Debug", e.toString()); + e.printStackTrace(); + + rssFeed = null; + } + + // Set rss link + rssFeed.setChannelLink(params[0]); + + return rssFeed; + } + + @Override + protected void onPostExecute(RSSFeed result) { + + + if (result != null) { +// Log.d("Debug", "> Channel Title: " + result.getChannelTitle()); +// Log.d("Debug", "> Channel Link: " + result.getChannelLink()); + + + rssInfo = result; + + // Add rssInfoTask result + addRssFeed(rssInfo); + + +// myadapter.addChannel(result); +// myadapter.notifyDataSetChanged(); + + } else { + Toast.makeText(getApplicationContext(), R.string.error, Toast.LENGTH_SHORT).show(); + } + + } + + + } + + // Here is where the action happens + private class rssFeedsTask extends AsyncTask> { + @Override + protected ArrayList doInBackground(String... params) { + + + // Preferences stuff + sharedPrefs = PreferenceManager.getDefaultSharedPreferences(getApplication()); + + builderPrefs = new StringBuilder(); + + builderPrefs.append("\n" + sharedPrefs.getString("language", "NULL")); + + // Get values from options + rss_feeds = sharedPrefs.getString("rss_feeds", ""); + + ArrayList feeds = new ArrayList(); + + String[] rss_feeds_lines = rss_feeds.split("\\|"); + + + for (int i = 0; rss_feeds_lines.length > i; i++) { + + + String[] feedValues = rss_feeds_lines[i].split(";"); + + + // Retrieve feed + if (feedValues.length > 0 && !feedValues[0].isEmpty()) { + + if (feedValues.length > 1) { + + RSSFeed rssFeed = new RSSFeed(); + + try { + + RSSFeedParser rssFeedParser = new RSSFeedParser(); + rssFeed = rssFeedParser.getRSSFeed(feedValues[0], feedValues[1]); + +// saveRssFeed(String title, String link, String pubDate, boolean autoDownload, boolean notifyNew) { + // Set downlaod and notify flags + +// Log.d("Debug", "feedValues[0]: " + feedValues[0]); +// Log.d("Debug", "feedValues[1]: " + feedValues[1]); +// Log.d("Debug", "feedValues[2]: " + feedValues[2]); +// Log.d("Debug", "feedValues[3]: " + feedValues[3]); +// Log.d("Debug", "feedValues[4]: " + feedValues[4]); + + + rssFeed.setAutodDownload(Boolean.parseBoolean(feedValues[3])); + rssFeed.setNotifyNew(Boolean.parseBoolean(feedValues[4])); + + } catch (Exception e) { + Log.e("Debug", e.getMessage()); + Log.e("Debug", e.toString()); + e.printStackTrace(); + } + + // Add feed, no matter if it's empty + feeds.add(rssFeed); + + + } + + } + + } + + return feeds; + } + + @Override + protected void onPostExecute(ArrayList result) { + + if (result != null) { + + myadapter.setRssChannels(result); + myadapter.notifyDataSetChanged(); + + + } + + + mSwipeRefreshLayout.setRefreshing(false); + mSwipeRefreshLayout.setEnabled(true); + + } + } + +} + diff --git a/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/RSSFeedChannelListAdapter.java b/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/RSSFeedChannelListAdapter.java new file mode 100644 index 00000000..7b766260 --- /dev/null +++ b/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/RSSFeedChannelListAdapter.java @@ -0,0 +1,119 @@ +package com.lgallardo.qbittorrentclient; + +import android.content.Context; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.ArrayAdapter; +import android.widget.ImageView; +import android.widget.TextView; + +import java.text.ParseException; +import java.text.SimpleDateFormat; +import java.util.ArrayList; +import java.util.Date; +import java.util.Locale; + +/** + * Created by lgallard on 6/4/15. + */ +public class RSSFeedChannelListAdapter extends ArrayAdapter { + + private Context context; + public static ArrayList rssChannels; + + + public RSSFeedChannelListAdapter(Context context, ArrayList rssChannels) { + + super(context, R.layout.rss_channel_row, R.id.rss_channel_title, rssChannels); + + this.context = context; + this.rssChannels = rssChannels; + + } + + + @Override + public int getCount() { + return (rssChannels != null) ? rssChannels.size() : 0; + } + + @Override + public View getView(int position, View convertView, ViewGroup parent) { + + LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); + + View row = inflater.inflate(R.layout.rss_channel_row, parent, false); + + String rssChannelTitle = rssChannels.get(position).getChannelTitle(); + String rssChannelLink = rssChannels.get(position).getChannelLink(); + String rssChannelPubDate = rssChannels.get(position).getChannelPubDate(); + String rssCahnnelNewItems = rssChannels.get(position).getItemCount() + ""; + + + TextView title = (TextView) row.findViewById(R.id.rss_channel_title); + title.setText(rssChannelTitle); + + TextView link = (TextView) row.findViewById(R.id.rss_channel_link); + link.setText(rssChannelLink); + + + Date predefined = new Date(); + + String dateAsString = ""; + + try { + + if(rssChannelPubDate != null) { + // Tue, 02 Jun 2015 17:37:32 + predefined = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss", Locale.ENGLISH).parse(rssChannelPubDate); + + dateAsString = new SimpleDateFormat("dd/MM/yyyy - hh:mm a", Locale.getDefault()).format(predefined); + } + + + + } catch (ParseException e) { + e.printStackTrace(); + } + + + + TextView pubDate = (TextView) row.findViewById(R.id.rss_channel_pudDate); + pubDate.setText(dateAsString); + + + TextView items = (TextView) row.findViewById(R.id.rss_channel_item_count); + items.setText(rssCahnnelNewItems); + + + ImageView icon = (ImageView) row.findViewById(R.id.icon); + + if (rssChannels.get(position).isResultOk()){ + icon.setImageResource(R.drawable.okay); + }else{ + icon.setImageResource(R.drawable.error2); + pubDate.setText(context.getResources().getString(R.string.error_rss)); + } + + + return row; + } + + + + public void addChannel(RSSFeed rssFeed){ + + this.rssChannels.add(rssFeed); + + } + + + public ArrayList getRssChannels() { + return rssChannels; + } + + public void setRssChannels(ArrayList rssChannels) { + RSSFeedChannelListAdapter.rssChannels = rssChannels; + } +} diff --git a/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/RSSFeedItem.java b/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/RSSFeedItem.java new file mode 100644 index 00000000..a51cfdf5 --- /dev/null +++ b/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/RSSFeedItem.java @@ -0,0 +1,58 @@ +package com.lgallardo.qbittorrentclient; + +/** + * Created by lgallard on 03/06/15. + */ +public class RSSFeedItem { + + + public String title; + public String description; + public String link; + public String torrentUrl; + public String pubDate; + + + public RSSFeedItem() { + } + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title; + } + + public String getDescription() { + return description; + } + + public void setDescription(String description) { + this.description = description; + } + + public String getLink() { + return link; + } + + public void setLink(String link) { + this.link = link; + } + + public String getTorrentUrl() { + return torrentUrl; + } + + public void setTorrentUrl(String torrentUrl) { + this.torrentUrl = torrentUrl; + } + + public String getPubDate() { + return pubDate; + } + + public void setPubDate(String pubDate) { + this.pubDate = pubDate; + } +} diff --git a/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/RSSFeedItemListAdapter.java b/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/RSSFeedItemListAdapter.java new file mode 100644 index 00000000..eaf0db35 --- /dev/null +++ b/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/RSSFeedItemListAdapter.java @@ -0,0 +1,99 @@ +package com.lgallardo.qbittorrentclient; + +import android.content.Context; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.ArrayAdapter; +import android.widget.TextView; + +import java.text.ParseException; +import java.text.SimpleDateFormat; +import java.util.ArrayList; +import java.util.Date; +import java.util.Locale; + +/** + * Created by lgallard on 6/4/15. + */ +public class RSSFeedItemListAdapter extends ArrayAdapter { + + private Context context; + public static ArrayList items; + + + public RSSFeedItemListAdapter(Context context, ArrayList items) { + + super(context, R.layout.rss_item_row, R.id.rss_item_title, items); + + this.context = context; + this.items = items; + + } + + + @Override + public int getCount() { + return (items != null) ? items.size() : 0; + } + + @Override + public View getView(int position, View convertView, ViewGroup parent) { + + LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); + + View row = inflater.inflate(R.layout.rss_item_row, parent, false); + + String itemlTitle = items.get(position).getTitle(); + String itemLink = items.get(position).getLink(); + String itemPubDate = items.get(position).getPubDate(); + + + TextView title = (TextView) row.findViewById(R.id.rss_item_title); + title.setText(itemlTitle); + + Date predefined = new Date(); + + String dateAsString = ""; + + try { + + if(itemPubDate != null) { + // Tue, 02 Jun 2015 17:37:32 + predefined = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss", Locale.ENGLISH).parse(itemPubDate); + + dateAsString = new SimpleDateFormat("dd/MM/yyyy - hh:mm a", Locale.getDefault()).format(predefined); + } + + + + } catch (ParseException e) { + e.printStackTrace(); + } + + + + TextView pubDate = (TextView) row.findViewById(R.id.rss_item_pudDate); + pubDate.setText(dateAsString); + + + return row; + } + + + + public void addItem(RSSFeedItem item){ + + this.items.add(item); + + } + + + public ArrayList getItems() { + return items; + } + + public void setItems(ArrayList items) { + RSSFeedItemListAdapter.items = items; + } +} diff --git a/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/RSSFeedParser.java b/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/RSSFeedParser.java new file mode 100644 index 00000000..3127ed05 --- /dev/null +++ b/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/RSSFeedParser.java @@ -0,0 +1,424 @@ +package com.lgallardo.qbittorrentclient; + +import android.net.Uri; +import android.util.Log; + +import org.apache.http.HttpEntity; +import org.apache.http.HttpHost; +import org.apache.http.HttpResponse; +import org.apache.http.HttpVersion; +import org.apache.http.StatusLine; +import org.apache.http.client.methods.HttpGet; +import org.apache.http.conn.ClientConnectionManager; +import org.apache.http.conn.scheme.PlainSocketFactory; +import org.apache.http.conn.scheme.Scheme; +import org.apache.http.conn.scheme.SchemeRegistry; +import org.apache.http.impl.client.DefaultHttpClient; +import org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager; +import org.apache.http.params.BasicHttpParams; +import org.apache.http.params.HttpConnectionParams; +import org.apache.http.params.HttpParams; +import org.apache.http.params.HttpProtocolParams; +import org.apache.http.protocol.HTTP; +import org.xmlpull.v1.XmlPullParser; +import org.xmlpull.v1.XmlPullParserFactory; + +import java.io.InputStream; +import java.security.KeyStore; +import java.util.ArrayList; +import java.util.List; + +/** + * Created by lgallard on 02/06/15. + */ +public class RSSFeedParser { + + private int connection_timeout; + private int data_timeout; + + static InputStream is = null; + + private int itemCount; + + + public RSSFeedParser() { + + RSSFeedParser(10, 20); + + } + + public void RSSFeedParser(int connection_timeout, int data_timeout) { + + this.connection_timeout = connection_timeout; + this.data_timeout = data_timeout; + + } + + public RSSFeed getRSSFeed(String channelTitle, String channelUrl) { + + // Parse url + Uri uri = Uri.parse(channelUrl); + int event; + String text = null; + String torrent = null; + boolean header = true; + + this.itemCount = 0; + + + HttpResponse httpResponse; + DefaultHttpClient httpclient; + + XmlPullParserFactory xmlFactoryObject; + XmlPullParser xmlParser = null; + + HttpParams httpParameters = new BasicHttpParams(); + + // Set the timeout in milliseconds until a connection is established. + // The default value is zero, that means the timeout is not used. + int timeoutConnection = connection_timeout * 1000; + + // Set the default socket timeout (SO_TIMEOUT) + // in milliseconds which is the timeout for waiting for data. + int timeoutSocket = data_timeout * 1000; + + // Set http parameters + HttpConnectionParams.setConnectionTimeout(httpParameters, timeoutConnection); + HttpConnectionParams.setSoTimeout(httpParameters, timeoutSocket); + HttpProtocolParams.setUserAgent(httpParameters, "qBittorrent for Android"); + HttpProtocolParams.setVersion(httpParameters, HttpVersion.HTTP_1_1); + HttpProtocolParams.setContentCharset(httpParameters, HTTP.UTF_8); + + + RSSFeed rssFeed = new RSSFeed(); + rssFeed.setChannelTitle(channelTitle); + rssFeed.setChannelLink(channelUrl); + + httpclient = null; + + try { + + // Making HTTP request + HttpHost targetHost = new HttpHost(uri.getAuthority()); + + // httpclient = new DefaultHttpClient(httpParameters); + // httpclient = new DefaultHttpClient(); + httpclient = getNewHttpClient(); + + httpclient.setParams(httpParameters); + + +// AuthScope authScope = new AuthScope(targetHost.getHostName(), targetHost.getPort()); +// UsernamePasswordCredentials credentials = new UsernamePasswordCredentials(this.username, this.password); +// +// httpclient.getCredentialsProvider().setCredentials(authScope, credentials); + + // set http parameters + + HttpGet httpget = new HttpGet(channelUrl); + + httpResponse = httpclient.execute(targetHost, httpget); + + StatusLine statusLine = httpResponse.getStatusLine(); + + int mStatusCode = statusLine.getStatusCode(); + + if (mStatusCode != 200) { + httpclient.getConnectionManager().shutdown(); + throw new JSONParserStatusCodeException(mStatusCode); + } + + HttpEntity httpEntity = httpResponse.getEntity(); + is = httpEntity.getContent(); + + xmlFactoryObject = XmlPullParserFactory.newInstance(); + xmlParser = xmlFactoryObject.newPullParser(); + + xmlParser.setFeature(XmlPullParser.FEATURE_PROCESS_NAMESPACES, false); + xmlParser.setInput(is, null); + + + event = xmlParser.getEventType(); + + // Get Channel info + String name; + RSSFeedItem item = null; + ArrayList items = new ArrayList(); + + // Get items + while (event != XmlPullParser.END_DOCUMENT) { + + + name = xmlParser.getName(); + + switch (event) { + case XmlPullParser.START_TAG: + + if (name != null && name.equals("item")) { + header = false; + item = new RSSFeedItem(); + itemCount = itemCount + 1; + } + + + try { + for(int i =0; i < xmlParser.getAttributeCount(); i++) { + + if(xmlParser.getAttributeName(i).equals("url")) { + torrent = xmlParser.getAttributeValue(i); + break; + } + } + } catch (Exception e) { + + } + + + break; + + case XmlPullParser.TEXT: + text = xmlParser.getText(); + break; + + case XmlPullParser.END_TAG: + + + if (name.equals("title")) { + if (!header) { + item.setTitle(text); +// Log.d("Debug", "PARSER - Title: " + text); + } + } else if (name.equals("description")) { + if (header) { +// Log.d("Debug", "Channel Description: " + text); + } else { + item.setDescription(text); +// Log.d("Debug", "Description: " + text); + } + } else if (name.equals("link")) { + if (!header) { + item.setLink(text); +// Log.d("Debug", "Link: " + text); + } + + } else if (name.equals("pubDate")) { + + // Set item pubDate + item.setPubDate(text); + + } else if (name.equals("enclosure")) { + item.setTorrentUrl(torrent); +// Log.d("Debug", "Enclosure: " + torrent); + } else if(name.equals("item") && !header){ + + if(items != null & item != null){ + items.add(item); + } + + } + + break; + } + + event = xmlParser.next(); + +// if (!header) { +// items.add(item); +// } + + } + + rssFeed.setItems(items); + rssFeed.setItemCount(itemCount); + rssFeed.setChannelPubDate(items.get(0).getPubDate()); + rssFeed.setResultOk(true); + + is.close(); + } catch (Exception e) { + Log.e("Debug", "RSSFeedParser - : " + e.toString()); + rssFeed.setResultOk(false); + } finally { + // When HttpClient instance is no longer needed, + // shut down the connection manager to ensure + // immediate deallocation of all system resources + if (httpclient != null) { + httpclient.getConnectionManager().shutdown(); + } + } + + // return JSON String + return rssFeed; + + + } + + public RSSFeed getRSSChannelInfo(String url) { + + // Parse url + Uri uri = Uri.parse(url); + int event; + String text = null; + String torrent = null; + boolean header = true; + + + HttpResponse httpResponse; + DefaultHttpClient httpclient; + + XmlPullParserFactory xmlFactoryObject; + XmlPullParser xmlParser = null; + + HttpParams httpParameters = new BasicHttpParams(); + + // Set the timeout in milliseconds until a connection is established. + // The default value is zero, that means the timeout is not used. + int timeoutConnection = connection_timeout * 1000; + + // Set the default socket timeout (SO_TIMEOUT) + // in milliseconds which is the timeout for waiting for data. + int timeoutSocket = data_timeout * 1000; + + // Set http parameters + HttpConnectionParams.setConnectionTimeout(httpParameters, timeoutConnection); + HttpConnectionParams.setSoTimeout(httpParameters, timeoutSocket); + HttpProtocolParams.setUserAgent(httpParameters, "qBittorrent for Android"); + HttpProtocolParams.setVersion(httpParameters, HttpVersion.HTTP_1_1); + HttpProtocolParams.setContentCharset(httpParameters, HTTP.UTF_8); + + +// Log.d("Debug", "Host: " + uri.getAuthority()); + + // Making HTTP request + HttpHost targetHost = new HttpHost(uri.getAuthority()); + + // httpclient = new DefaultHttpClient(httpParameters); + // httpclient = new DefaultHttpClient(); + httpclient = getNewHttpClient(); + + httpclient.setParams(httpParameters); + + + RSSFeed rssFeed = new RSSFeed(); + + try { + +// AuthScope authScope = new AuthScope(targetHost.getHostName(), targetHost.getPort()); +// UsernamePasswordCredentials credentials = new UsernamePasswordCredentials(this.username, this.password); +// +// httpclient.getCredentialsProvider().setCredentials(authScope, credentials); + + // set http parameters + + HttpGet httpget = new HttpGet(url); + + httpResponse = httpclient.execute(targetHost, httpget); + + StatusLine statusLine = httpResponse.getStatusLine(); + + int mStatusCode = statusLine.getStatusCode(); + + if (mStatusCode != 200) { + httpclient.getConnectionManager().shutdown(); + throw new JSONParserStatusCodeException(mStatusCode); + } + + HttpEntity httpEntity = httpResponse.getEntity(); + is = httpEntity.getContent(); + + xmlFactoryObject = XmlPullParserFactory.newInstance(); + xmlParser = xmlFactoryObject.newPullParser(); + + xmlParser.setFeature(XmlPullParser.FEATURE_PROCESS_NAMESPACES, false); + xmlParser.setInput(is, null); + + + event = xmlParser.getEventType(); + + // Get Channel info + String name; + RSSFeedItem item = null; + List items = new ArrayList(); + + // Get items + while (event != XmlPullParser.END_DOCUMENT && header) { + + + name = xmlParser.getName(); + + switch (event) { + case XmlPullParser.START_TAG: + + if (name != null && name.equals("item")) { + header = false; + } + + break; + + case XmlPullParser.TEXT: + text = xmlParser.getText(); + break; + + case XmlPullParser.END_TAG: + + if (name.equals("title")) { + if (header) { + rssFeed.setChannelTitle(text); + } + } else if (name.equals("description")) { + if (header) { + } + } else if (name.equals("link")) { + if (header) { + rssFeed.setChannelLink(text); + } + + } + + break; + } + + event = xmlParser.next(); + + + } + is.close(); + } catch (Exception e) { + Log.e("Debug", "RSSFeedParser - : " + e.toString()); + } finally { + // When HttpClient instance is no longer needed, + // shut down the connection manager to ensure + // immediate deallocation of all system resources + httpclient.getConnectionManager().shutdown(); + } + + // return JSON String + return rssFeed; + + + } + + public DefaultHttpClient getNewHttpClient() { + try { + KeyStore trustStore = KeyStore.getInstance(KeyStore.getDefaultType()); + trustStore.load(null, null); + + MySSLSocketFactory sf = new MySSLSocketFactory(trustStore); + sf.setHostnameVerifier(org.apache.http.conn.ssl.SSLSocketFactory.ALLOW_ALL_HOSTNAME_VERIFIER); + + HttpParams params = new BasicHttpParams(); + +// HttpProtocolParams.setVersion(params, HttpVersion.HTTP_1_1); +// HttpProtocolParams.setContentCharset(params, HTTP.UTF_8); + + SchemeRegistry registry = new SchemeRegistry(); + registry.register(new Scheme("http", PlainSocketFactory.getSocketFactory(), 80)); + registry.register(new Scheme("https", sf, 443)); + + ClientConnectionManager ccm = new ThreadSafeClientConnManager(params, registry); + + return new DefaultHttpClient(ccm, params); + } catch (Exception e) { + return new DefaultHttpClient(); + } + } +} diff --git a/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/RSSItemActivity.java b/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/RSSItemActivity.java new file mode 100644 index 00000000..c0e643fa --- /dev/null +++ b/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/RSSItemActivity.java @@ -0,0 +1,176 @@ +package com.lgallardo.qbittorrentclient; + +import android.content.Intent; +import android.net.Uri; +import android.os.Build; +import android.os.Bundle; +import android.support.v4.widget.SwipeRefreshLayout; +import android.support.v7.app.AppCompatActivity; +import android.support.v7.widget.Toolbar; +import android.view.Menu; +import android.view.MenuItem; +import android.view.View; +import android.widget.AdapterView; +import android.widget.ListView; + +import java.util.ArrayList; + +public class RSSItemActivity extends AppCompatActivity { + + Toolbar toolbar; + public static SwipeRefreshLayout mSwipeRefreshLayout; + public static int rssChannelPosition; + public static RSSFeedItemListAdapter myItemsAdapter; + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + + + // Set Theme (It must be fore inflating or setContentView) + if (MainActivity.dark_ui) { + this.setTheme(R.style.Theme_Dark); + + if (Build.VERSION.SDK_INT >= 21) { + getWindow().setNavigationBarColor(getResources().getColor(R.color.Theme_Dark_toolbarBackground)); + getWindow().setStatusBarColor(getResources().getColor(R.color.Theme_Dark_toolbarBackground)); + } + } else { + this.setTheme(R.style.Theme_Light); + + if (Build.VERSION.SDK_INT >= 21) { + getWindow().setNavigationBarColor(getResources().getColor(R.color.primary)); + } + + } + + setContentView(R.layout.activity_rssitem); + + + toolbar = (Toolbar) findViewById(R.id.app_bar); + + if (MainActivity.dark_ui) { + toolbar.setBackgroundColor(getResources().getColor(R.color.Theme_Dark_primary)); + + // Force backgroud (for some weird reason this activity is not taking the dark background) + + // Find the root view + View root = toolbar.getRootView(); + + // Set the color + root.setBackgroundColor(getResources().getColor(R.color.Theme_Dark_windowBackground)); + } + + + + setSupportActionBar(toolbar); + + getSupportActionBar().setDisplayHomeAsUpEnabled(true); + getSupportActionBar().setHomeButtonEnabled(false); + + + // Set App title + setTitle(R.string.action_rss); + + Intent intent = getIntent(); + + if (intent != null) { + rssChannelPosition = intent.getIntExtra("position", 0); + } + + + // Get Channel Feed + RSSFeed rssFeed = (RSSFeedActivity.myadapter.getRssChannels()).get(rssChannelPosition); + + ArrayList items = rssFeed.getItems(); + +// Log.d("Debug", "Items size: " + items.size()); +// +// for(int i=0; i < items.size(); i++){ +// +// Log.d("Debug", "Item Title: " + items.get(i).getTitle()); +// } + + + // Get ListView object from xml + ListView listView = (ListView) findViewById(R.id.items_list); + + // Listener for listview + listView.setOnItemClickListener(new AdapterView.OnItemClickListener() { + @Override + public void onItemClick(AdapterView av, View v, int pos, long id) { + onListItemClick(v, pos, id); + } + }); + + + myItemsAdapter = new RSSFeedItemListAdapter(this, items); + + listView.setAdapter(myItemsAdapter); + + + } + + @Override + protected void onNewIntent(Intent intent) { + + rssChannelPosition = 0; + + if (intent != null) { + rssChannelPosition = intent.getIntExtra("position", 0); + } + + + } + + private void onListItemClick(View v, int pos, long id) { +// Log.i("Debug", "RSS Item - onListItemClick id=" + id); +// Log.i("Debug", "RSS Item - onListItemClick pos=" + pos); + + RSSFeedItem item= myItemsAdapter.getItems().get(pos); + +// Log.i("Debug", "RSS Item - Title =" + item.getTitle()); +// Log.i("Debug", "RSS Item - Torrent URL =" + item.getTorrentUrl()); +// Log.i("Debug", "RSS Item - PubDate =" + item.getPubDate()); + + Uri uri = Uri.parse(item.getTorrentUrl()); + + + // Send torrent to qBittorrent App + Intent intent = new Intent(getBaseContext(), com.lgallardo.qbittorrentclient.MainActivity.class); + +// // Send torrent to generic torrent app +// Intent intent = new Intent(Intent.ACTION_VIEW); + + intent.setData(uri); + + intent.putExtra("from", "RSSItemActivity"); + startActivity(intent); + + + } + + @Override + public boolean onCreateOptionsMenu(Menu menu) { + // Inflate the menu; this adds items to the action bar if it is present. +// getMenuInflater().inflate(R.menu.menu_rssitem, menu); + return true; + } + + @Override + public boolean onOptionsItemSelected(MenuItem item) { + // Handle action bar item clicks here. The action bar will + // automatically handle clicks on the Home/Up button, so long + // as you specify a parent activity in AndroidManifest.xml. + + switch (item.getItemId()) { + case android.R.id.home: + finish(); + return true; + default: + return super.onOptionsItemSelected(item); + } + } + + +} diff --git a/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/RSSService.java b/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/RSSService.java new file mode 100644 index 00000000..90ca1a26 --- /dev/null +++ b/qBittorrentClient/app/src/main/java/com/lgallardo/qbittorrentclient/RSSService.java @@ -0,0 +1,492 @@ +package com.lgallardo.qbittorrentclient; + +import android.app.Notification; +import android.app.Notification.InboxStyle; +import android.app.NotificationManager; +import android.app.PendingIntent; +import android.content.BroadcastReceiver; +import android.content.Context; +import android.content.Intent; +import android.content.SharedPreferences; +import android.os.AsyncTask; +import android.preference.PreferenceManager; +import android.util.Log; + +import java.text.SimpleDateFormat; +import java.util.ArrayList; +import java.util.Date; +import java.util.HashMap; +import java.util.Locale; + +/** + * Created by lgallard on 2/22/15. + */ +public class RSSService extends BroadcastReceiver { + + public static String qb_version = "3.1.x"; + public static String completed_hashes; + // Cookie (SID - Session ID) + public static String cookie = null; + protected static HashMap last_completed, completed, notify; + protected static String hostname; + protected static String subfolder; + protected static int port; + protected static String protocol; + protected static String username; + protected static String password; + protected static boolean https; + + protected static int connection_timeout; + protected static int data_timeout; + protected static String sortby; + + protected static String lastState; + protected static int httpStatusCode = 0; + protected static int currentServer; + protected static boolean enable_notifications; + + private static String[] params = new String[2]; + private static Context context; + + // Preferences fields + private SharedPreferences sharedPrefs; + private StringBuilder builderPrefs; + private String qbQueryString = "query"; + private static String rss_feeds; + + + public RSSService() { + super(); + + } + + @Override + public void onReceive(Context context, Intent intent) { + + this.context = context; + + getSettings(); + + + String state = "all"; + + // Get Settings params? + + if (qb_version.equals("2.x")) { + qbQueryString = "json"; + params[0] = qbQueryString + "/events"; + } + + if (qb_version.equals("3.1.x")) { + qbQueryString = "json"; + params[0] = qbQueryString + "/torrents"; + } + + if (qb_version.equals("3.2.x")) { + qbQueryString = "query"; + params[0] = qbQueryString + "/torrents?filter=" + state; + + if (cookie == null || cookie.equals("")) { + new qBittorrentCookie().execute(); + } + +// Log.i("onReceive", "Cookie:" + cookie); + + } + + params[1] = state; + + // Refresh all RSS feeds + new rssFeedsTask().execute(); + + + } + + protected void getSettings() { + // Preferences stuff + sharedPrefs = PreferenceManager.getDefaultSharedPreferences(context); + + builderPrefs = new StringBuilder(); + + builderPrefs.append("\n" + sharedPrefs.getString("language", "NULL")); + + // Get values from preferences + currentServer = Integer.parseInt(sharedPrefs.getString("currentServer", "1")); + + hostname = sharedPrefs.getString("hostname", ""); + subfolder = sharedPrefs.getString("subfolder", ""); + + protocol = sharedPrefs.getString("protocol", "NULL"); + + // If user leave the field empty, set 8080 port + try { + port = Integer.parseInt(sharedPrefs.getString("port", "8080")); + } catch (NumberFormatException e) { + port = 8080; + + } + username = sharedPrefs.getString("username", "NULL"); + password = sharedPrefs.getString("password", "NULL"); + https = sharedPrefs.getBoolean("https", false); + + // Check https + if (https) { + protocol = "https"; + + } else { + protocol = "http"; + } + + + // Get connection and data timeouts + try { + connection_timeout = Integer.parseInt(sharedPrefs.getString("connection_timeout", "10")); + } catch (NumberFormatException e) { + connection_timeout = 10; + } + + try { + data_timeout = Integer.parseInt(sharedPrefs.getString("data_timeout", "20")); + } catch (NumberFormatException e) { + data_timeout = 20; + } + + + qb_version = sharedPrefs.getString("qb_version", "3.1.x"); + + + cookie = sharedPrefs.getString("qbCookie2", null); + + // Get last state + lastState = sharedPrefs.getString("lastState", null); + + // Get values from options + rss_feeds = sharedPrefs.getString("rss_feeds", ""); + + + } + + + public void saveRssFeed(String title, String link, String pubDate, boolean autoDownload, boolean notifyNew) { + + String autoDownloadValue = Boolean.toString(autoDownload); + String notifyNewValue = Boolean.toString(notifyNew); + + + // Save options locally + sharedPrefs = PreferenceManager.getDefaultSharedPreferences(context); + SharedPreferences.Editor editor = sharedPrefs.edit(); + + // Save rss_feeds + if (rss_feeds.equals("")) { + + rss_feeds = title + ";" + link + ";" + pubDate + ";" + autoDownloadValue + ";" + notifyNewValue; + + } else { + rss_feeds = rss_feeds + "|" + title + ";" + link + ";" + pubDate + ";" + autoDownloadValue + ";" + notifyNewValue; + + } + + Log.d("Debug", "rss_feeds: " + rss_feeds); + + editor.putString("rss_feeds", rss_feeds); + // Commit changes + editor.apply(); + + + } + + + private class qBittorrentCommand extends AsyncTask { + + @Override + protected String doInBackground(String... params) { + + // Get values from preferences + getSettings(); + + // Creating new JSON Parser + com.lgallardo.qbittorrentclient.JSONParser jParser = new com.lgallardo.qbittorrentclient.JSONParser(hostname, subfolder, protocol, port, username, password, connection_timeout, data_timeout); + + jParser.setCookie(cookie); + + try { + + jParser.postCommand(params[0], params[1]); + + } catch (JSONParserStatusCodeException e) { + + httpStatusCode = e.getCode(); + + } + + return params[0]; + + } + + @Override + protected void onPostExecute(String result) { + + } + } + + private class qBittorrentCookie extends AsyncTask { + + @Override + protected String[] doInBackground(Void... params) { + + // Get values from preferences + getSettings(); + + + // Creating new JSON Parser + JSONParser jParser = new JSONParser(hostname, subfolder, protocol, port, username, password, connection_timeout, data_timeout); + + String cookie = ""; + String api = ""; + + + try { + + cookie = jParser.getNewCookie(); +// api = jParser.getApiVersion(); + + } catch (JSONParserStatusCodeException e) { + + httpStatusCode = e.getCode(); + Log.i("Notifier", "httpStatusCode: " + httpStatusCode); + + } + + if (cookie == null) { + cookie = ""; + + } + + if (api == null) { + api = ""; + + } + + return new String[]{cookie, api}; + + } + + @Override + protected void onPostExecute(String[] result) { + + + cookie = result[0]; + + + // Save options locally + sharedPrefs = PreferenceManager.getDefaultSharedPreferences(context); + SharedPreferences.Editor editor = sharedPrefs.edit(); + + // Save key-values + editor.putString("qbCookie2", result[0]); + + + // Commit changes + editor.apply(); + + } + } + + // Here is where the action happens + private class rssFeedsTask extends AsyncTask> { + @Override + protected ArrayList doInBackground(String... params) { + + + ArrayList feeds = new ArrayList(); + + String[] rss_feeds_lines = rss_feeds.split("\\|"); + + + for (int i = 0; rss_feeds_lines.length > i; i++) { + + + String[] feedValues = rss_feeds_lines[i].split(";"); + + + // Retrieve feed + if (feedValues.length > 0 && !feedValues[0].isEmpty()) { + + if (feedValues.length > 1) { + + RSSFeed rssFeed = new RSSFeed(); + + try { + + RSSFeedParser rssFeedParser = new RSSFeedParser(); + rssFeed = rssFeedParser.getRSSFeed(feedValues[0], feedValues[1]); + rssFeed.setAutodDownload(Boolean.parseBoolean(feedValues[3])); + rssFeed.setNotifyNew(Boolean.parseBoolean(feedValues[4])); + + } catch (Exception e) { + Log.e("Debug", e.getMessage()); + Log.e("Debug", e.toString()); + e.printStackTrace(); + } + + // Add feed, no matter if it's empty + feeds.add(rssFeed); + + + } + + } + + } + + return feeds; + } + + @Override + protected void onPostExecute(ArrayList result) { + + boolean gotItems= false; + + if (result != null && result.size() > 0) { + + String info = ""; + + Intent intent = new Intent(context, MainActivity.class); + intent.putExtra("from", "RSSService"); + PendingIntent pIntent = PendingIntent.getActivity(context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT); + + // Build notification + // the addAction re-use the same intent to keep the example short + Notification.Builder builder = new Notification.Builder(context) + .setContentTitle(RSSService.context.getString(R.string.notifications_rss_available)) + .setContentText(info) + .setSmallIcon(R.drawable.ic_rss_notification) + .setContentIntent(pIntent) + .setAutoCancel(true); + + + NotificationManager notificationManager = (NotificationManager) context.getSystemService(context.NOTIFICATION_SERVICE); + + Notification notification = null; + + if (android.os.Build.VERSION.SDK_INT >= 16) { + + // Define and Inbox + InboxStyle inbox = new InboxStyle(builder); + + inbox.setBigContentTitle(RSSService.context.getString(R.string.notifications_rss_available)); + + for (int i = 0; i < result.size(); i++) { + + // Notify new torrents + RSSFeed rssFeed = result.get(i); + + ArrayList items = rssFeed.getItems(); + + if(items.size() > 0){ + gotItems = true; + } + + + for (int j = 0; j < items.size(); j++) { + + // Notify new available torrents + if (rssFeed.getNotifyNew() && j < 4) { + + + SimpleDateFormat sdf = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss", Locale.ENGLISH); + boolean notifyFeed = false; + + try { + + Date channelPubDate = sdf.parse(rssFeed.getChannelPubDate()); + Date itemPubDate = sdf.parse(items.get(j).getPubDate()); + + // itemPubDate is after channelPubDate + if (itemPubDate.compareTo(channelPubDate) > 0) { + notifyFeed = true; + } + + } catch (Exception e) { + Log.e("Debug", "RSS Service: " + e.toString()); + } + + if (notifyFeed) { + inbox.addLine(items.get(j).getTitle()); + } + } + + + // Send torrent for autodownload + if (rssFeed.getAutodDownload()) { + + // Execute the task in background + qBittorrentCommand qtc = new qBittorrentCommand(); + qtc.execute(new String[]{"addTorrent", items.get(j).getTorrentUrl()}); + + } + + // Save new Channel pubDate + rssFeed.setChannelPubDate(items.get(0).getPubDate()); + + //Save modified feed into result + result.set(i, rssFeed); + + + } + + } + + // Save all; + rss_feeds = ""; + for (int k = 0; k < result.size(); k++) { + RSSFeed rssFeed = result.get(k); + + saveRssFeed(rssFeed.getChannelTitle(), rssFeed.getChannelLink(), rssFeed.getChannelPubDate(), rssFeed.getAutodDownload(), rssFeed.getNotifyNew()); + } + + + if(gotItems) { + inbox.setSummaryText(result.get(0).getChannelTitle()); + notification = inbox.build(); + } + + } else { + notification = builder.getNotification(); + + for (int i = 0; i < result.size(); i++) { + // Notify new torrents + RSSFeed rssFeed = result.get(i); + + ArrayList items = rssFeed.getItems(); + + // Save new Channel pubDate + rssFeed.setChannelPubDate(items.get(0).getPubDate()); + + //Save modified feed into result + result.set(i, rssFeed); + } + + + // Save all; + rss_feeds = ""; + for (int k = 0; k < result.size(); k++) { + RSSFeed rssFeed = result.get(k); + + saveRssFeed(rssFeed.getChannelTitle(), rssFeed.getChannelLink(), rssFeed.getChannelPubDate(), rssFeed.getAutodDownload(), rssFeed.getNotifyNew()); + } + } + + if(gotItems && notification != null) { + notificationManager.notify(0, notification); + } + + } + + } + } + + +} + diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi-v11/ic_rss_notification.png b/qBittorrentClient/app/src/main/res/drawable-hdpi-v11/ic_rss_notification.png new file mode 100644 index 00000000..5fc8228d Binary files /dev/null and b/qBittorrentClient/app/src/main/res/drawable-hdpi-v11/ic_rss_notification.png differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi-v9/ic_rss_notification.png b/qBittorrentClient/app/src/main/res/drawable-hdpi-v9/ic_rss_notification.png new file mode 100644 index 00000000..70018ece Binary files /dev/null and b/qBittorrentClient/app/src/main/res/drawable-hdpi-v9/ic_rss_notification.png differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/ab_bottom_solid_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/ab_bottom_solid_theme_dark.9.png deleted file mode 100644 index 9f1bf681..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/ab_bottom_solid_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/ab_solid_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/ab_solid_theme_dark.9.png deleted file mode 100644 index d431708b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/ab_solid_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/ab_stacked_solid_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/ab_stacked_solid_theme_dark.9.png deleted file mode 100644 index 005445ac..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/ab_stacked_solid_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/ab_texture_tile_theme_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/ab_texture_tile_theme_dark.png deleted file mode 100644 index 556c504c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/ab_texture_tile_theme_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/ab_transparent_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/ab_transparent_theme_dark.9.png deleted file mode 100644 index c58997f1..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/ab_transparent_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/btn_cab_done_default_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/btn_cab_done_default_theme_dark.9.png deleted file mode 100644 index c8d351ed..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/btn_cab_done_default_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/btn_cab_done_focused_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/btn_cab_done_focused_theme_dark.9.png deleted file mode 100644 index d3c46282..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/btn_cab_done_focused_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/btn_cab_done_pressed_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/btn_cab_done_pressed_theme_dark.9.png deleted file mode 100644 index 42cd738e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/btn_cab_done_pressed_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/cab_background_bottom_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/cab_background_bottom_theme_dark.9.png deleted file mode 100644 index f7adb436..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/cab_background_bottom_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/cab_background_top_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/cab_background_top_theme_dark.9.png deleted file mode 100644 index 73242850..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/cab_background_top_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/error2.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/error2.png new file mode 100644 index 00000000..7dc34f34 Binary files /dev/null and b/qBittorrentClient/app/src/main/res/drawable-hdpi/error2.png differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/ic_action_add_rss.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/ic_action_add_rss.png new file mode 100644 index 00000000..426f010a Binary files /dev/null and b/qBittorrentClient/app/src/main/res/drawable-hdpi/ic_action_add_rss.png differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/ic_rss_notification.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/ic_rss_notification.png new file mode 100644 index 00000000..389d3939 Binary files /dev/null and b/qBittorrentClient/app/src/main/res/drawable-hdpi/ic_rss_notification.png differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/list_focused_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/list_focused_theme_dark.9.png deleted file mode 100644 index 426d73fb..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/list_focused_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/list_pressed_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/list_pressed_theme_dark.9.png deleted file mode 100644 index 303cfd2d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/list_pressed_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/menu_dropdown_panel_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/menu_dropdown_panel_theme_dark.9.png deleted file mode 100644 index 9e12ec08..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/menu_dropdown_panel_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/okay.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/okay.png new file mode 100644 index 00000000..943e7c68 Binary files /dev/null and b/qBittorrentClient/app/src/main/res/drawable-hdpi/okay.png differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/progress_bg_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/progress_bg_theme_dark.9.png deleted file mode 100644 index 3d5c707d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/progress_bg_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/progress_primary_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/progress_primary_theme_dark.9.png deleted file mode 100644 index 3bc3b3a2..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/progress_primary_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/progress_secondary_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/progress_secondary_theme_dark.9.png deleted file mode 100644 index 6d50e090..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/progress_secondary_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/spinner_ab_default_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/spinner_ab_default_theme_dark.9.png deleted file mode 100644 index 4fd4aeba..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/spinner_ab_default_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/spinner_ab_disabled_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/spinner_ab_disabled_theme_dark.9.png deleted file mode 100644 index d42c97b8..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/spinner_ab_disabled_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/spinner_ab_focused_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/spinner_ab_focused_theme_dark.9.png deleted file mode 100644 index c4b4f8c3..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/spinner_ab_focused_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/spinner_ab_pressed_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/spinner_ab_pressed_theme_dark.9.png deleted file mode 100644 index 39f778c8..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/spinner_ab_pressed_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/tab_selected_focused_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/tab_selected_focused_theme_dark.9.png deleted file mode 100644 index 4d49b21e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/tab_selected_focused_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/tab_selected_pressed_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/tab_selected_pressed_theme_dark.9.png deleted file mode 100644 index 65688cb1..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/tab_selected_pressed_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/tab_selected_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/tab_selected_theme_dark.9.png deleted file mode 100644 index 2d782626..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/tab_selected_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/tab_unselected_focused_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/tab_unselected_focused_theme_dark.9.png deleted file mode 100644 index 57c5f182..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/tab_unselected_focused_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/tab_unselected_pressed_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/tab_unselected_pressed_theme_dark.9.png deleted file mode 100644 index f44171cc..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/tab_unselected_pressed_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/tab_unselected_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/tab_unselected_theme_dark.9.png deleted file mode 100644 index 396b5dd3..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/tab_unselected_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_off_disabled_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_off_disabled_focused_holo_dark.png deleted file mode 100644 index 9fa60a1a..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_off_disabled_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_off_disabled_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_off_disabled_holo_dark.png deleted file mode 100644 index 4bcc51d5..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_off_disabled_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_off_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_off_focused_holo_dark.png deleted file mode 100644 index b2d3c20b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_off_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_off_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_off_holo_dark.png deleted file mode 100644 index 8a463164..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_off_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_off_pressed_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_off_pressed_holo_dark.png deleted file mode 100644 index ba389cca..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_off_pressed_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_on_disabled_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_on_disabled_focused_holo_dark.png deleted file mode 100644 index c453a974..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_on_disabled_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_on_disabled_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_on_disabled_holo_dark.png deleted file mode 100644 index cccd61ef..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_on_disabled_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_on_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_on_focused_holo_dark.png deleted file mode 100644 index 38d1897c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_on_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_on_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_on_holo_dark.png deleted file mode 100644 index bcfabe29..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_on_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_on_pressed_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_on_pressed_holo_dark.png deleted file mode 100644 index e7230558..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_check_on_pressed_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_default_disabled_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_default_disabled_focused_holo_dark.9.png deleted file mode 100644 index f8d5603b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_default_disabled_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_default_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_default_disabled_holo_dark.9.png deleted file mode 100644 index 6a2a92cc..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_default_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_default_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_default_focused_holo_dark.9.png deleted file mode 100644 index f4e1f4d9..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_default_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_default_normal_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_default_normal_holo_dark.9.png deleted file mode 100644 index d87b36b7..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_default_normal_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_default_pressed_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_default_pressed_holo_dark.9.png deleted file mode 100644 index 0e5674a4..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_default_pressed_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_off_disabled_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_off_disabled_focused_holo_dark.png deleted file mode 100644 index 25318383..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_off_disabled_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_off_disabled_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_off_disabled_holo_dark.png deleted file mode 100644 index eb586483..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_off_disabled_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_off_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_off_focused_holo_dark.png deleted file mode 100644 index a5e5fb6e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_off_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_off_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_off_holo_dark.png deleted file mode 100644 index 83845e83..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_off_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_off_pressed_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_off_pressed_holo_dark.png deleted file mode 100644 index 05b150fe..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_off_pressed_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_on_disabled_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_on_disabled_focused_holo_dark.png deleted file mode 100644 index d6c919ce..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_on_disabled_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_on_disabled_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_on_disabled_holo_dark.png deleted file mode 100644 index 6ebb1845..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_on_disabled_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_on_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_on_focused_holo_dark.png deleted file mode 100644 index 967ab994..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_on_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_on_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_on_holo_dark.png deleted file mode 100644 index 293c9ead..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_on_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_on_pressed_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_on_pressed_holo_dark.png deleted file mode 100644 index 196fb3b3..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_radio_on_pressed_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_rating_star_off_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_rating_star_off_focused_holo_dark.png deleted file mode 100644 index fd2afad7..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_rating_star_off_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_rating_star_off_normal_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_rating_star_off_normal_holo_dark.png deleted file mode 100644 index ab86f27d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_rating_star_off_normal_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_rating_star_off_pressed_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_rating_star_off_pressed_holo_dark.png deleted file mode 100644 index 0a761364..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_rating_star_off_pressed_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_rating_star_on_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_rating_star_on_focused_holo_dark.png deleted file mode 100644 index 6285a7ed..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_rating_star_on_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_rating_star_on_normal_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_rating_star_on_normal_holo_dark.png deleted file mode 100644 index 42852051..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_rating_star_on_normal_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_rating_star_on_pressed_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_rating_star_on_pressed_holo_dark.png deleted file mode 100644 index 09ed55ec..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_rating_star_on_pressed_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_off_disabled_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_off_disabled_focused_holo_dark.9.png deleted file mode 100644 index 43e09af0..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_off_disabled_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_off_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_off_disabled_holo_dark.9.png deleted file mode 100644 index 9a0977dd..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_off_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_off_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_off_focused_holo_dark.9.png deleted file mode 100644 index fa35c357..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_off_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_off_normal_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_off_normal_holo_dark.9.png deleted file mode 100644 index 6bf92887..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_off_normal_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_off_pressed_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_off_pressed_holo_dark.9.png deleted file mode 100644 index 84391eaa..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_off_pressed_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_on_disabled_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_on_disabled_focused_holo_dark.9.png deleted file mode 100644 index aac02236..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_on_disabled_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_on_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_on_disabled_holo_dark.9.png deleted file mode 100644 index 0ef47a68..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_on_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_on_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_on_focused_holo_dark.9.png deleted file mode 100644 index d0982722..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_on_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_on_normal_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_on_normal_holo_dark.9.png deleted file mode 100644 index 5846f0fe..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_on_normal_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_on_pressed_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_on_pressed_holo_dark.9.png deleted file mode 100644 index 34570b0c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_btn_toggle_on_pressed_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_fastscroll_thumb_default_holo.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_fastscroll_thumb_default_holo.png deleted file mode 100644 index 9cae3a9d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_fastscroll_thumb_default_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_fastscroll_thumb_pressed_holo.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_fastscroll_thumb_pressed_holo.png deleted file mode 100644 index 2c96b6cc..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_fastscroll_thumb_pressed_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_ic_navigation_drawer.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_ic_navigation_drawer.png deleted file mode 100644 index 6cffc4db..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_ic_navigation_drawer.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_list_activated_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_list_activated_holo.9.png deleted file mode 100644 index a72f9545..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_list_activated_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_list_focused_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_list_focused_holo.9.png deleted file mode 100644 index 0715dadf..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_list_focused_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_list_longpressed_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_list_longpressed_holo.9.png deleted file mode 100644 index d0de5884..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_list_longpressed_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_list_pressed_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_list_pressed_holo_dark.9.png deleted file mode 100644 index 9cd7c556..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_list_pressed_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_list_selector_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_list_selector_disabled_holo_dark.9.png deleted file mode 100644 index f6fd30dc..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_list_selector_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progress_bg_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progress_bg_holo_dark.9.png deleted file mode 100644 index a4c5b8bc..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progress_bg_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progress_primary_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progress_primary_holo_dark.9.png deleted file mode 100644 index 7c062b1c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progress_primary_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progress_secondary_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progress_secondary_holo_dark.9.png deleted file mode 100644 index 66361ec0..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progress_secondary_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progressbar_indeterminate_holo1.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progressbar_indeterminate_holo1.png deleted file mode 100644 index ba4e0454..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progressbar_indeterminate_holo1.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progressbar_indeterminate_holo2.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progressbar_indeterminate_holo2.png deleted file mode 100644 index 1ed5d915..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progressbar_indeterminate_holo2.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progressbar_indeterminate_holo3.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progressbar_indeterminate_holo3.png deleted file mode 100644 index 75124c2c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progressbar_indeterminate_holo3.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progressbar_indeterminate_holo4.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progressbar_indeterminate_holo4.png deleted file mode 100644 index 9f4442fc..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progressbar_indeterminate_holo4.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progressbar_indeterminate_holo5.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progressbar_indeterminate_holo5.png deleted file mode 100644 index 91ac8b91..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progressbar_indeterminate_holo5.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progressbar_indeterminate_holo6.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progressbar_indeterminate_holo6.png deleted file mode 100644 index d711d5b6..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progressbar_indeterminate_holo6.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progressbar_indeterminate_holo7.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progressbar_indeterminate_holo7.png deleted file mode 100644 index bef556a0..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progressbar_indeterminate_holo7.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progressbar_indeterminate_holo8.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progressbar_indeterminate_holo8.png deleted file mode 100644 index c04907e2..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_progressbar_indeterminate_holo8.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_rate_star_big_half_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_rate_star_big_half_holo_dark.png deleted file mode 100644 index a45dadef..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_rate_star_big_half_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_rate_star_big_off_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_rate_star_big_off_holo_dark.png deleted file mode 100644 index af5cd911..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_rate_star_big_off_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_rate_star_big_on_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_rate_star_big_on_holo_dark.png deleted file mode 100644 index 96242b87..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_rate_star_big_on_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_rate_star_small_half_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_rate_star_small_half_holo_dark.png deleted file mode 100644 index 97fcc50f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_rate_star_small_half_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_rate_star_small_off_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_rate_star_small_off_holo_dark.png deleted file mode 100644 index a5ee1719..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_rate_star_small_off_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_rate_star_small_on_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_rate_star_small_on_holo_dark.png deleted file mode 100644 index 9d342ec6..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_rate_star_small_on_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_scrubber_control_disabled_holo.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_scrubber_control_disabled_holo.png deleted file mode 100644 index 0ec7d593..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_scrubber_control_disabled_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_scrubber_control_focused_holo.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_scrubber_control_focused_holo.png deleted file mode 100644 index 00ffcdd5..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_scrubber_control_focused_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_scrubber_control_normal_holo.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_scrubber_control_normal_holo.png deleted file mode 100644 index 734a701a..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_scrubber_control_normal_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_scrubber_control_pressed_holo.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_scrubber_control_pressed_holo.png deleted file mode 100644 index 81b3f1bf..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_scrubber_control_pressed_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_scrubber_primary_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_scrubber_primary_holo.9.png deleted file mode 100644 index 948f5111..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_scrubber_primary_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_scrubber_secondary_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_scrubber_secondary_holo.9.png deleted file mode 100644 index a332108b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_scrubber_secondary_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_scrubber_track_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_scrubber_track_holo_dark.9.png deleted file mode 100644 index 0c0ccda7..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_scrubber_track_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_spinner_default_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_spinner_default_holo_dark.9.png deleted file mode 100644 index 4eaa3420..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_spinner_default_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_spinner_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_spinner_disabled_holo_dark.9.png deleted file mode 100644 index 210832cd..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_spinner_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_spinner_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_spinner_focused_holo_dark.9.png deleted file mode 100644 index 9e579d5c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_spinner_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_spinner_pressed_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_spinner_pressed_holo_dark.9.png deleted file mode 100644 index 5ee58711..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_spinner_pressed_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_switch_bg_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_switch_bg_disabled_holo_dark.9.png deleted file mode 100644 index f2196fd3..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_switch_bg_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_switch_bg_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_switch_bg_focused_holo_dark.9.png deleted file mode 100644 index 877a8ddc..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_switch_bg_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_switch_bg_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_switch_bg_holo_dark.9.png deleted file mode 100644 index 933d99b6..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_switch_bg_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_switch_thumb_activated_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_switch_thumb_activated_holo_dark.9.png deleted file mode 100644 index a51b5cb6..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_switch_thumb_activated_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_switch_thumb_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_switch_thumb_disabled_holo_dark.9.png deleted file mode 100644 index a257e26d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_switch_thumb_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_switch_thumb_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_switch_thumb_holo_dark.9.png deleted file mode 100644 index dd999d6d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_switch_thumb_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_switch_thumb_pressed_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_switch_thumb_pressed_holo_dark.9.png deleted file mode 100644 index dd173b03..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_switch_thumb_pressed_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_tab_selected_focused_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_tab_selected_focused_holo.9.png deleted file mode 100644 index 4e7383ee..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_tab_selected_focused_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_tab_selected_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_tab_selected_holo.9.png deleted file mode 100644 index 57e01171..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_tab_selected_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_tab_selected_pressed_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_tab_selected_pressed_holo.9.png deleted file mode 100644 index 9ffadf11..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_tab_selected_pressed_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_tab_unselected_focused_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_tab_unselected_focused_holo.9.png deleted file mode 100644 index da4e210e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_tab_unselected_focused_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_tab_unselected_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_tab_unselected_holo.9.png deleted file mode 100644 index 1ede55e3..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_tab_unselected_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_tab_unselected_pressed_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_tab_unselected_pressed_holo.9.png deleted file mode 100644 index 1343e580..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_tab_unselected_pressed_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_text_select_handle_left.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_text_select_handle_left.png deleted file mode 100644 index 2d0e7263..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_text_select_handle_left.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_text_select_handle_middle.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_text_select_handle_middle.png deleted file mode 100644 index 9c7024e0..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_text_select_handle_middle.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_text_select_handle_right.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_text_select_handle_right.png deleted file mode 100644 index bb2e1164..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_text_select_handle_right.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_textfield_activated_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_textfield_activated_holo_dark.9.png deleted file mode 100644 index ea56c21a..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_textfield_activated_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_textfield_default_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_textfield_default_holo_dark.9.png deleted file mode 100644 index b7965fc4..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_textfield_default_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_textfield_disabled_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_textfield_disabled_focused_holo_dark.9.png deleted file mode 100644 index 29e33e37..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_textfield_disabled_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_textfield_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_textfield_disabled_holo_dark.9.png deleted file mode 100644 index 73ec37cf..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_textfield_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_textfield_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_textfield_focused_holo_dark.9.png deleted file mode 100644 index f295ee0f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_dark_textfield_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_off_disabled_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_off_disabled_focused_holo_light.png deleted file mode 100644 index 28a71365..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_off_disabled_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_off_disabled_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_off_disabled_holo_light.png deleted file mode 100644 index 9dbad9b9..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_off_disabled_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_off_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_off_focused_holo_light.png deleted file mode 100644 index 884950d0..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_off_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_off_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_off_holo_light.png deleted file mode 100644 index b1b52b23..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_off_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_off_pressed_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_off_pressed_holo_light.png deleted file mode 100644 index d4dcbfe2..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_off_pressed_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_on_disabled_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_on_disabled_focused_holo_light.png deleted file mode 100644 index 034fed57..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_on_disabled_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_on_disabled_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_on_disabled_holo_light.png deleted file mode 100644 index cd02122b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_on_disabled_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_on_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_on_focused_holo_light.png deleted file mode 100644 index 1fd901cb..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_on_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_on_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_on_holo_light.png deleted file mode 100644 index 5171e0b7..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_on_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_on_pressed_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_on_pressed_holo_light.png deleted file mode 100644 index fc6247a4..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_check_on_pressed_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_default_disabled_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_default_disabled_focused_holo_light.9.png deleted file mode 100644 index f8d5603b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_default_disabled_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_default_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_default_disabled_holo_light.9.png deleted file mode 100644 index 6a2a92cc..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_default_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_default_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_default_focused_holo_light.9.png deleted file mode 100644 index f4e1f4d9..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_default_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_default_normal_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_default_normal_holo_light.9.png deleted file mode 100644 index d87b36b7..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_default_normal_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_default_pressed_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_default_pressed_holo_light.9.png deleted file mode 100644 index 9c44190c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_default_pressed_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_off_disabled_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_off_disabled_focused_holo_light.png deleted file mode 100644 index 3768c9dd..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_off_disabled_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_off_disabled_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_off_disabled_holo_light.png deleted file mode 100644 index 25e8e1ba..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_off_disabled_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_off_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_off_focused_holo_light.png deleted file mode 100644 index 0415c804..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_off_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_off_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_off_holo_light.png deleted file mode 100644 index 5021bb43..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_off_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_off_pressed_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_off_pressed_holo_light.png deleted file mode 100644 index 0faa1b35..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_off_pressed_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_on_disabled_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_on_disabled_focused_holo_light.png deleted file mode 100644 index f9bfa9db..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_on_disabled_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_on_disabled_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_on_disabled_holo_light.png deleted file mode 100644 index 6e61b528..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_on_disabled_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_on_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_on_focused_holo_light.png deleted file mode 100644 index bed8b005..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_on_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_on_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_on_holo_light.png deleted file mode 100644 index 83d70580..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_on_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_on_pressed_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_on_pressed_holo_light.png deleted file mode 100644 index 5e5a6e2a..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_radio_on_pressed_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_rating_star_off_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_rating_star_off_focused_holo_light.png deleted file mode 100644 index 8bd9e3cb..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_rating_star_off_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_rating_star_off_normal_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_rating_star_off_normal_holo_light.png deleted file mode 100644 index efce4572..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_rating_star_off_normal_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_rating_star_off_pressed_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_rating_star_off_pressed_holo_light.png deleted file mode 100644 index a6abad1a..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_rating_star_off_pressed_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_rating_star_on_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_rating_star_on_focused_holo_light.png deleted file mode 100644 index da2576f9..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_rating_star_on_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_rating_star_on_normal_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_rating_star_on_normal_holo_light.png deleted file mode 100644 index 0c464fe4..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_rating_star_on_normal_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_rating_star_on_pressed_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_rating_star_on_pressed_holo_light.png deleted file mode 100644 index c574a69a..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_rating_star_on_pressed_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_off_disabled_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_off_disabled_focused_holo_light.9.png deleted file mode 100644 index 43e09af0..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_off_disabled_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_off_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_off_disabled_holo_light.9.png deleted file mode 100644 index a7e6bc3c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_off_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_off_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_off_focused_holo_light.9.png deleted file mode 100644 index fa35c357..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_off_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_off_normal_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_off_normal_holo_light.9.png deleted file mode 100644 index aba55810..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_off_normal_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_off_pressed_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_off_pressed_holo_light.9.png deleted file mode 100644 index e6af9587..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_off_pressed_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_on_disabled_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_on_disabled_focused_holo_light.9.png deleted file mode 100644 index aac02236..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_on_disabled_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_on_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_on_disabled_holo_light.9.png deleted file mode 100644 index 0ef47a68..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_on_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_on_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_on_focused_holo_light.9.png deleted file mode 100644 index d0982722..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_on_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_on_normal_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_on_normal_holo_light.9.png deleted file mode 100644 index 5846f0fe..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_on_normal_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_on_pressed_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_on_pressed_holo_light.9.png deleted file mode 100644 index 675874a9..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_btn_toggle_on_pressed_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_fastscroll_thumb_default_holo.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_fastscroll_thumb_default_holo.png deleted file mode 100644 index 9cae3a9d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_fastscroll_thumb_default_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_fastscroll_thumb_pressed_holo.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_fastscroll_thumb_pressed_holo.png deleted file mode 100644 index 2c96b6cc..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_fastscroll_thumb_pressed_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_ic_navigation_drawer.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_ic_navigation_drawer.png deleted file mode 100644 index 6cffc4db..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_ic_navigation_drawer.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_list_activated_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_list_activated_holo.9.png deleted file mode 100644 index a72f9545..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_list_activated_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_list_focused_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_list_focused_holo.9.png deleted file mode 100644 index 0715dadf..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_list_focused_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_list_longpressed_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_list_longpressed_holo.9.png deleted file mode 100644 index a72f9545..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_list_longpressed_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_list_pressed_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_list_pressed_holo_light.9.png deleted file mode 100644 index f79ab452..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_list_pressed_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_list_selector_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_list_selector_disabled_holo_light.9.png deleted file mode 100644 index ca8e9a27..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_list_selector_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progress_bg_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progress_bg_holo_light.9.png deleted file mode 100644 index 3f12166d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progress_bg_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progress_primary_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progress_primary_holo_light.9.png deleted file mode 100644 index b3fa5db0..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progress_primary_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progress_secondary_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progress_secondary_holo_light.9.png deleted file mode 100644 index 66361ec0..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progress_secondary_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progressbar_indeterminate_holo1.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progressbar_indeterminate_holo1.png deleted file mode 100644 index ba4e0454..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progressbar_indeterminate_holo1.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progressbar_indeterminate_holo2.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progressbar_indeterminate_holo2.png deleted file mode 100644 index 1ed5d915..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progressbar_indeterminate_holo2.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progressbar_indeterminate_holo3.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progressbar_indeterminate_holo3.png deleted file mode 100644 index 75124c2c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progressbar_indeterminate_holo3.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progressbar_indeterminate_holo4.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progressbar_indeterminate_holo4.png deleted file mode 100644 index 9f4442fc..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progressbar_indeterminate_holo4.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progressbar_indeterminate_holo5.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progressbar_indeterminate_holo5.png deleted file mode 100644 index 91ac8b91..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progressbar_indeterminate_holo5.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progressbar_indeterminate_holo6.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progressbar_indeterminate_holo6.png deleted file mode 100644 index d711d5b6..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progressbar_indeterminate_holo6.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progressbar_indeterminate_holo7.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progressbar_indeterminate_holo7.png deleted file mode 100644 index bef556a0..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progressbar_indeterminate_holo7.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progressbar_indeterminate_holo8.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progressbar_indeterminate_holo8.png deleted file mode 100644 index c04907e2..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_progressbar_indeterminate_holo8.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_rate_star_big_half_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_rate_star_big_half_holo_light.png deleted file mode 100644 index e5355d75..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_rate_star_big_half_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_rate_star_big_off_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_rate_star_big_off_holo_light.png deleted file mode 100644 index ebdb47bd..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_rate_star_big_off_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_rate_star_big_on_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_rate_star_big_on_holo_light.png deleted file mode 100644 index 597c2f5c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_rate_star_big_on_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_rate_star_small_half_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_rate_star_small_half_holo_light.png deleted file mode 100644 index fcb57636..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_rate_star_small_half_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_rate_star_small_off_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_rate_star_small_off_holo_light.png deleted file mode 100644 index c7fb6730..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_rate_star_small_off_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_rate_star_small_on_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_rate_star_small_on_holo_light.png deleted file mode 100644 index 25478e83..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_rate_star_small_on_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_scrubber_control_disabled_holo.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_scrubber_control_disabled_holo.png deleted file mode 100644 index 0ec7d593..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_scrubber_control_disabled_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_scrubber_control_focused_holo.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_scrubber_control_focused_holo.png deleted file mode 100644 index 00ffcdd5..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_scrubber_control_focused_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_scrubber_control_normal_holo.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_scrubber_control_normal_holo.png deleted file mode 100644 index 734a701a..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_scrubber_control_normal_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_scrubber_control_pressed_holo.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_scrubber_control_pressed_holo.png deleted file mode 100644 index 81b3f1bf..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_scrubber_control_pressed_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_scrubber_primary_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_scrubber_primary_holo.9.png deleted file mode 100644 index 948f5111..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_scrubber_primary_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_scrubber_secondary_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_scrubber_secondary_holo.9.png deleted file mode 100644 index a332108b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_scrubber_secondary_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_scrubber_track_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_scrubber_track_holo_light.9.png deleted file mode 100644 index 90528b13..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_scrubber_track_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_spinner_default_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_spinner_default_holo_light.9.png deleted file mode 100644 index 4eaa3420..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_spinner_default_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_spinner_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_spinner_disabled_holo_light.9.png deleted file mode 100644 index d0d94197..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_spinner_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_spinner_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_spinner_focused_holo_light.9.png deleted file mode 100644 index 9e579d5c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_spinner_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_spinner_pressed_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_spinner_pressed_holo_light.9.png deleted file mode 100644 index b33a7c76..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_spinner_pressed_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_switch_bg_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_switch_bg_disabled_holo_light.9.png deleted file mode 100644 index f111d823..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_switch_bg_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_switch_bg_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_switch_bg_focused_holo_light.9.png deleted file mode 100644 index 45011005..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_switch_bg_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_switch_bg_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_switch_bg_holo_light.9.png deleted file mode 100644 index 7abe99a5..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_switch_bg_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_switch_thumb_activated_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_switch_thumb_activated_holo_light.9.png deleted file mode 100644 index a51b5cb6..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_switch_thumb_activated_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_switch_thumb_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_switch_thumb_disabled_holo_light.9.png deleted file mode 100644 index a257e26d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_switch_thumb_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_switch_thumb_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_switch_thumb_holo_light.9.png deleted file mode 100644 index dd999d6d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_switch_thumb_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_switch_thumb_pressed_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_switch_thumb_pressed_holo_light.9.png deleted file mode 100644 index e9fd3ad1..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_switch_thumb_pressed_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_tab_selected_focused_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_tab_selected_focused_holo.9.png deleted file mode 100644 index 4e7383ee..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_tab_selected_focused_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_tab_selected_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_tab_selected_holo.9.png deleted file mode 100644 index 57e01171..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_tab_selected_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_tab_selected_pressed_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_tab_selected_pressed_holo.9.png deleted file mode 100644 index 087a122f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_tab_selected_pressed_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_tab_unselected_focused_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_tab_unselected_focused_holo.9.png deleted file mode 100644 index da4e210e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_tab_unselected_focused_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_tab_unselected_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_tab_unselected_holo.9.png deleted file mode 100644 index 1ede55e3..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_tab_unselected_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_tab_unselected_pressed_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_tab_unselected_pressed_holo.9.png deleted file mode 100644 index f989ff03..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_tab_unselected_pressed_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_text_select_handle_left.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_text_select_handle_left.png deleted file mode 100644 index 2d0e7263..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_text_select_handle_left.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_text_select_handle_middle.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_text_select_handle_middle.png deleted file mode 100644 index 9c7024e0..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_text_select_handle_middle.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_text_select_handle_right.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_text_select_handle_right.png deleted file mode 100644 index bb2e1164..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_text_select_handle_right.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_textfield_activated_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_textfield_activated_holo_light.9.png deleted file mode 100644 index ea56c21a..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_textfield_activated_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_textfield_default_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_textfield_default_holo_light.9.png deleted file mode 100644 index 5fa1d031..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_textfield_default_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_textfield_disabled_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_textfield_disabled_focused_holo_light.9.png deleted file mode 100644 index b70db4e1..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_textfield_disabled_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_textfield_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_textfield_disabled_holo_light.9.png deleted file mode 100644 index a77d66d9..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_textfield_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_textfield_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_textfield_focused_holo_light.9.png deleted file mode 100644 index f295ee0f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-hdpi/theme_light_textfield_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi-v11/ic_rss_notification.png b/qBittorrentClient/app/src/main/res/drawable-mdpi-v11/ic_rss_notification.png new file mode 100644 index 00000000..c263ed3d Binary files /dev/null and b/qBittorrentClient/app/src/main/res/drawable-mdpi-v11/ic_rss_notification.png differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi-v9/ic_rss_notification.png b/qBittorrentClient/app/src/main/res/drawable-mdpi-v9/ic_rss_notification.png new file mode 100644 index 00000000..2ea9b322 Binary files /dev/null and b/qBittorrentClient/app/src/main/res/drawable-mdpi-v9/ic_rss_notification.png differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/ab_bottom_solid_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/ab_bottom_solid_theme_dark.9.png deleted file mode 100644 index 76f68b8d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/ab_bottom_solid_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/ab_solid_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/ab_solid_theme_dark.9.png deleted file mode 100644 index a5826a23..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/ab_solid_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/ab_stacked_solid_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/ab_stacked_solid_theme_dark.9.png deleted file mode 100644 index fd09cb18..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/ab_stacked_solid_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/ab_texture_tile_theme_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/ab_texture_tile_theme_dark.png deleted file mode 100644 index d0331c09..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/ab_texture_tile_theme_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/ab_transparent_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/ab_transparent_theme_dark.9.png deleted file mode 100644 index d101b074..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/ab_transparent_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/btn_cab_done_default_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/btn_cab_done_default_theme_dark.9.png deleted file mode 100644 index 70f1520f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/btn_cab_done_default_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/btn_cab_done_focused_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/btn_cab_done_focused_theme_dark.9.png deleted file mode 100644 index be794842..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/btn_cab_done_focused_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/btn_cab_done_pressed_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/btn_cab_done_pressed_theme_dark.9.png deleted file mode 100644 index 23034e02..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/btn_cab_done_pressed_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/cab_background_bottom_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/cab_background_bottom_theme_dark.9.png deleted file mode 100644 index 1c49ba0b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/cab_background_bottom_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/cab_background_top_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/cab_background_top_theme_dark.9.png deleted file mode 100644 index d19d5b3f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/cab_background_top_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/error2.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/error2.png new file mode 100644 index 00000000..cf9e8065 Binary files /dev/null and b/qBittorrentClient/app/src/main/res/drawable-mdpi/error2.png differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/ic_action_add_rss.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/ic_action_add_rss.png new file mode 100644 index 00000000..382a806d Binary files /dev/null and b/qBittorrentClient/app/src/main/res/drawable-mdpi/ic_action_add_rss.png differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/ic_rss_notification.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/ic_rss_notification.png new file mode 100644 index 00000000..9465c338 Binary files /dev/null and b/qBittorrentClient/app/src/main/res/drawable-mdpi/ic_rss_notification.png differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/list_focused_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/list_focused_theme_dark.9.png deleted file mode 100644 index 4d3bcbfe..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/list_focused_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/list_pressed_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/list_pressed_theme_dark.9.png deleted file mode 100644 index 077363a8..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/list_pressed_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/menu_dropdown_panel_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/menu_dropdown_panel_theme_dark.9.png deleted file mode 100644 index f1999201..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/menu_dropdown_panel_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/okay.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/okay.png new file mode 100644 index 00000000..037994f3 Binary files /dev/null and b/qBittorrentClient/app/src/main/res/drawable-mdpi/okay.png differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/progress_bg_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/progress_bg_theme_dark.9.png deleted file mode 100644 index 9372a60f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/progress_bg_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/progress_primary_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/progress_primary_theme_dark.9.png deleted file mode 100644 index 18a10d9d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/progress_primary_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/progress_secondary_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/progress_secondary_theme_dark.9.png deleted file mode 100644 index 6196d8b8..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/progress_secondary_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/spinner_ab_default_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/spinner_ab_default_theme_dark.9.png deleted file mode 100644 index 9aeafee2..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/spinner_ab_default_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/spinner_ab_disabled_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/spinner_ab_disabled_theme_dark.9.png deleted file mode 100644 index 88dd4415..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/spinner_ab_disabled_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/spinner_ab_focused_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/spinner_ab_focused_theme_dark.9.png deleted file mode 100644 index 757f15b7..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/spinner_ab_focused_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/spinner_ab_pressed_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/spinner_ab_pressed_theme_dark.9.png deleted file mode 100644 index 73922383..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/spinner_ab_pressed_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/tab_selected_focused_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/tab_selected_focused_theme_dark.9.png deleted file mode 100644 index a6523c2e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/tab_selected_focused_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/tab_selected_pressed_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/tab_selected_pressed_theme_dark.9.png deleted file mode 100644 index 1eb92c10..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/tab_selected_pressed_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/tab_selected_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/tab_selected_theme_dark.9.png deleted file mode 100644 index 2660743a..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/tab_selected_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/tab_unselected_focused_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/tab_unselected_focused_theme_dark.9.png deleted file mode 100644 index 0fa12dbf..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/tab_unselected_focused_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/tab_unselected_pressed_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/tab_unselected_pressed_theme_dark.9.png deleted file mode 100644 index 2c13a555..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/tab_unselected_pressed_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/tab_unselected_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/tab_unselected_theme_dark.9.png deleted file mode 100644 index 1cf30026..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/tab_unselected_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_off_disabled_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_off_disabled_focused_holo_dark.png deleted file mode 100644 index fb3d3432..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_off_disabled_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_off_disabled_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_off_disabled_holo_dark.png deleted file mode 100644 index 654d449b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_off_disabled_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_off_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_off_focused_holo_dark.png deleted file mode 100644 index bbfb770f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_off_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_off_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_off_holo_dark.png deleted file mode 100644 index a02c5631..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_off_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_off_pressed_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_off_pressed_holo_dark.png deleted file mode 100644 index 9a91dedf..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_off_pressed_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_on_disabled_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_on_disabled_focused_holo_dark.png deleted file mode 100644 index ebb1e44d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_on_disabled_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_on_disabled_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_on_disabled_holo_dark.png deleted file mode 100644 index e180ea76..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_on_disabled_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_on_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_on_focused_holo_dark.png deleted file mode 100644 index 85921d75..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_on_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_on_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_on_holo_dark.png deleted file mode 100644 index 4faaa189..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_on_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_on_pressed_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_on_pressed_holo_dark.png deleted file mode 100644 index ebc64cb6..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_check_on_pressed_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_default_disabled_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_default_disabled_focused_holo_dark.9.png deleted file mode 100644 index 45c79ddf..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_default_disabled_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_default_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_default_disabled_holo_dark.9.png deleted file mode 100644 index d424a0e7..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_default_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_default_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_default_focused_holo_dark.9.png deleted file mode 100644 index 2ca1a07f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_default_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_default_normal_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_default_normal_holo_dark.9.png deleted file mode 100644 index eb43d9cf..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_default_normal_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_default_pressed_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_default_pressed_holo_dark.9.png deleted file mode 100644 index 8377af79..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_default_pressed_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_off_disabled_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_off_disabled_focused_holo_dark.png deleted file mode 100644 index 1b5f6266..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_off_disabled_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_off_disabled_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_off_disabled_holo_dark.png deleted file mode 100644 index 20d3d772..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_off_disabled_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_off_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_off_focused_holo_dark.png deleted file mode 100644 index d7ec2199..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_off_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_off_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_off_holo_dark.png deleted file mode 100644 index 94e0ebe3..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_off_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_off_pressed_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_off_pressed_holo_dark.png deleted file mode 100644 index 1f488863..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_off_pressed_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_on_disabled_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_on_disabled_focused_holo_dark.png deleted file mode 100644 index 59e4028a..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_on_disabled_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_on_disabled_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_on_disabled_holo_dark.png deleted file mode 100644 index 605af763..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_on_disabled_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_on_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_on_focused_holo_dark.png deleted file mode 100644 index 673a979e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_on_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_on_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_on_holo_dark.png deleted file mode 100644 index 70dca2cb..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_on_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_on_pressed_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_on_pressed_holo_dark.png deleted file mode 100644 index 5f367904..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_radio_on_pressed_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_rating_star_off_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_rating_star_off_focused_holo_dark.png deleted file mode 100644 index 0792be41..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_rating_star_off_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_rating_star_off_normal_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_rating_star_off_normal_holo_dark.png deleted file mode 100644 index d37777e2..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_rating_star_off_normal_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_rating_star_off_pressed_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_rating_star_off_pressed_holo_dark.png deleted file mode 100644 index 25cca60a..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_rating_star_off_pressed_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_rating_star_on_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_rating_star_on_focused_holo_dark.png deleted file mode 100644 index 7fb753cd..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_rating_star_on_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_rating_star_on_normal_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_rating_star_on_normal_holo_dark.png deleted file mode 100644 index 24388660..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_rating_star_on_normal_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_rating_star_on_pressed_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_rating_star_on_pressed_holo_dark.png deleted file mode 100644 index 4d16d7f3..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_rating_star_on_pressed_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_off_disabled_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_off_disabled_focused_holo_dark.9.png deleted file mode 100644 index 09c7a5f5..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_off_disabled_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_off_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_off_disabled_holo_dark.9.png deleted file mode 100644 index ae70e801..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_off_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_off_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_off_focused_holo_dark.9.png deleted file mode 100644 index 1de33218..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_off_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_off_normal_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_off_normal_holo_dark.9.png deleted file mode 100644 index 0389f312..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_off_normal_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_off_pressed_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_off_pressed_holo_dark.9.png deleted file mode 100644 index 884dd82d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_off_pressed_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_on_disabled_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_on_disabled_focused_holo_dark.9.png deleted file mode 100644 index 1b84e433..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_on_disabled_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_on_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_on_disabled_holo_dark.9.png deleted file mode 100644 index 0026389b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_on_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_on_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_on_focused_holo_dark.9.png deleted file mode 100644 index ca09608f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_on_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_on_normal_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_on_normal_holo_dark.9.png deleted file mode 100644 index 3562438d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_on_normal_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_on_pressed_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_on_pressed_holo_dark.9.png deleted file mode 100644 index e9a7d00f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_btn_toggle_on_pressed_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_fastscroll_thumb_default_holo.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_fastscroll_thumb_default_holo.png deleted file mode 100644 index 42ab9b7b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_fastscroll_thumb_default_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_fastscroll_thumb_pressed_holo.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_fastscroll_thumb_pressed_holo.png deleted file mode 100644 index 311f84bd..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_fastscroll_thumb_pressed_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_ic_navigation_drawer.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_ic_navigation_drawer.png deleted file mode 100644 index 68ad21f4..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_ic_navigation_drawer.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_list_activated_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_list_activated_holo.9.png deleted file mode 100644 index 5b00577b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_list_activated_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_list_focused_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_list_focused_holo.9.png deleted file mode 100644 index 62501924..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_list_focused_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_list_longpressed_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_list_longpressed_holo.9.png deleted file mode 100644 index f658b2ab..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_list_longpressed_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_list_pressed_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_list_pressed_holo_dark.9.png deleted file mode 100644 index 2de626c0..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_list_pressed_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_list_selector_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_list_selector_disabled_holo_dark.9.png deleted file mode 100644 index 92da2f0d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_list_selector_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progress_bg_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progress_bg_holo_dark.9.png deleted file mode 100644 index b1f5cf33..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progress_bg_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progress_primary_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progress_primary_holo_dark.9.png deleted file mode 100644 index 40aee36c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progress_primary_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progress_secondary_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progress_secondary_holo_dark.9.png deleted file mode 100644 index 85ba4e93..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progress_secondary_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progressbar_indeterminate_holo1.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progressbar_indeterminate_holo1.png deleted file mode 100644 index 6efae7d8..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progressbar_indeterminate_holo1.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progressbar_indeterminate_holo2.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progressbar_indeterminate_holo2.png deleted file mode 100644 index 48e8724a..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progressbar_indeterminate_holo2.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progressbar_indeterminate_holo3.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progressbar_indeterminate_holo3.png deleted file mode 100644 index d78fa1a6..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progressbar_indeterminate_holo3.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progressbar_indeterminate_holo4.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progressbar_indeterminate_holo4.png deleted file mode 100644 index 840d2c3c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progressbar_indeterminate_holo4.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progressbar_indeterminate_holo5.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progressbar_indeterminate_holo5.png deleted file mode 100644 index a8b0302d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progressbar_indeterminate_holo5.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progressbar_indeterminate_holo6.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progressbar_indeterminate_holo6.png deleted file mode 100644 index e5e67ea1..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progressbar_indeterminate_holo6.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progressbar_indeterminate_holo7.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progressbar_indeterminate_holo7.png deleted file mode 100644 index 57549a35..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progressbar_indeterminate_holo7.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progressbar_indeterminate_holo8.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progressbar_indeterminate_holo8.png deleted file mode 100644 index 9844f286..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_progressbar_indeterminate_holo8.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_rate_star_big_half_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_rate_star_big_half_holo_dark.png deleted file mode 100644 index 0ca9bce9..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_rate_star_big_half_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_rate_star_big_off_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_rate_star_big_off_holo_dark.png deleted file mode 100644 index d46012e6..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_rate_star_big_off_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_rate_star_big_on_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_rate_star_big_on_holo_dark.png deleted file mode 100644 index 7a01455a..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_rate_star_big_on_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_rate_star_small_half_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_rate_star_small_half_holo_dark.png deleted file mode 100644 index 62a67f71..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_rate_star_small_half_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_rate_star_small_off_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_rate_star_small_off_holo_dark.png deleted file mode 100644 index b70244b9..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_rate_star_small_off_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_rate_star_small_on_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_rate_star_small_on_holo_dark.png deleted file mode 100644 index e72d5c3e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_rate_star_small_on_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_scrubber_control_disabled_holo.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_scrubber_control_disabled_holo.png deleted file mode 100644 index cf448d65..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_scrubber_control_disabled_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_scrubber_control_focused_holo.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_scrubber_control_focused_holo.png deleted file mode 100644 index 8198765f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_scrubber_control_focused_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_scrubber_control_normal_holo.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_scrubber_control_normal_holo.png deleted file mode 100644 index cb9d09ed..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_scrubber_control_normal_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_scrubber_control_pressed_holo.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_scrubber_control_pressed_holo.png deleted file mode 100644 index 3f6efc97..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_scrubber_control_pressed_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_scrubber_primary_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_scrubber_primary_holo.9.png deleted file mode 100644 index 2b997ed9..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_scrubber_primary_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_scrubber_secondary_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_scrubber_secondary_holo.9.png deleted file mode 100644 index aa384a1e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_scrubber_secondary_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_scrubber_track_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_scrubber_track_holo_dark.9.png deleted file mode 100644 index b91a4ee7..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_scrubber_track_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_spinner_default_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_spinner_default_holo_dark.9.png deleted file mode 100644 index f61cbaeb..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_spinner_default_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_spinner_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_spinner_disabled_holo_dark.9.png deleted file mode 100644 index 2734f20b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_spinner_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_spinner_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_spinner_focused_holo_dark.9.png deleted file mode 100644 index 5882273c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_spinner_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_spinner_pressed_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_spinner_pressed_holo_dark.9.png deleted file mode 100644 index 4de53fa9..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_spinner_pressed_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_switch_bg_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_switch_bg_disabled_holo_dark.9.png deleted file mode 100644 index 76ccb8e9..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_switch_bg_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_switch_bg_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_switch_bg_focused_holo_dark.9.png deleted file mode 100644 index a63951a5..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_switch_bg_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_switch_bg_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_switch_bg_holo_dark.9.png deleted file mode 100644 index b5582b55..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_switch_bg_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_switch_thumb_activated_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_switch_thumb_activated_holo_dark.9.png deleted file mode 100644 index ba81cde8..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_switch_thumb_activated_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_switch_thumb_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_switch_thumb_disabled_holo_dark.9.png deleted file mode 100644 index 82f05d62..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_switch_thumb_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_switch_thumb_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_switch_thumb_holo_dark.9.png deleted file mode 100644 index 9bc7a68e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_switch_thumb_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_switch_thumb_pressed_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_switch_thumb_pressed_holo_dark.9.png deleted file mode 100644 index 7d4dbd93..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_switch_thumb_pressed_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_tab_selected_focused_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_tab_selected_focused_holo.9.png deleted file mode 100644 index 06ec8763..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_tab_selected_focused_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_tab_selected_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_tab_selected_holo.9.png deleted file mode 100644 index 4ab53411..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_tab_selected_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_tab_selected_pressed_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_tab_selected_pressed_holo.9.png deleted file mode 100644 index 0717f4ee..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_tab_selected_pressed_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_tab_unselected_focused_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_tab_unselected_focused_holo.9.png deleted file mode 100644 index f2cbd411..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_tab_unselected_focused_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_tab_unselected_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_tab_unselected_holo.9.png deleted file mode 100644 index ba08c40e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_tab_unselected_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_tab_unselected_pressed_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_tab_unselected_pressed_holo.9.png deleted file mode 100644 index bf1179e2..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_tab_unselected_pressed_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_text_select_handle_left.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_text_select_handle_left.png deleted file mode 100644 index d0f1ffc6..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_text_select_handle_left.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_text_select_handle_middle.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_text_select_handle_middle.png deleted file mode 100644 index 621f0e23..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_text_select_handle_middle.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_text_select_handle_right.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_text_select_handle_right.png deleted file mode 100644 index 27950ad8..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_text_select_handle_right.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_textfield_activated_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_textfield_activated_holo_dark.9.png deleted file mode 100644 index 82ca5da1..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_textfield_activated_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_textfield_default_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_textfield_default_holo_dark.9.png deleted file mode 100644 index 51e3660a..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_textfield_default_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_textfield_disabled_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_textfield_disabled_focused_holo_dark.9.png deleted file mode 100644 index 24bdf710..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_textfield_disabled_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_textfield_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_textfield_disabled_holo_dark.9.png deleted file mode 100644 index 709f5ef9..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_textfield_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_textfield_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_textfield_focused_holo_dark.9.png deleted file mode 100644 index 393a0bb1..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_dark_textfield_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_off_disabled_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_off_disabled_focused_holo_light.png deleted file mode 100644 index 2912305d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_off_disabled_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_off_disabled_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_off_disabled_holo_light.png deleted file mode 100644 index db190430..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_off_disabled_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_off_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_off_focused_holo_light.png deleted file mode 100644 index 2f06e7fa..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_off_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_off_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_off_holo_light.png deleted file mode 100644 index f5eaf804..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_off_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_off_pressed_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_off_pressed_holo_light.png deleted file mode 100644 index b9a73e88..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_off_pressed_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_on_disabled_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_on_disabled_focused_holo_light.png deleted file mode 100644 index ccde1382..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_on_disabled_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_on_disabled_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_on_disabled_holo_light.png deleted file mode 100644 index 20e2aab1..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_on_disabled_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_on_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_on_focused_holo_light.png deleted file mode 100644 index c60ae702..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_on_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_on_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_on_holo_light.png deleted file mode 100644 index 1de2c7ab..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_on_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_on_pressed_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_on_pressed_holo_light.png deleted file mode 100644 index 417dfd68..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_check_on_pressed_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_default_disabled_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_default_disabled_focused_holo_light.9.png deleted file mode 100644 index 45c79ddf..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_default_disabled_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_default_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_default_disabled_holo_light.9.png deleted file mode 100644 index d424a0e7..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_default_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_default_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_default_focused_holo_light.9.png deleted file mode 100644 index 2ca1a07f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_default_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_default_normal_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_default_normal_holo_light.9.png deleted file mode 100644 index eb43d9cf..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_default_normal_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_default_pressed_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_default_pressed_holo_light.9.png deleted file mode 100644 index 1a2ec62d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_default_pressed_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_off_disabled_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_off_disabled_focused_holo_light.png deleted file mode 100644 index f97f70da..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_off_disabled_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_off_disabled_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_off_disabled_holo_light.png deleted file mode 100644 index a67375ec..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_off_disabled_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_off_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_off_focused_holo_light.png deleted file mode 100644 index 8a6921d4..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_off_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_off_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_off_holo_light.png deleted file mode 100644 index 0d81a6ad..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_off_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_off_pressed_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_off_pressed_holo_light.png deleted file mode 100644 index a1cda441..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_off_pressed_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_on_disabled_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_on_disabled_focused_holo_light.png deleted file mode 100644 index edd29a83..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_on_disabled_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_on_disabled_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_on_disabled_holo_light.png deleted file mode 100644 index 4583c3e1..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_on_disabled_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_on_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_on_focused_holo_light.png deleted file mode 100644 index 935ad824..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_on_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_on_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_on_holo_light.png deleted file mode 100644 index 83af1966..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_on_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_on_pressed_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_on_pressed_holo_light.png deleted file mode 100644 index 8a7285f3..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_radio_on_pressed_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_rating_star_off_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_rating_star_off_focused_holo_light.png deleted file mode 100644 index fe8328aa..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_rating_star_off_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_rating_star_off_normal_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_rating_star_off_normal_holo_light.png deleted file mode 100644 index 02038585..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_rating_star_off_normal_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_rating_star_off_pressed_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_rating_star_off_pressed_holo_light.png deleted file mode 100644 index b898604c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_rating_star_off_pressed_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_rating_star_on_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_rating_star_on_focused_holo_light.png deleted file mode 100644 index 8d940ccb..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_rating_star_on_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_rating_star_on_normal_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_rating_star_on_normal_holo_light.png deleted file mode 100644 index 68fc1b9f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_rating_star_on_normal_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_rating_star_on_pressed_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_rating_star_on_pressed_holo_light.png deleted file mode 100644 index fa1fe9d6..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_rating_star_on_pressed_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_off_disabled_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_off_disabled_focused_holo_light.9.png deleted file mode 100644 index 09c7a5f5..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_off_disabled_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_off_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_off_disabled_holo_light.9.png deleted file mode 100644 index 3a35a4e3..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_off_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_off_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_off_focused_holo_light.9.png deleted file mode 100644 index 1de33218..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_off_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_off_normal_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_off_normal_holo_light.9.png deleted file mode 100644 index 37f70c55..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_off_normal_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_off_pressed_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_off_pressed_holo_light.9.png deleted file mode 100644 index f8f758dc..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_off_pressed_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_on_disabled_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_on_disabled_focused_holo_light.9.png deleted file mode 100644 index 1b84e433..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_on_disabled_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_on_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_on_disabled_holo_light.9.png deleted file mode 100644 index 0026389b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_on_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_on_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_on_focused_holo_light.9.png deleted file mode 100644 index ca09608f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_on_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_on_normal_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_on_normal_holo_light.9.png deleted file mode 100644 index 3562438d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_on_normal_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_on_pressed_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_on_pressed_holo_light.9.png deleted file mode 100644 index a5ad6fe5..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_btn_toggle_on_pressed_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_fastscroll_thumb_default_holo.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_fastscroll_thumb_default_holo.png deleted file mode 100644 index 42ab9b7b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_fastscroll_thumb_default_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_fastscroll_thumb_pressed_holo.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_fastscroll_thumb_pressed_holo.png deleted file mode 100644 index 311f84bd..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_fastscroll_thumb_pressed_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_ic_navigation_drawer.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_ic_navigation_drawer.png deleted file mode 100644 index 68ad21f4..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_ic_navigation_drawer.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_list_activated_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_list_activated_holo.9.png deleted file mode 100644 index 5b00577b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_list_activated_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_list_focused_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_list_focused_holo.9.png deleted file mode 100644 index 62501924..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_list_focused_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_list_longpressed_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_list_longpressed_holo.9.png deleted file mode 100644 index 5b00577b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_list_longpressed_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_list_pressed_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_list_pressed_holo_light.9.png deleted file mode 100644 index 448daba7..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_list_pressed_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_list_selector_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_list_selector_disabled_holo_light.9.png deleted file mode 100644 index 42cb6463..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_list_selector_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progress_bg_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progress_bg_holo_light.9.png deleted file mode 100644 index 780b4b25..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progress_bg_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progress_primary_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progress_primary_holo_light.9.png deleted file mode 100644 index a64d559e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progress_primary_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progress_secondary_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progress_secondary_holo_light.9.png deleted file mode 100644 index 85ba4e93..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progress_secondary_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progressbar_indeterminate_holo1.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progressbar_indeterminate_holo1.png deleted file mode 100644 index 6efae7d8..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progressbar_indeterminate_holo1.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progressbar_indeterminate_holo2.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progressbar_indeterminate_holo2.png deleted file mode 100644 index 48e8724a..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progressbar_indeterminate_holo2.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progressbar_indeterminate_holo3.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progressbar_indeterminate_holo3.png deleted file mode 100644 index d78fa1a6..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progressbar_indeterminate_holo3.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progressbar_indeterminate_holo4.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progressbar_indeterminate_holo4.png deleted file mode 100644 index 840d2c3c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progressbar_indeterminate_holo4.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progressbar_indeterminate_holo5.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progressbar_indeterminate_holo5.png deleted file mode 100644 index a8b0302d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progressbar_indeterminate_holo5.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progressbar_indeterminate_holo6.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progressbar_indeterminate_holo6.png deleted file mode 100644 index e5e67ea1..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progressbar_indeterminate_holo6.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progressbar_indeterminate_holo7.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progressbar_indeterminate_holo7.png deleted file mode 100644 index 57549a35..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progressbar_indeterminate_holo7.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progressbar_indeterminate_holo8.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progressbar_indeterminate_holo8.png deleted file mode 100644 index 9844f286..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_progressbar_indeterminate_holo8.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_rate_star_big_half_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_rate_star_big_half_holo_light.png deleted file mode 100644 index a378b485..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_rate_star_big_half_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_rate_star_big_off_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_rate_star_big_off_holo_light.png deleted file mode 100644 index 8ecf0f95..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_rate_star_big_off_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_rate_star_big_on_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_rate_star_big_on_holo_light.png deleted file mode 100644 index ea920530..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_rate_star_big_on_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_rate_star_small_half_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_rate_star_small_half_holo_light.png deleted file mode 100644 index aa33e09f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_rate_star_small_half_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_rate_star_small_off_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_rate_star_small_off_holo_light.png deleted file mode 100644 index bb5c08ce..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_rate_star_small_off_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_rate_star_small_on_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_rate_star_small_on_holo_light.png deleted file mode 100644 index 529820c6..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_rate_star_small_on_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_scrubber_control_disabled_holo.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_scrubber_control_disabled_holo.png deleted file mode 100644 index cf448d65..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_scrubber_control_disabled_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_scrubber_control_focused_holo.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_scrubber_control_focused_holo.png deleted file mode 100644 index 8198765f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_scrubber_control_focused_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_scrubber_control_normal_holo.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_scrubber_control_normal_holo.png deleted file mode 100644 index cb9d09ed..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_scrubber_control_normal_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_scrubber_control_pressed_holo.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_scrubber_control_pressed_holo.png deleted file mode 100644 index 3f6efc97..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_scrubber_control_pressed_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_scrubber_primary_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_scrubber_primary_holo.9.png deleted file mode 100644 index 2b997ed9..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_scrubber_primary_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_scrubber_secondary_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_scrubber_secondary_holo.9.png deleted file mode 100644 index aa384a1e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_scrubber_secondary_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_scrubber_track_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_scrubber_track_holo_light.9.png deleted file mode 100644 index 359ae4a1..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_scrubber_track_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_spinner_default_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_spinner_default_holo_light.9.png deleted file mode 100644 index f61cbaeb..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_spinner_default_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_spinner_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_spinner_disabled_holo_light.9.png deleted file mode 100644 index a78d6c08..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_spinner_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_spinner_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_spinner_focused_holo_light.9.png deleted file mode 100644 index 5882273c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_spinner_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_spinner_pressed_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_spinner_pressed_holo_light.9.png deleted file mode 100644 index e954cbbb..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_spinner_pressed_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_switch_bg_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_switch_bg_disabled_holo_light.9.png deleted file mode 100644 index 1e56c325..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_switch_bg_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_switch_bg_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_switch_bg_focused_holo_light.9.png deleted file mode 100644 index 8d25aac5..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_switch_bg_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_switch_bg_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_switch_bg_holo_light.9.png deleted file mode 100644 index a2af2b5e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_switch_bg_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_switch_thumb_activated_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_switch_thumb_activated_holo_light.9.png deleted file mode 100644 index ba81cde8..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_switch_thumb_activated_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_switch_thumb_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_switch_thumb_disabled_holo_light.9.png deleted file mode 100644 index 82f05d62..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_switch_thumb_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_switch_thumb_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_switch_thumb_holo_light.9.png deleted file mode 100644 index 9bc7a68e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_switch_thumb_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_switch_thumb_pressed_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_switch_thumb_pressed_holo_light.9.png deleted file mode 100644 index f34bfcac..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_switch_thumb_pressed_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_tab_selected_focused_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_tab_selected_focused_holo.9.png deleted file mode 100644 index 06ec8763..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_tab_selected_focused_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_tab_selected_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_tab_selected_holo.9.png deleted file mode 100644 index 4ab53411..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_tab_selected_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_tab_selected_pressed_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_tab_selected_pressed_holo.9.png deleted file mode 100644 index 89e497e6..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_tab_selected_pressed_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_tab_unselected_focused_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_tab_unselected_focused_holo.9.png deleted file mode 100644 index f2cbd411..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_tab_unselected_focused_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_tab_unselected_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_tab_unselected_holo.9.png deleted file mode 100644 index ba08c40e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_tab_unselected_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_tab_unselected_pressed_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_tab_unselected_pressed_holo.9.png deleted file mode 100644 index a33c3410..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_tab_unselected_pressed_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_text_select_handle_left.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_text_select_handle_left.png deleted file mode 100644 index d0f1ffc6..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_text_select_handle_left.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_text_select_handle_middle.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_text_select_handle_middle.png deleted file mode 100644 index 621f0e23..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_text_select_handle_middle.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_text_select_handle_right.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_text_select_handle_right.png deleted file mode 100644 index 27950ad8..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_text_select_handle_right.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_textfield_activated_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_textfield_activated_holo_light.9.png deleted file mode 100644 index 82ca5da1..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_textfield_activated_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_textfield_default_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_textfield_default_holo_light.9.png deleted file mode 100644 index 15efce9b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_textfield_default_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_textfield_disabled_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_textfield_disabled_focused_holo_light.9.png deleted file mode 100644 index 0d5ea839..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_textfield_disabled_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_textfield_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_textfield_disabled_holo_light.9.png deleted file mode 100644 index ea6d2f74..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_textfield_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_textfield_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_textfield_focused_holo_light.9.png deleted file mode 100644 index 393a0bb1..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-mdpi/theme_light_textfield_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi-v11/ic_rss_notification.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi-v11/ic_rss_notification.png new file mode 100644 index 00000000..14a3b707 Binary files /dev/null and b/qBittorrentClient/app/src/main/res/drawable-xhdpi-v11/ic_rss_notification.png differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi-v9/ic_rss_notification.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi-v9/ic_rss_notification.png new file mode 100644 index 00000000..fe622fd8 Binary files /dev/null and b/qBittorrentClient/app/src/main/res/drawable-xhdpi-v9/ic_rss_notification.png differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/ab_bottom_solid_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/ab_bottom_solid_theme_dark.9.png deleted file mode 100644 index 8aca0fec..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/ab_bottom_solid_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/ab_solid_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/ab_solid_theme_dark.9.png deleted file mode 100644 index fb407171..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/ab_solid_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/ab_stacked_solid_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/ab_stacked_solid_theme_dark.9.png deleted file mode 100644 index 29a793d3..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/ab_stacked_solid_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/ab_texture_tile_theme_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/ab_texture_tile_theme_dark.png deleted file mode 100644 index 49b5272f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/ab_texture_tile_theme_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/ab_transparent_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/ab_transparent_theme_dark.9.png deleted file mode 100644 index 671fa845..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/ab_transparent_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/btn_cab_done_default_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/btn_cab_done_default_theme_dark.9.png deleted file mode 100644 index 3521ae38..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/btn_cab_done_default_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/btn_cab_done_focused_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/btn_cab_done_focused_theme_dark.9.png deleted file mode 100644 index 2ae6ea3f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/btn_cab_done_focused_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/btn_cab_done_pressed_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/btn_cab_done_pressed_theme_dark.9.png deleted file mode 100644 index caba86af..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/btn_cab_done_pressed_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/cab_background_bottom_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/cab_background_bottom_theme_dark.9.png deleted file mode 100644 index 19da0c6b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/cab_background_bottom_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/cab_background_top_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/cab_background_top_theme_dark.9.png deleted file mode 100644 index f469c994..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/cab_background_top_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/error2.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/error2.png new file mode 100644 index 00000000..4ca4b5c2 Binary files /dev/null and b/qBittorrentClient/app/src/main/res/drawable-xhdpi/error2.png differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/ic_action_add_rss.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/ic_action_add_rss.png new file mode 100644 index 00000000..2def0e63 Binary files /dev/null and b/qBittorrentClient/app/src/main/res/drawable-xhdpi/ic_action_add_rss.png differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/ic_rss_notification.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/ic_rss_notification.png new file mode 100644 index 00000000..881fa7ea Binary files /dev/null and b/qBittorrentClient/app/src/main/res/drawable-xhdpi/ic_rss_notification.png differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/list_focused_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/list_focused_theme_dark.9.png deleted file mode 100644 index 011da445..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/list_focused_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/list_pressed_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/list_pressed_theme_dark.9.png deleted file mode 100644 index f8b93ae6..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/list_pressed_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/menu_dropdown_panel_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/menu_dropdown_panel_theme_dark.9.png deleted file mode 100644 index 3a04b510..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/menu_dropdown_panel_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/okay.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/okay.png new file mode 100644 index 00000000..7b1f909d Binary files /dev/null and b/qBittorrentClient/app/src/main/res/drawable-xhdpi/okay.png differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/progress_bg_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/progress_bg_theme_dark.9.png deleted file mode 100644 index 8b4853aa..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/progress_bg_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/progress_primary_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/progress_primary_theme_dark.9.png deleted file mode 100644 index bdca8165..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/progress_primary_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/progress_secondary_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/progress_secondary_theme_dark.9.png deleted file mode 100644 index a424a145..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/progress_secondary_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/spinner_ab_default_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/spinner_ab_default_theme_dark.9.png deleted file mode 100644 index 14b1401d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/spinner_ab_default_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/spinner_ab_disabled_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/spinner_ab_disabled_theme_dark.9.png deleted file mode 100644 index c9dfbd60..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/spinner_ab_disabled_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/spinner_ab_focused_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/spinner_ab_focused_theme_dark.9.png deleted file mode 100644 index 1c8d33d0..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/spinner_ab_focused_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/spinner_ab_pressed_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/spinner_ab_pressed_theme_dark.9.png deleted file mode 100644 index 870d2bec..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/spinner_ab_pressed_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/tab_selected_focused_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/tab_selected_focused_theme_dark.9.png deleted file mode 100644 index 0b8b3e9e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/tab_selected_focused_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/tab_selected_pressed_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/tab_selected_pressed_theme_dark.9.png deleted file mode 100644 index bd51d365..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/tab_selected_pressed_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/tab_selected_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/tab_selected_theme_dark.9.png deleted file mode 100644 index aec4e87a..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/tab_selected_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/tab_unselected_focused_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/tab_unselected_focused_theme_dark.9.png deleted file mode 100644 index 3c87dd9c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/tab_unselected_focused_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/tab_unselected_pressed_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/tab_unselected_pressed_theme_dark.9.png deleted file mode 100644 index fd190dbe..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/tab_unselected_pressed_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/tab_unselected_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/tab_unselected_theme_dark.9.png deleted file mode 100644 index d211e8a8..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/tab_unselected_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_off_disabled_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_off_disabled_focused_holo_dark.png deleted file mode 100644 index 48dbd642..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_off_disabled_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_off_disabled_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_off_disabled_holo_dark.png deleted file mode 100644 index 85ab4785..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_off_disabled_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_off_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_off_focused_holo_dark.png deleted file mode 100644 index b4e7e9f4..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_off_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_off_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_off_holo_dark.png deleted file mode 100644 index 497f23b7..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_off_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_off_pressed_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_off_pressed_holo_dark.png deleted file mode 100644 index c9584bf7..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_off_pressed_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_on_disabled_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_on_disabled_focused_holo_dark.png deleted file mode 100644 index e7f1245a..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_on_disabled_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_on_disabled_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_on_disabled_holo_dark.png deleted file mode 100644 index 499147ea..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_on_disabled_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_on_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_on_focused_holo_dark.png deleted file mode 100644 index bb32ff50..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_on_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_on_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_on_holo_dark.png deleted file mode 100644 index 4f8cc17e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_on_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_on_pressed_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_on_pressed_holo_dark.png deleted file mode 100644 index a8741280..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_check_on_pressed_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_default_disabled_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_default_disabled_focused_holo_dark.9.png deleted file mode 100644 index c85a084e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_default_disabled_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_default_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_default_disabled_holo_dark.9.png deleted file mode 100644 index b410d238..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_default_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_default_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_default_focused_holo_dark.9.png deleted file mode 100644 index c3e83611..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_default_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_default_normal_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_default_normal_holo_dark.9.png deleted file mode 100644 index d461aa04..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_default_normal_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_default_pressed_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_default_pressed_holo_dark.9.png deleted file mode 100644 index f1685729..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_default_pressed_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_off_disabled_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_off_disabled_focused_holo_dark.png deleted file mode 100644 index 92ab1b22..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_off_disabled_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_off_disabled_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_off_disabled_holo_dark.png deleted file mode 100644 index aa5f830b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_off_disabled_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_off_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_off_focused_holo_dark.png deleted file mode 100644 index bd014f20..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_off_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_off_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_off_holo_dark.png deleted file mode 100644 index c00bb1c4..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_off_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_off_pressed_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_off_pressed_holo_dark.png deleted file mode 100644 index f37b9e8d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_off_pressed_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_on_disabled_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_on_disabled_focused_holo_dark.png deleted file mode 100644 index 73baaaa8..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_on_disabled_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_on_disabled_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_on_disabled_holo_dark.png deleted file mode 100644 index 346909d3..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_on_disabled_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_on_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_on_focused_holo_dark.png deleted file mode 100644 index 86e8a733..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_on_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_on_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_on_holo_dark.png deleted file mode 100644 index 951e8d32..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_on_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_on_pressed_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_on_pressed_holo_dark.png deleted file mode 100644 index 4d85a316..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_radio_on_pressed_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_rating_star_off_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_rating_star_off_focused_holo_dark.png deleted file mode 100644 index 0d41af96..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_rating_star_off_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_rating_star_off_normal_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_rating_star_off_normal_holo_dark.png deleted file mode 100644 index 63219435..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_rating_star_off_normal_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_rating_star_off_pressed_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_rating_star_off_pressed_holo_dark.png deleted file mode 100644 index 24e0ff90..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_rating_star_off_pressed_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_rating_star_on_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_rating_star_on_focused_holo_dark.png deleted file mode 100644 index e54157c1..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_rating_star_on_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_rating_star_on_normal_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_rating_star_on_normal_holo_dark.png deleted file mode 100644 index 1759ab7e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_rating_star_on_normal_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_rating_star_on_pressed_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_rating_star_on_pressed_holo_dark.png deleted file mode 100644 index 0ce4a4b9..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_rating_star_on_pressed_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_off_disabled_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_off_disabled_focused_holo_dark.9.png deleted file mode 100644 index f8423034..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_off_disabled_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_off_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_off_disabled_holo_dark.9.png deleted file mode 100644 index 79ac6aa2..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_off_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_off_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_off_focused_holo_dark.9.png deleted file mode 100644 index f80275bc..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_off_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_off_normal_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_off_normal_holo_dark.9.png deleted file mode 100644 index 6b206487..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_off_normal_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_off_pressed_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_off_pressed_holo_dark.9.png deleted file mode 100644 index 839a5974..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_off_pressed_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_on_disabled_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_on_disabled_focused_holo_dark.9.png deleted file mode 100644 index b662bf14..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_on_disabled_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_on_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_on_disabled_holo_dark.9.png deleted file mode 100644 index b9c59c7c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_on_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_on_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_on_focused_holo_dark.9.png deleted file mode 100644 index c06a2ed6..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_on_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_on_normal_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_on_normal_holo_dark.9.png deleted file mode 100644 index 13e69a7f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_on_normal_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_on_pressed_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_on_pressed_holo_dark.9.png deleted file mode 100644 index a9236c7a..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_btn_toggle_on_pressed_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_fastscroll_thumb_default_holo.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_fastscroll_thumb_default_holo.png deleted file mode 100644 index 8f22a68f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_fastscroll_thumb_default_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_fastscroll_thumb_pressed_holo.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_fastscroll_thumb_pressed_holo.png deleted file mode 100644 index dc76ab7e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_fastscroll_thumb_pressed_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_ic_navigation_drawer.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_ic_navigation_drawer.png deleted file mode 100644 index 40ccb0c6..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_ic_navigation_drawer.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_list_activated_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_list_activated_holo.9.png deleted file mode 100644 index cce24c56..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_list_activated_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_list_focused_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_list_focused_holo.9.png deleted file mode 100644 index 56653502..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_list_focused_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_list_longpressed_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_list_longpressed_holo.9.png deleted file mode 100644 index b9652ca1..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_list_longpressed_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_list_pressed_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_list_pressed_holo_dark.9.png deleted file mode 100644 index 1f6f3cd3..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_list_pressed_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_list_selector_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_list_selector_disabled_holo_dark.9.png deleted file mode 100644 index 88726b69..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_list_selector_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progress_bg_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progress_bg_holo_dark.9.png deleted file mode 100644 index 34995280..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progress_bg_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progress_primary_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progress_primary_holo_dark.9.png deleted file mode 100644 index 835e8a43..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progress_primary_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progress_secondary_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progress_secondary_holo_dark.9.png deleted file mode 100644 index de2ab0ca..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progress_secondary_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progressbar_indeterminate_holo1.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progressbar_indeterminate_holo1.png deleted file mode 100644 index 9a8b1389..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progressbar_indeterminate_holo1.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progressbar_indeterminate_holo2.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progressbar_indeterminate_holo2.png deleted file mode 100644 index 95010957..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progressbar_indeterminate_holo2.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progressbar_indeterminate_holo3.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progressbar_indeterminate_holo3.png deleted file mode 100644 index 867cbda3..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progressbar_indeterminate_holo3.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progressbar_indeterminate_holo4.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progressbar_indeterminate_holo4.png deleted file mode 100644 index 94a3ca57..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progressbar_indeterminate_holo4.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progressbar_indeterminate_holo5.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progressbar_indeterminate_holo5.png deleted file mode 100644 index 11ff603f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progressbar_indeterminate_holo5.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progressbar_indeterminate_holo6.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progressbar_indeterminate_holo6.png deleted file mode 100644 index cbdadc1d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progressbar_indeterminate_holo6.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progressbar_indeterminate_holo7.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progressbar_indeterminate_holo7.png deleted file mode 100644 index aed22361..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progressbar_indeterminate_holo7.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progressbar_indeterminate_holo8.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progressbar_indeterminate_holo8.png deleted file mode 100644 index c09d80d9..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_progressbar_indeterminate_holo8.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_rate_star_big_half_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_rate_star_big_half_holo_dark.png deleted file mode 100644 index f33f5f88..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_rate_star_big_half_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_rate_star_big_off_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_rate_star_big_off_holo_dark.png deleted file mode 100644 index cac15039..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_rate_star_big_off_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_rate_star_big_on_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_rate_star_big_on_holo_dark.png deleted file mode 100644 index 2d7b0488..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_rate_star_big_on_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_rate_star_small_half_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_rate_star_small_half_holo_dark.png deleted file mode 100644 index eaaa2b8d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_rate_star_small_half_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_rate_star_small_off_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_rate_star_small_off_holo_dark.png deleted file mode 100644 index 346daa31..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_rate_star_small_off_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_rate_star_small_on_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_rate_star_small_on_holo_dark.png deleted file mode 100644 index 18400da6..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_rate_star_small_on_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_scrubber_control_disabled_holo.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_scrubber_control_disabled_holo.png deleted file mode 100644 index 172ef2da..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_scrubber_control_disabled_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_scrubber_control_focused_holo.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_scrubber_control_focused_holo.png deleted file mode 100644 index 4cbb93cb..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_scrubber_control_focused_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_scrubber_control_normal_holo.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_scrubber_control_normal_holo.png deleted file mode 100644 index fd61449f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_scrubber_control_normal_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_scrubber_control_pressed_holo.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_scrubber_control_pressed_holo.png deleted file mode 100644 index 9ff72ec5..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_scrubber_control_pressed_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_scrubber_primary_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_scrubber_primary_holo.9.png deleted file mode 100644 index 8e833de3..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_scrubber_primary_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_scrubber_secondary_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_scrubber_secondary_holo.9.png deleted file mode 100644 index 470f82f3..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_scrubber_secondary_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_scrubber_track_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_scrubber_track_holo_dark.9.png deleted file mode 100644 index bfb20481..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_scrubber_track_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_spinner_default_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_spinner_default_holo_dark.9.png deleted file mode 100644 index e2fa15e8..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_spinner_default_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_spinner_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_spinner_disabled_holo_dark.9.png deleted file mode 100644 index 7c3c49ba..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_spinner_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_spinner_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_spinner_focused_holo_dark.9.png deleted file mode 100644 index e7fb944e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_spinner_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_spinner_pressed_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_spinner_pressed_holo_dark.9.png deleted file mode 100644 index 9f15032e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_spinner_pressed_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_switch_bg_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_switch_bg_disabled_holo_dark.9.png deleted file mode 100644 index b23070c1..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_switch_bg_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_switch_bg_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_switch_bg_focused_holo_dark.9.png deleted file mode 100644 index 77442efe..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_switch_bg_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_switch_bg_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_switch_bg_holo_dark.9.png deleted file mode 100644 index 732481e5..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_switch_bg_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_switch_thumb_activated_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_switch_thumb_activated_holo_dark.9.png deleted file mode 100644 index 096511d6..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_switch_thumb_activated_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_switch_thumb_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_switch_thumb_disabled_holo_dark.9.png deleted file mode 100644 index c3d80f0e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_switch_thumb_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_switch_thumb_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_switch_thumb_holo_dark.9.png deleted file mode 100644 index df236df8..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_switch_thumb_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_switch_thumb_pressed_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_switch_thumb_pressed_holo_dark.9.png deleted file mode 100644 index 6dcadd45..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_switch_thumb_pressed_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_tab_selected_focused_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_tab_selected_focused_holo.9.png deleted file mode 100644 index b7705834..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_tab_selected_focused_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_tab_selected_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_tab_selected_holo.9.png deleted file mode 100644 index 10f6c84f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_tab_selected_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_tab_selected_pressed_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_tab_selected_pressed_holo.9.png deleted file mode 100644 index 1d453758..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_tab_selected_pressed_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_tab_unselected_focused_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_tab_unselected_focused_holo.9.png deleted file mode 100644 index ca4bcc0e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_tab_unselected_focused_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_tab_unselected_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_tab_unselected_holo.9.png deleted file mode 100644 index c150a299..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_tab_unselected_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_tab_unselected_pressed_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_tab_unselected_pressed_holo.9.png deleted file mode 100644 index 96d7f92e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_tab_unselected_pressed_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_text_select_handle_left.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_text_select_handle_left.png deleted file mode 100644 index fbb8b714..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_text_select_handle_left.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_text_select_handle_middle.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_text_select_handle_middle.png deleted file mode 100644 index 519c7396..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_text_select_handle_middle.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_text_select_handle_right.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_text_select_handle_right.png deleted file mode 100644 index 56b93d65..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_text_select_handle_right.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_textfield_activated_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_textfield_activated_holo_dark.9.png deleted file mode 100644 index 71502973..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_textfield_activated_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_textfield_default_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_textfield_default_holo_dark.9.png deleted file mode 100644 index 3fc04684..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_textfield_default_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_textfield_disabled_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_textfield_disabled_focused_holo_dark.9.png deleted file mode 100644 index a9767fc7..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_textfield_disabled_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_textfield_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_textfield_disabled_holo_dark.9.png deleted file mode 100644 index d78b10d6..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_textfield_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_textfield_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_textfield_focused_holo_dark.9.png deleted file mode 100644 index ee1530c5..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_dark_textfield_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_off_disabled_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_off_disabled_focused_holo_light.png deleted file mode 100644 index ef8fd3f4..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_off_disabled_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_off_disabled_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_off_disabled_holo_light.png deleted file mode 100644 index 6a364bbe..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_off_disabled_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_off_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_off_focused_holo_light.png deleted file mode 100644 index 39154b6c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_off_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_off_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_off_holo_light.png deleted file mode 100644 index a1c2005a..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_off_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_off_pressed_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_off_pressed_holo_light.png deleted file mode 100644 index a2b240b0..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_off_pressed_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_on_disabled_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_on_disabled_focused_holo_light.png deleted file mode 100644 index dec0c1a4..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_on_disabled_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_on_disabled_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_on_disabled_holo_light.png deleted file mode 100644 index d705b420..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_on_disabled_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_on_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_on_focused_holo_light.png deleted file mode 100644 index 73c935aa..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_on_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_on_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_on_holo_light.png deleted file mode 100644 index a3476136..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_on_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_on_pressed_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_on_pressed_holo_light.png deleted file mode 100644 index 3a3ea50d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_check_on_pressed_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_default_disabled_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_default_disabled_focused_holo_light.9.png deleted file mode 100644 index c85a084e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_default_disabled_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_default_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_default_disabled_holo_light.9.png deleted file mode 100644 index b410d238..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_default_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_default_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_default_focused_holo_light.9.png deleted file mode 100644 index c3e83611..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_default_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_default_normal_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_default_normal_holo_light.9.png deleted file mode 100644 index d461aa04..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_default_normal_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_default_pressed_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_default_pressed_holo_light.9.png deleted file mode 100644 index 1171bb77..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_default_pressed_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_off_disabled_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_off_disabled_focused_holo_light.png deleted file mode 100644 index e23aa404..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_off_disabled_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_off_disabled_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_off_disabled_holo_light.png deleted file mode 100644 index 1030a801..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_off_disabled_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_off_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_off_focused_holo_light.png deleted file mode 100644 index 317aa775..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_off_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_off_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_off_holo_light.png deleted file mode 100644 index 08b65d23..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_off_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_off_pressed_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_off_pressed_holo_light.png deleted file mode 100644 index 6bcf5632..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_off_pressed_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_on_disabled_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_on_disabled_focused_holo_light.png deleted file mode 100644 index 04ce9cfe..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_on_disabled_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_on_disabled_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_on_disabled_holo_light.png deleted file mode 100644 index 5741490d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_on_disabled_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_on_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_on_focused_holo_light.png deleted file mode 100644 index 0d41518d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_on_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_on_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_on_holo_light.png deleted file mode 100644 index c490c2dc..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_on_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_on_pressed_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_on_pressed_holo_light.png deleted file mode 100644 index 38d73e0b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_radio_on_pressed_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_rating_star_off_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_rating_star_off_focused_holo_light.png deleted file mode 100644 index f6273ada..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_rating_star_off_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_rating_star_off_normal_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_rating_star_off_normal_holo_light.png deleted file mode 100644 index 397874d1..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_rating_star_off_normal_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_rating_star_off_pressed_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_rating_star_off_pressed_holo_light.png deleted file mode 100644 index c709d4e5..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_rating_star_off_pressed_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_rating_star_on_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_rating_star_on_focused_holo_light.png deleted file mode 100644 index ea8a495d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_rating_star_on_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_rating_star_on_normal_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_rating_star_on_normal_holo_light.png deleted file mode 100644 index cb13f896..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_rating_star_on_normal_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_rating_star_on_pressed_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_rating_star_on_pressed_holo_light.png deleted file mode 100644 index 85e33aa4..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_rating_star_on_pressed_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_off_disabled_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_off_disabled_focused_holo_light.9.png deleted file mode 100644 index f8423034..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_off_disabled_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_off_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_off_disabled_holo_light.9.png deleted file mode 100644 index 61230cbd..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_off_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_off_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_off_focused_holo_light.9.png deleted file mode 100644 index f80275bc..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_off_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_off_normal_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_off_normal_holo_light.9.png deleted file mode 100644 index 54e5e8eb..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_off_normal_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_off_pressed_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_off_pressed_holo_light.9.png deleted file mode 100644 index f0ca33ff..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_off_pressed_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_on_disabled_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_on_disabled_focused_holo_light.9.png deleted file mode 100644 index b662bf14..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_on_disabled_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_on_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_on_disabled_holo_light.9.png deleted file mode 100644 index b9c59c7c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_on_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_on_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_on_focused_holo_light.9.png deleted file mode 100644 index c06a2ed6..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_on_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_on_normal_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_on_normal_holo_light.9.png deleted file mode 100644 index 13e69a7f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_on_normal_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_on_pressed_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_on_pressed_holo_light.9.png deleted file mode 100644 index cc094592..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_btn_toggle_on_pressed_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_fastscroll_thumb_default_holo.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_fastscroll_thumb_default_holo.png deleted file mode 100644 index 8f22a68f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_fastscroll_thumb_default_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_fastscroll_thumb_pressed_holo.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_fastscroll_thumb_pressed_holo.png deleted file mode 100644 index dc76ab7e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_fastscroll_thumb_pressed_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_ic_navigation_drawer.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_ic_navigation_drawer.png deleted file mode 100644 index 40ccb0c6..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_ic_navigation_drawer.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_list_activated_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_list_activated_holo.9.png deleted file mode 100644 index cce24c56..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_list_activated_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_list_focused_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_list_focused_holo.9.png deleted file mode 100644 index 56653502..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_list_focused_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_list_longpressed_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_list_longpressed_holo.9.png deleted file mode 100644 index cce24c56..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_list_longpressed_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_list_pressed_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_list_pressed_holo_light.9.png deleted file mode 100644 index 600b0261..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_list_pressed_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_list_selector_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_list_selector_disabled_holo_light.9.png deleted file mode 100644 index c6a7d4d8..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_list_selector_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progress_bg_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progress_bg_holo_light.9.png deleted file mode 100644 index cbd19ac4..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progress_bg_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progress_primary_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progress_primary_holo_light.9.png deleted file mode 100644 index 1f05fabc..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progress_primary_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progress_secondary_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progress_secondary_holo_light.9.png deleted file mode 100644 index de2ab0ca..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progress_secondary_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progressbar_indeterminate_holo1.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progressbar_indeterminate_holo1.png deleted file mode 100644 index 9a8b1389..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progressbar_indeterminate_holo1.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progressbar_indeterminate_holo2.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progressbar_indeterminate_holo2.png deleted file mode 100644 index 95010957..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progressbar_indeterminate_holo2.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progressbar_indeterminate_holo3.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progressbar_indeterminate_holo3.png deleted file mode 100644 index 867cbda3..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progressbar_indeterminate_holo3.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progressbar_indeterminate_holo4.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progressbar_indeterminate_holo4.png deleted file mode 100644 index 94a3ca57..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progressbar_indeterminate_holo4.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progressbar_indeterminate_holo5.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progressbar_indeterminate_holo5.png deleted file mode 100644 index 11ff603f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progressbar_indeterminate_holo5.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progressbar_indeterminate_holo6.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progressbar_indeterminate_holo6.png deleted file mode 100644 index cbdadc1d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progressbar_indeterminate_holo6.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progressbar_indeterminate_holo7.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progressbar_indeterminate_holo7.png deleted file mode 100644 index aed22361..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progressbar_indeterminate_holo7.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progressbar_indeterminate_holo8.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progressbar_indeterminate_holo8.png deleted file mode 100644 index c09d80d9..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_progressbar_indeterminate_holo8.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_rate_star_big_half_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_rate_star_big_half_holo_light.png deleted file mode 100644 index 23a0dc92..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_rate_star_big_half_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_rate_star_big_off_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_rate_star_big_off_holo_light.png deleted file mode 100644 index 34cb926b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_rate_star_big_off_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_rate_star_big_on_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_rate_star_big_on_holo_light.png deleted file mode 100644 index f6bf99ff..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_rate_star_big_on_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_rate_star_small_half_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_rate_star_small_half_holo_light.png deleted file mode 100644 index fa1f1d11..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_rate_star_small_half_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_rate_star_small_off_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_rate_star_small_off_holo_light.png deleted file mode 100644 index 4c2b62c3..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_rate_star_small_off_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_rate_star_small_on_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_rate_star_small_on_holo_light.png deleted file mode 100644 index 333a7997..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_rate_star_small_on_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_scrubber_control_disabled_holo.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_scrubber_control_disabled_holo.png deleted file mode 100644 index 172ef2da..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_scrubber_control_disabled_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_scrubber_control_focused_holo.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_scrubber_control_focused_holo.png deleted file mode 100644 index 4cbb93cb..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_scrubber_control_focused_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_scrubber_control_normal_holo.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_scrubber_control_normal_holo.png deleted file mode 100644 index fd61449f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_scrubber_control_normal_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_scrubber_control_pressed_holo.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_scrubber_control_pressed_holo.png deleted file mode 100644 index 9ff72ec5..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_scrubber_control_pressed_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_scrubber_primary_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_scrubber_primary_holo.9.png deleted file mode 100644 index 8e833de3..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_scrubber_primary_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_scrubber_secondary_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_scrubber_secondary_holo.9.png deleted file mode 100644 index 470f82f3..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_scrubber_secondary_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_scrubber_track_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_scrubber_track_holo_light.9.png deleted file mode 100644 index a7d396de..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_scrubber_track_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_spinner_default_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_spinner_default_holo_light.9.png deleted file mode 100644 index e2fa15e8..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_spinner_default_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_spinner_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_spinner_disabled_holo_light.9.png deleted file mode 100644 index fe541269..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_spinner_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_spinner_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_spinner_focused_holo_light.9.png deleted file mode 100644 index e7fb944e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_spinner_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_spinner_pressed_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_spinner_pressed_holo_light.9.png deleted file mode 100644 index 248b0b50..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_spinner_pressed_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_switch_bg_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_switch_bg_disabled_holo_light.9.png deleted file mode 100644 index 29f177a4..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_switch_bg_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_switch_bg_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_switch_bg_focused_holo_light.9.png deleted file mode 100644 index b488a556..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_switch_bg_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_switch_bg_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_switch_bg_holo_light.9.png deleted file mode 100644 index aec616ea..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_switch_bg_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_switch_thumb_activated_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_switch_thumb_activated_holo_light.9.png deleted file mode 100644 index 096511d6..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_switch_thumb_activated_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_switch_thumb_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_switch_thumb_disabled_holo_light.9.png deleted file mode 100644 index c3d80f0e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_switch_thumb_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_switch_thumb_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_switch_thumb_holo_light.9.png deleted file mode 100644 index df236df8..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_switch_thumb_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_switch_thumb_pressed_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_switch_thumb_pressed_holo_light.9.png deleted file mode 100644 index ad4dea73..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_switch_thumb_pressed_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_tab_selected_focused_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_tab_selected_focused_holo.9.png deleted file mode 100644 index b7705834..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_tab_selected_focused_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_tab_selected_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_tab_selected_holo.9.png deleted file mode 100644 index 10f6c84f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_tab_selected_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_tab_selected_pressed_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_tab_selected_pressed_holo.9.png deleted file mode 100644 index 52a21659..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_tab_selected_pressed_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_tab_unselected_focused_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_tab_unselected_focused_holo.9.png deleted file mode 100644 index ca4bcc0e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_tab_unselected_focused_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_tab_unselected_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_tab_unselected_holo.9.png deleted file mode 100644 index c150a299..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_tab_unselected_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_tab_unselected_pressed_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_tab_unselected_pressed_holo.9.png deleted file mode 100644 index 4a37d10f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_tab_unselected_pressed_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_text_select_handle_left.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_text_select_handle_left.png deleted file mode 100644 index fbb8b714..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_text_select_handle_left.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_text_select_handle_middle.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_text_select_handle_middle.png deleted file mode 100644 index 519c7396..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_text_select_handle_middle.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_text_select_handle_right.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_text_select_handle_right.png deleted file mode 100644 index 56b93d65..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_text_select_handle_right.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_textfield_activated_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_textfield_activated_holo_light.9.png deleted file mode 100644 index 71502973..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_textfield_activated_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_textfield_default_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_textfield_default_holo_light.9.png deleted file mode 100644 index f0ad55a6..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_textfield_default_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_textfield_disabled_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_textfield_disabled_focused_holo_light.9.png deleted file mode 100644 index 40a28cf7..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_textfield_disabled_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_textfield_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_textfield_disabled_holo_light.9.png deleted file mode 100644 index 4ffdd869..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_textfield_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_textfield_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_textfield_focused_holo_light.9.png deleted file mode 100644 index ee1530c5..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xhdpi/theme_light_textfield_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi-v11/ic_rss_notification.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi-v11/ic_rss_notification.png new file mode 100644 index 00000000..30b37c48 Binary files /dev/null and b/qBittorrentClient/app/src/main/res/drawable-xxhdpi-v11/ic_rss_notification.png differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi-v9/ic_rss_notification.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi-v9/ic_rss_notification.png new file mode 100644 index 00000000..d65cc490 Binary files /dev/null and b/qBittorrentClient/app/src/main/res/drawable-xxhdpi-v9/ic_rss_notification.png differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/ab_bottom_solid_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/ab_bottom_solid_theme_dark.9.png deleted file mode 100644 index fcb9578c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/ab_bottom_solid_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/ab_solid_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/ab_solid_theme_dark.9.png deleted file mode 100644 index 354813dc..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/ab_solid_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/ab_stacked_solid_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/ab_stacked_solid_theme_dark.9.png deleted file mode 100644 index 1544e2ac..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/ab_stacked_solid_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/ab_texture_tile_theme_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/ab_texture_tile_theme_dark.png deleted file mode 100644 index b7b31cff..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/ab_texture_tile_theme_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/ab_transparent_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/ab_transparent_theme_dark.9.png deleted file mode 100644 index 0e9ba38d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/ab_transparent_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/btn_cab_done_default_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/btn_cab_done_default_theme_dark.9.png deleted file mode 100644 index 0c0079c7..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/btn_cab_done_default_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/btn_cab_done_focused_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/btn_cab_done_focused_theme_dark.9.png deleted file mode 100644 index ddf7531b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/btn_cab_done_focused_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/btn_cab_done_pressed_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/btn_cab_done_pressed_theme_dark.9.png deleted file mode 100644 index f2ceb90e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/btn_cab_done_pressed_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/cab_background_bottom_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/cab_background_bottom_theme_dark.9.png deleted file mode 100644 index 858de47e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/cab_background_bottom_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/cab_background_top_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/cab_background_top_theme_dark.9.png deleted file mode 100644 index 3480efff..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/cab_background_top_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/error2.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/error2.png new file mode 100644 index 00000000..66e68e04 Binary files /dev/null and b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/error2.png differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/ic_action_add_rss.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/ic_action_add_rss.png new file mode 100644 index 00000000..ee299c11 Binary files /dev/null and b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/ic_action_add_rss.png differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/ic_rss_notification.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/ic_rss_notification.png new file mode 100644 index 00000000..68e34715 Binary files /dev/null and b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/ic_rss_notification.png differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/list_focused_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/list_focused_theme_dark.9.png deleted file mode 100644 index cc17ef5b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/list_focused_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/list_pressed_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/list_pressed_theme_dark.9.png deleted file mode 100644 index fb106ff2..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/list_pressed_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/menu_dropdown_panel_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/menu_dropdown_panel_theme_dark.9.png deleted file mode 100644 index c2ff4a09..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/menu_dropdown_panel_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/okay.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/okay.png new file mode 100644 index 00000000..28f73fcd Binary files /dev/null and b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/okay.png differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/progress_bg_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/progress_bg_theme_dark.9.png deleted file mode 100644 index 7c221af9..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/progress_bg_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/progress_primary_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/progress_primary_theme_dark.9.png deleted file mode 100644 index 3a2d7056..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/progress_primary_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/progress_secondary_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/progress_secondary_theme_dark.9.png deleted file mode 100644 index 1a7fb589..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/progress_secondary_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/spinner_ab_default_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/spinner_ab_default_theme_dark.9.png deleted file mode 100644 index f178f195..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/spinner_ab_default_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/spinner_ab_disabled_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/spinner_ab_disabled_theme_dark.9.png deleted file mode 100644 index 9ec5a1ef..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/spinner_ab_disabled_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/spinner_ab_focused_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/spinner_ab_focused_theme_dark.9.png deleted file mode 100644 index 125bbda7..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/spinner_ab_focused_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/spinner_ab_pressed_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/spinner_ab_pressed_theme_dark.9.png deleted file mode 100644 index 18e21c16..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/spinner_ab_pressed_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/tab_selected_focused_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/tab_selected_focused_theme_dark.9.png deleted file mode 100644 index 4cc29080..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/tab_selected_focused_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/tab_selected_pressed_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/tab_selected_pressed_theme_dark.9.png deleted file mode 100644 index b11624bd..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/tab_selected_pressed_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/tab_selected_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/tab_selected_theme_dark.9.png deleted file mode 100644 index f9b28d0f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/tab_selected_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/tab_unselected_focused_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/tab_unselected_focused_theme_dark.9.png deleted file mode 100644 index cf9c97a2..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/tab_unselected_focused_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/tab_unselected_pressed_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/tab_unselected_pressed_theme_dark.9.png deleted file mode 100644 index 75e82c61..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/tab_unselected_pressed_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/tab_unselected_theme_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/tab_unselected_theme_dark.9.png deleted file mode 100644 index 7b5c16da..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/tab_unselected_theme_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_off_disabled_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_off_disabled_focused_holo_dark.png deleted file mode 100644 index d4fc8a7b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_off_disabled_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_off_disabled_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_off_disabled_holo_dark.png deleted file mode 100644 index e74b8b70..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_off_disabled_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_off_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_off_focused_holo_dark.png deleted file mode 100644 index 2d5c6f2b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_off_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_off_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_off_holo_dark.png deleted file mode 100644 index d65373f3..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_off_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_off_pressed_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_off_pressed_holo_dark.png deleted file mode 100644 index 62558bb5..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_off_pressed_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_on_disabled_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_on_disabled_focused_holo_dark.png deleted file mode 100644 index 3489992d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_on_disabled_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_on_disabled_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_on_disabled_holo_dark.png deleted file mode 100644 index eff125b5..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_on_disabled_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_on_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_on_focused_holo_dark.png deleted file mode 100644 index ee262012..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_on_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_on_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_on_holo_dark.png deleted file mode 100644 index 8776ac25..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_on_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_on_pressed_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_on_pressed_holo_dark.png deleted file mode 100644 index e9aa870d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_check_on_pressed_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_default_disabled_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_default_disabled_focused_holo_dark.9.png deleted file mode 100644 index 2e953856..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_default_disabled_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_default_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_default_disabled_holo_dark.9.png deleted file mode 100644 index 12bac534..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_default_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_default_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_default_focused_holo_dark.9.png deleted file mode 100644 index 38a23960..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_default_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_default_normal_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_default_normal_holo_dark.9.png deleted file mode 100644 index b23cf5e0..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_default_normal_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_default_pressed_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_default_pressed_holo_dark.9.png deleted file mode 100644 index b3adb2d6..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_default_pressed_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_off_disabled_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_off_disabled_focused_holo_dark.png deleted file mode 100644 index daed47dc..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_off_disabled_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_off_disabled_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_off_disabled_holo_dark.png deleted file mode 100644 index 946936e5..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_off_disabled_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_off_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_off_focused_holo_dark.png deleted file mode 100644 index 7757ad47..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_off_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_off_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_off_holo_dark.png deleted file mode 100644 index 46811dd0..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_off_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_off_pressed_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_off_pressed_holo_dark.png deleted file mode 100644 index 37b50b0b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_off_pressed_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_on_disabled_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_on_disabled_focused_holo_dark.png deleted file mode 100644 index 9f92deb4..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_on_disabled_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_on_disabled_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_on_disabled_holo_dark.png deleted file mode 100644 index 66b833d6..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_on_disabled_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_on_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_on_focused_holo_dark.png deleted file mode 100644 index 20c1ea87..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_on_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_on_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_on_holo_dark.png deleted file mode 100644 index 291096f7..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_on_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_on_pressed_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_on_pressed_holo_dark.png deleted file mode 100644 index 7a8fbd53..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_radio_on_pressed_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_rating_star_off_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_rating_star_off_focused_holo_dark.png deleted file mode 100644 index ba71c411..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_rating_star_off_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_rating_star_off_normal_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_rating_star_off_normal_holo_dark.png deleted file mode 100644 index edfb0e42..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_rating_star_off_normal_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_rating_star_off_pressed_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_rating_star_off_pressed_holo_dark.png deleted file mode 100644 index 71198328..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_rating_star_off_pressed_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_rating_star_on_focused_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_rating_star_on_focused_holo_dark.png deleted file mode 100644 index 8098208d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_rating_star_on_focused_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_rating_star_on_normal_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_rating_star_on_normal_holo_dark.png deleted file mode 100644 index 12095bbe..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_rating_star_on_normal_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_rating_star_on_pressed_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_rating_star_on_pressed_holo_dark.png deleted file mode 100644 index 394ee19a..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_rating_star_on_pressed_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_off_disabled_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_off_disabled_focused_holo_dark.9.png deleted file mode 100644 index 6c8c123f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_off_disabled_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_off_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_off_disabled_holo_dark.9.png deleted file mode 100644 index c34c7afe..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_off_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_off_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_off_focused_holo_dark.9.png deleted file mode 100644 index da0380a5..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_off_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_off_normal_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_off_normal_holo_dark.9.png deleted file mode 100644 index d3ef0e1a..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_off_normal_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_off_pressed_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_off_pressed_holo_dark.9.png deleted file mode 100644 index beffd2e8..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_off_pressed_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_on_disabled_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_on_disabled_focused_holo_dark.9.png deleted file mode 100644 index 421de9eb..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_on_disabled_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_on_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_on_disabled_holo_dark.9.png deleted file mode 100644 index 1f840805..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_on_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_on_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_on_focused_holo_dark.9.png deleted file mode 100644 index 851ef629..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_on_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_on_normal_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_on_normal_holo_dark.9.png deleted file mode 100644 index 873fa424..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_on_normal_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_on_pressed_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_on_pressed_holo_dark.9.png deleted file mode 100644 index 5dcc4e90..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_btn_toggle_on_pressed_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_fastscroll_thumb_default_holo.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_fastscroll_thumb_default_holo.png deleted file mode 100644 index f0cdd933..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_fastscroll_thumb_default_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_fastscroll_thumb_pressed_holo.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_fastscroll_thumb_pressed_holo.png deleted file mode 100644 index 4fbaeafb..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_fastscroll_thumb_pressed_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_ic_navigation_drawer.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_ic_navigation_drawer.png deleted file mode 100644 index 9a96f7fb..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_ic_navigation_drawer.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_list_activated_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_list_activated_holo.9.png deleted file mode 100644 index 272bd5b8..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_list_activated_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_list_focused_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_list_focused_holo.9.png deleted file mode 100644 index 2ae5d268..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_list_focused_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_list_longpressed_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_list_longpressed_holo.9.png deleted file mode 100644 index 5c750bb8..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_list_longpressed_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_list_pressed_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_list_pressed_holo_dark.9.png deleted file mode 100644 index 8cdca02e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_list_pressed_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_list_selector_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_list_selector_disabled_holo_dark.9.png deleted file mode 100644 index 908f76b4..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_list_selector_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progress_bg_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progress_bg_holo_dark.9.png deleted file mode 100644 index 2e8c2e5e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progress_bg_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progress_primary_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progress_primary_holo_dark.9.png deleted file mode 100644 index e9b1eac2..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progress_primary_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progress_secondary_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progress_secondary_holo_dark.9.png deleted file mode 100644 index 3a18424f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progress_secondary_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progressbar_indeterminate_holo1.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progressbar_indeterminate_holo1.png deleted file mode 100644 index 2f606246..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progressbar_indeterminate_holo1.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progressbar_indeterminate_holo2.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progressbar_indeterminate_holo2.png deleted file mode 100644 index d0ab7f5c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progressbar_indeterminate_holo2.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progressbar_indeterminate_holo3.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progressbar_indeterminate_holo3.png deleted file mode 100644 index 44428a05..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progressbar_indeterminate_holo3.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progressbar_indeterminate_holo4.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progressbar_indeterminate_holo4.png deleted file mode 100644 index 1c27e5d7..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progressbar_indeterminate_holo4.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progressbar_indeterminate_holo5.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progressbar_indeterminate_holo5.png deleted file mode 100644 index e5777d68..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progressbar_indeterminate_holo5.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progressbar_indeterminate_holo6.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progressbar_indeterminate_holo6.png deleted file mode 100644 index 33c12029..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progressbar_indeterminate_holo6.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progressbar_indeterminate_holo7.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progressbar_indeterminate_holo7.png deleted file mode 100644 index ba05927e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progressbar_indeterminate_holo7.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progressbar_indeterminate_holo8.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progressbar_indeterminate_holo8.png deleted file mode 100644 index 5fba71a1..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_progressbar_indeterminate_holo8.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_rate_star_big_half_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_rate_star_big_half_holo_dark.png deleted file mode 100644 index 89e60433..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_rate_star_big_half_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_rate_star_big_off_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_rate_star_big_off_holo_dark.png deleted file mode 100644 index cff58d39..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_rate_star_big_off_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_rate_star_big_on_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_rate_star_big_on_holo_dark.png deleted file mode 100644 index c781819d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_rate_star_big_on_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_rate_star_small_half_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_rate_star_small_half_holo_dark.png deleted file mode 100644 index accb3f76..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_rate_star_small_half_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_rate_star_small_off_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_rate_star_small_off_holo_dark.png deleted file mode 100644 index 2a9fc21e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_rate_star_small_off_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_rate_star_small_on_holo_dark.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_rate_star_small_on_holo_dark.png deleted file mode 100644 index 747f1b78..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_rate_star_small_on_holo_dark.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_scrubber_control_disabled_holo.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_scrubber_control_disabled_holo.png deleted file mode 100644 index c54fe8ed..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_scrubber_control_disabled_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_scrubber_control_focused_holo.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_scrubber_control_focused_holo.png deleted file mode 100644 index a8f9ac62..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_scrubber_control_focused_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_scrubber_control_normal_holo.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_scrubber_control_normal_holo.png deleted file mode 100644 index e3fe68e2..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_scrubber_control_normal_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_scrubber_control_pressed_holo.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_scrubber_control_pressed_holo.png deleted file mode 100644 index 9da35ea4..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_scrubber_control_pressed_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_scrubber_primary_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_scrubber_primary_holo.9.png deleted file mode 100644 index 008b678e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_scrubber_primary_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_scrubber_secondary_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_scrubber_secondary_holo.9.png deleted file mode 100644 index f4eae4ab..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_scrubber_secondary_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_scrubber_track_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_scrubber_track_holo_dark.9.png deleted file mode 100644 index 4014860d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_scrubber_track_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_spinner_default_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_spinner_default_holo_dark.9.png deleted file mode 100644 index abb78caa..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_spinner_default_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_spinner_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_spinner_disabled_holo_dark.9.png deleted file mode 100644 index 7c120968..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_spinner_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_spinner_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_spinner_focused_holo_dark.9.png deleted file mode 100644 index 1acef5dd..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_spinner_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_spinner_pressed_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_spinner_pressed_holo_dark.9.png deleted file mode 100644 index 9d01c2db..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_spinner_pressed_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_switch_bg_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_switch_bg_disabled_holo_dark.9.png deleted file mode 100644 index e80453ee..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_switch_bg_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_switch_bg_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_switch_bg_focused_holo_dark.9.png deleted file mode 100644 index fe3a40a4..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_switch_bg_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_switch_bg_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_switch_bg_holo_dark.9.png deleted file mode 100644 index d1133bf1..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_switch_bg_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_switch_thumb_activated_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_switch_thumb_activated_holo_dark.9.png deleted file mode 100644 index 0877715c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_switch_thumb_activated_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_switch_thumb_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_switch_thumb_disabled_holo_dark.9.png deleted file mode 100644 index 5f36c04a..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_switch_thumb_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_switch_thumb_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_switch_thumb_holo_dark.9.png deleted file mode 100644 index f14f0d6c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_switch_thumb_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_switch_thumb_pressed_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_switch_thumb_pressed_holo_dark.9.png deleted file mode 100644 index 1219d958..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_switch_thumb_pressed_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_tab_selected_focused_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_tab_selected_focused_holo.9.png deleted file mode 100644 index 7ff7237b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_tab_selected_focused_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_tab_selected_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_tab_selected_holo.9.png deleted file mode 100644 index 6126bc1b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_tab_selected_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_tab_selected_pressed_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_tab_selected_pressed_holo.9.png deleted file mode 100644 index 3d22221b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_tab_selected_pressed_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_tab_unselected_focused_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_tab_unselected_focused_holo.9.png deleted file mode 100644 index e9baa580..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_tab_unselected_focused_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_tab_unselected_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_tab_unselected_holo.9.png deleted file mode 100644 index 9ce43250..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_tab_unselected_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_tab_unselected_pressed_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_tab_unselected_pressed_holo.9.png deleted file mode 100644 index 42dbbee4..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_tab_unselected_pressed_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_text_select_handle_left.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_text_select_handle_left.png deleted file mode 100644 index 338a55f9..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_text_select_handle_left.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_text_select_handle_middle.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_text_select_handle_middle.png deleted file mode 100644 index da1635a5..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_text_select_handle_middle.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_text_select_handle_right.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_text_select_handle_right.png deleted file mode 100644 index a06bd66c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_text_select_handle_right.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_textfield_activated_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_textfield_activated_holo_dark.9.png deleted file mode 100644 index 78d07685..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_textfield_activated_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_textfield_default_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_textfield_default_holo_dark.9.png deleted file mode 100644 index d5dbae1c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_textfield_default_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_textfield_disabled_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_textfield_disabled_focused_holo_dark.9.png deleted file mode 100644 index bd775bbe..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_textfield_disabled_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_textfield_disabled_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_textfield_disabled_holo_dark.9.png deleted file mode 100644 index 598eed10..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_textfield_disabled_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_textfield_focused_holo_dark.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_textfield_focused_holo_dark.9.png deleted file mode 100644 index d0d40f5d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_dark_textfield_focused_holo_dark.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_off_disabled_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_off_disabled_focused_holo_light.png deleted file mode 100644 index aef1a95c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_off_disabled_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_off_disabled_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_off_disabled_holo_light.png deleted file mode 100644 index 47a63730..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_off_disabled_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_off_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_off_focused_holo_light.png deleted file mode 100644 index 3d1a6067..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_off_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_off_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_off_holo_light.png deleted file mode 100644 index 441cd866..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_off_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_off_pressed_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_off_pressed_holo_light.png deleted file mode 100644 index cad0996f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_off_pressed_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_on_disabled_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_on_disabled_focused_holo_light.png deleted file mode 100644 index e715a0d1..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_on_disabled_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_on_disabled_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_on_disabled_holo_light.png deleted file mode 100644 index 013c1f6e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_on_disabled_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_on_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_on_focused_holo_light.png deleted file mode 100644 index c88f3ec9..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_on_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_on_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_on_holo_light.png deleted file mode 100644 index b025cb8c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_on_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_on_pressed_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_on_pressed_holo_light.png deleted file mode 100644 index 22766b65..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_check_on_pressed_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_default_disabled_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_default_disabled_focused_holo_light.9.png deleted file mode 100644 index 2e953856..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_default_disabled_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_default_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_default_disabled_holo_light.9.png deleted file mode 100644 index b4c90d40..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_default_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_default_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_default_focused_holo_light.9.png deleted file mode 100644 index 38a23960..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_default_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_default_normal_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_default_normal_holo_light.9.png deleted file mode 100644 index b23cf5e0..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_default_normal_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_default_pressed_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_default_pressed_holo_light.9.png deleted file mode 100644 index c8edffe6..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_default_pressed_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_off_disabled_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_off_disabled_focused_holo_light.png deleted file mode 100644 index b5d4f471..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_off_disabled_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_off_disabled_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_off_disabled_holo_light.png deleted file mode 100644 index 06f0cc78..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_off_disabled_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_off_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_off_focused_holo_light.png deleted file mode 100644 index 313b4d89..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_off_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_off_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_off_holo_light.png deleted file mode 100644 index 6112308f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_off_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_off_pressed_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_off_pressed_holo_light.png deleted file mode 100644 index 42c4663a..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_off_pressed_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_on_disabled_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_on_disabled_focused_holo_light.png deleted file mode 100644 index c1e0a5c0..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_on_disabled_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_on_disabled_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_on_disabled_holo_light.png deleted file mode 100644 index adb73043..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_on_disabled_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_on_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_on_focused_holo_light.png deleted file mode 100644 index 8c872e2e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_on_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_on_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_on_holo_light.png deleted file mode 100644 index 1383175c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_on_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_on_pressed_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_on_pressed_holo_light.png deleted file mode 100644 index b9fb4344..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_radio_on_pressed_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_rating_star_off_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_rating_star_off_focused_holo_light.png deleted file mode 100644 index 86b7eebe..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_rating_star_off_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_rating_star_off_normal_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_rating_star_off_normal_holo_light.png deleted file mode 100644 index e9f7f5b4..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_rating_star_off_normal_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_rating_star_off_pressed_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_rating_star_off_pressed_holo_light.png deleted file mode 100644 index 923a1441..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_rating_star_off_pressed_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_rating_star_on_focused_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_rating_star_on_focused_holo_light.png deleted file mode 100644 index 5f3b1962..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_rating_star_on_focused_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_rating_star_on_normal_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_rating_star_on_normal_holo_light.png deleted file mode 100644 index df3fdb36..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_rating_star_on_normal_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_rating_star_on_pressed_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_rating_star_on_pressed_holo_light.png deleted file mode 100644 index 68d214a9..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_rating_star_on_pressed_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_off_disabled_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_off_disabled_focused_holo_light.9.png deleted file mode 100644 index 6c8c123f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_off_disabled_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_off_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_off_disabled_holo_light.9.png deleted file mode 100644 index 9b3900a7..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_off_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_off_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_off_focused_holo_light.9.png deleted file mode 100644 index da0380a5..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_off_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_off_normal_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_off_normal_holo_light.9.png deleted file mode 100644 index d3ef0e1a..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_off_normal_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_off_pressed_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_off_pressed_holo_light.9.png deleted file mode 100644 index 70b2c808..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_off_pressed_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_on_disabled_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_on_disabled_focused_holo_light.9.png deleted file mode 100644 index 421de9eb..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_on_disabled_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_on_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_on_disabled_holo_light.9.png deleted file mode 100644 index 1f840805..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_on_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_on_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_on_focused_holo_light.9.png deleted file mode 100644 index 851ef629..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_on_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_on_normal_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_on_normal_holo_light.9.png deleted file mode 100644 index 873fa424..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_on_normal_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_on_pressed_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_on_pressed_holo_light.9.png deleted file mode 100644 index a26abf57..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_btn_toggle_on_pressed_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_fastscroll_thumb_default_holo.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_fastscroll_thumb_default_holo.png deleted file mode 100644 index f0cdd933..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_fastscroll_thumb_default_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_fastscroll_thumb_pressed_holo.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_fastscroll_thumb_pressed_holo.png deleted file mode 100644 index 4fbaeafb..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_fastscroll_thumb_pressed_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_ic_navigation_drawer.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_ic_navigation_drawer.png deleted file mode 100644 index 9a96f7fb..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_ic_navigation_drawer.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_list_activated_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_list_activated_holo.9.png deleted file mode 100644 index 272bd5b8..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_list_activated_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_list_focused_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_list_focused_holo.9.png deleted file mode 100644 index 2ae5d268..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_list_focused_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_list_longpressed_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_list_longpressed_holo.9.png deleted file mode 100644 index 272bd5b8..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_list_longpressed_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_list_pressed_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_list_pressed_holo_light.9.png deleted file mode 100644 index 038a995e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_list_pressed_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_list_selector_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_list_selector_disabled_holo_light.9.png deleted file mode 100644 index 70bc9f28..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_list_selector_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progress_bg_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progress_bg_holo_light.9.png deleted file mode 100644 index fb146c33..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progress_bg_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progress_primary_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progress_primary_holo_light.9.png deleted file mode 100644 index 5c94615b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progress_primary_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progress_secondary_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progress_secondary_holo_light.9.png deleted file mode 100644 index 3a18424f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progress_secondary_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progressbar_indeterminate_holo1.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progressbar_indeterminate_holo1.png deleted file mode 100644 index 2f606246..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progressbar_indeterminate_holo1.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progressbar_indeterminate_holo2.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progressbar_indeterminate_holo2.png deleted file mode 100644 index d0ab7f5c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progressbar_indeterminate_holo2.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progressbar_indeterminate_holo3.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progressbar_indeterminate_holo3.png deleted file mode 100644 index 44428a05..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progressbar_indeterminate_holo3.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progressbar_indeterminate_holo4.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progressbar_indeterminate_holo4.png deleted file mode 100644 index 1c27e5d7..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progressbar_indeterminate_holo4.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progressbar_indeterminate_holo5.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progressbar_indeterminate_holo5.png deleted file mode 100644 index e5777d68..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progressbar_indeterminate_holo5.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progressbar_indeterminate_holo6.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progressbar_indeterminate_holo6.png deleted file mode 100644 index 33c12029..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progressbar_indeterminate_holo6.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progressbar_indeterminate_holo7.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progressbar_indeterminate_holo7.png deleted file mode 100644 index ba05927e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progressbar_indeterminate_holo7.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progressbar_indeterminate_holo8.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progressbar_indeterminate_holo8.png deleted file mode 100644 index 5fba71a1..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_progressbar_indeterminate_holo8.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_rate_star_big_half_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_rate_star_big_half_holo_light.png deleted file mode 100644 index 102d8c11..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_rate_star_big_half_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_rate_star_big_off_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_rate_star_big_off_holo_light.png deleted file mode 100644 index 7e1a7702..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_rate_star_big_off_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_rate_star_big_on_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_rate_star_big_on_holo_light.png deleted file mode 100644 index f66a91c3..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_rate_star_big_on_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_rate_star_small_half_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_rate_star_small_half_holo_light.png deleted file mode 100644 index 782fffdb..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_rate_star_small_half_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_rate_star_small_off_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_rate_star_small_off_holo_light.png deleted file mode 100644 index 42cad5eb..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_rate_star_small_off_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_rate_star_small_on_holo_light.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_rate_star_small_on_holo_light.png deleted file mode 100644 index 6a169c52..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_rate_star_small_on_holo_light.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_scrubber_control_disabled_holo.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_scrubber_control_disabled_holo.png deleted file mode 100644 index c54fe8ed..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_scrubber_control_disabled_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_scrubber_control_focused_holo.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_scrubber_control_focused_holo.png deleted file mode 100644 index a8f9ac62..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_scrubber_control_focused_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_scrubber_control_normal_holo.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_scrubber_control_normal_holo.png deleted file mode 100644 index e3fe68e2..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_scrubber_control_normal_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_scrubber_control_pressed_holo.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_scrubber_control_pressed_holo.png deleted file mode 100644 index 9da35ea4..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_scrubber_control_pressed_holo.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_scrubber_primary_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_scrubber_primary_holo.9.png deleted file mode 100644 index 008b678e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_scrubber_primary_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_scrubber_secondary_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_scrubber_secondary_holo.9.png deleted file mode 100644 index f4eae4ab..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_scrubber_secondary_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_scrubber_track_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_scrubber_track_holo_light.9.png deleted file mode 100644 index 1a6f577f..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_scrubber_track_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_spinner_default_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_spinner_default_holo_light.9.png deleted file mode 100644 index abb78caa..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_spinner_default_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_spinner_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_spinner_disabled_holo_light.9.png deleted file mode 100644 index 4cef0954..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_spinner_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_spinner_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_spinner_focused_holo_light.9.png deleted file mode 100644 index 1acef5dd..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_spinner_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_spinner_pressed_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_spinner_pressed_holo_light.9.png deleted file mode 100644 index 19376109..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_spinner_pressed_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_switch_bg_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_switch_bg_disabled_holo_light.9.png deleted file mode 100644 index 0ec08eea..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_switch_bg_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_switch_bg_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_switch_bg_focused_holo_light.9.png deleted file mode 100644 index 2f29d45d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_switch_bg_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_switch_bg_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_switch_bg_holo_light.9.png deleted file mode 100644 index 4532035e..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_switch_bg_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_switch_thumb_activated_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_switch_thumb_activated_holo_light.9.png deleted file mode 100644 index 0877715c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_switch_thumb_activated_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_switch_thumb_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_switch_thumb_disabled_holo_light.9.png deleted file mode 100644 index 7c164632..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_switch_thumb_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_switch_thumb_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_switch_thumb_holo_light.9.png deleted file mode 100644 index 9920f547..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_switch_thumb_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_switch_thumb_pressed_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_switch_thumb_pressed_holo_light.9.png deleted file mode 100644 index e7faa244..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_switch_thumb_pressed_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_tab_selected_focused_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_tab_selected_focused_holo.9.png deleted file mode 100644 index 7ff7237b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_tab_selected_focused_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_tab_selected_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_tab_selected_holo.9.png deleted file mode 100644 index 6126bc1b..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_tab_selected_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_tab_selected_pressed_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_tab_selected_pressed_holo.9.png deleted file mode 100644 index 0b7c71be..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_tab_selected_pressed_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_tab_unselected_focused_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_tab_unselected_focused_holo.9.png deleted file mode 100644 index e9baa580..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_tab_unselected_focused_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_tab_unselected_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_tab_unselected_holo.9.png deleted file mode 100644 index 9ce43250..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_tab_unselected_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_tab_unselected_pressed_holo.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_tab_unselected_pressed_holo.9.png deleted file mode 100644 index 2b6fb847..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_tab_unselected_pressed_holo.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_text_select_handle_left.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_text_select_handle_left.png deleted file mode 100644 index 338a55f9..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_text_select_handle_left.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_text_select_handle_middle.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_text_select_handle_middle.png deleted file mode 100644 index da1635a5..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_text_select_handle_middle.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_text_select_handle_right.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_text_select_handle_right.png deleted file mode 100644 index a06bd66c..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_text_select_handle_right.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_textfield_activated_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_textfield_activated_holo_light.9.png deleted file mode 100644 index 78d07685..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_textfield_activated_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_textfield_default_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_textfield_default_holo_light.9.png deleted file mode 100644 index 6db1dd0a..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_textfield_default_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_textfield_disabled_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_textfield_disabled_focused_holo_light.9.png deleted file mode 100644 index d157d7d6..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_textfield_disabled_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_textfield_disabled_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_textfield_disabled_holo_light.9.png deleted file mode 100644 index c91f7da9..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_textfield_disabled_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_textfield_focused_holo_light.9.png b/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_textfield_focused_holo_light.9.png deleted file mode 100644 index d0d40f5d..00000000 Binary files a/qBittorrentClient/app/src/main/res/drawable-xxhdpi/theme_light_textfield_focused_holo_light.9.png and /dev/null differ diff --git a/qBittorrentClient/app/src/main/res/layout/activity_rssfeed.xml b/qBittorrentClient/app/src/main/res/layout/activity_rssfeed.xml new file mode 100644 index 00000000..e0304963 --- /dev/null +++ b/qBittorrentClient/app/src/main/res/layout/activity_rssfeed.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/qBittorrentClient/app/src/main/res/layout/activity_rssitem.xml b/qBittorrentClient/app/src/main/res/layout/activity_rssitem.xml new file mode 100644 index 00000000..2536bbc9 --- /dev/null +++ b/qBittorrentClient/app/src/main/res/layout/activity_rssitem.xml @@ -0,0 +1,31 @@ + + + + + + + + +l + + \ No newline at end of file diff --git a/qBittorrentClient/app/src/main/res/layout/add_rss.xml b/qBittorrentClient/app/src/main/res/layout/add_rss.xml new file mode 100644 index 00000000..3fc395cc --- /dev/null +++ b/qBittorrentClient/app/src/main/res/layout/add_rss.xml @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/qBittorrentClient/app/src/main/res/layout/rss_channel_row.xml b/qBittorrentClient/app/src/main/res/layout/rss_channel_row.xml new file mode 100644 index 00000000..7ccbb77a --- /dev/null +++ b/qBittorrentClient/app/src/main/res/layout/rss_channel_row.xml @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/qBittorrentClient/app/src/main/res/layout/rss_item_row.xml b/qBittorrentClient/app/src/main/res/layout/rss_item_row.xml new file mode 100644 index 00000000..cb0d27b8 --- /dev/null +++ b/qBittorrentClient/app/src/main/res/layout/rss_item_row.xml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/qBittorrentClient/app/src/main/res/menu/main.xml b/qBittorrentClient/app/src/main/res/menu/main.xml index fb9cf3d5..e0510cb3 100644 --- a/qBittorrentClient/app/src/main/res/menu/main.xml +++ b/qBittorrentClient/app/src/main/res/menu/main.xml @@ -65,6 +65,7 @@ android:icon="@drawable/ic_action_add" app:showAsAction="collapseActionView|ifRoom" android:title="@string/action_add" /> + + + \ No newline at end of file diff --git a/qBittorrentClient/app/src/main/res/menu/menu_rssfeed.xml b/qBittorrentClient/app/src/main/res/menu/menu_rssfeed.xml new file mode 100644 index 00000000..c0d3557a --- /dev/null +++ b/qBittorrentClient/app/src/main/res/menu/menu_rssfeed.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/qBittorrentClient/app/src/main/res/menu/menu_rssitem.xml b/qBittorrentClient/app/src/main/res/menu/menu_rssitem.xml new file mode 100644 index 00000000..a1344230 --- /dev/null +++ b/qBittorrentClient/app/src/main/res/menu/menu_rssitem.xml @@ -0,0 +1,10 @@ + + + diff --git a/qBittorrentClient/app/src/main/res/menu/menu_rssrow_contextual.xml b/qBittorrentClient/app/src/main/res/menu/menu_rssrow_contextual.xml new file mode 100644 index 00000000..c9c666cf --- /dev/null +++ b/qBittorrentClient/app/src/main/res/menu/menu_rssrow_contextual.xml @@ -0,0 +1,19 @@ + + + + + + + + + + \ No newline at end of file diff --git a/qBittorrentClient/app/src/main/res/menu/setting.xml b/qBittorrentClient/app/src/main/res/menu/setting.xml deleted file mode 100644 index a0c258e2..00000000 --- a/qBittorrentClient/app/src/main/res/menu/setting.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - diff --git a/qBittorrentClient/app/src/main/res/values-v11/styles.xml b/qBittorrentClient/app/src/main/res/values-v11/styles.xml deleted file mode 100644 index e66314d9..00000000 --- a/qBittorrentClient/app/src/main/res/values-v11/styles.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - diff --git a/qBittorrentClient/app/src/main/res/values-v14/styles.xml b/qBittorrentClient/app/src/main/res/values-v14/styles.xml deleted file mode 100644 index fda54b4b..00000000 --- a/qBittorrentClient/app/src/main/res/values-v14/styles.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - diff --git a/qBittorrentClient/app/src/main/res/values-v21/styles.xml b/qBittorrentClient/app/src/main/res/values-v21/styles.xml deleted file mode 100644 index dab12eb5..00000000 --- a/qBittorrentClient/app/src/main/res/values-v21/styles.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - \ No newline at end of file diff --git a/qBittorrentClient/app/src/main/res/values-w820dp/dimens.xml b/qBittorrentClient/app/src/main/res/values-w820dp/dimens.xml new file mode 100644 index 00000000..63fc8164 --- /dev/null +++ b/qBittorrentClient/app/src/main/res/values-w820dp/dimens.xml @@ -0,0 +1,6 @@ + + + 64dp + diff --git a/qBittorrentClient/app/src/main/res/values/styles.xml b/qBittorrentClient/app/src/main/res/values/styles.xml index af92e600..5fbd3771 100644 --- a/qBittorrentClient/app/src/main/res/values/styles.xml +++ b/qBittorrentClient/app/src/main/res/values/styles.xml @@ -39,14 +39,16 @@ @drawable/background_drawer_selector_light - backgroundDrawerSelector - @drawable/gmd_shadow_light true + + @color/primary + @style/ContextualActionBar + @@ -82,13 +84,28 @@ true + + + ?attr/colorAccent + @style/ContextualActionBar + + + + + + diff --git a/qBittorrentClient/app/src/main/res/xml/preferences.xml b/qBittorrentClient/app/src/main/res/xml/preferences.xml index cf14250d..cc44efaf 100644 --- a/qBittorrentClient/app/src/main/res/xml/preferences.xml +++ b/qBittorrentClient/app/src/main/res/xml/preferences.xml @@ -110,17 +110,17 @@ - \ No newline at end of file diff --git a/qBittorrentClient/app/src/pro/java/com.lgallardo.qbittorrentclient/MainActivity.java b/qBittorrentClient/app/src/pro/java/com.lgallardo.qbittorrentclient/MainActivity.java index f22e8214..bad8cac2 100644 --- a/qBittorrentClient/app/src/pro/java/com.lgallardo.qbittorrentclient/MainActivity.java +++ b/qBittorrentClient/app/src/pro/java/com.lgallardo.qbittorrentclient/MainActivity.java @@ -38,8 +38,8 @@ import android.os.SystemClock; import android.preference.PreferenceManager; import android.support.v4.widget.DrawerLayout; -import android.support.v7.app.ActionBarActivity; import android.support.v7.app.ActionBarDrawerToggle; +import android.support.v7.app.AppCompatActivity; import android.support.v7.widget.SearchView; import android.support.v7.widget.Toolbar; import android.util.Log; @@ -68,7 +68,7 @@ interface RefreshListener { public void swipeRefresh(); } -public class MainActivity extends ActionBarActivity implements RefreshListener { +public class MainActivity extends AppCompatActivity implements RefreshListener { // Torrent Info TAGs protected static final String TAG_NAME = "name"; @@ -234,6 +234,19 @@ protected void onCreate(Bundle savedInstanceState) { notification_period, alarmIntent); } + // Set alarm for RSS checking, if not set + if (PendingIntent.getBroadcast(getApplication(), 0, new Intent(getApplication(), RSSService.class), PendingIntent.FLAG_NO_CREATE) == null) { + + // Set Alarm for checking completed torrents + alarmMgr = (AlarmManager) getApplication().getSystemService(Context.ALARM_SERVICE); + Intent intent = new Intent(getApplication(), RSSService.class); + alarmIntent = PendingIntent.getBroadcast(getApplication(), 0, intent, 0); + + alarmMgr.setInexactRepeating(AlarmManager.ELAPSED_REALTIME_WAKEUP, + SystemClock.elapsedRealtime() + 5000, + AlarmManager.INTERVAL_DAY, alarmIntent); + } + if (qb_version.equals("3.2.x")) { if (cookie == null || cookie.equals("")) { new qBittorrentCookie().execute(); @@ -539,6 +552,28 @@ public void onResume() { } } + if (fm.getBackStackEntryCount() == 0 && (fm.findFragmentByTag("secondFragment") instanceof TorrentDetailsFragment)) { + + // Create the about fragment + aboutFragment = new AboutFragment(); + + fragmentTransaction.replace(R.id.content_frame, aboutFragment, "secondFragment"); + + fragmentTransaction.commit(); + + // Se titile + setTitle(navigationDrawerItemTitles[drawerList.getCheckedItemPosition()]); + + // Close Contextual Action Bar + if (firstFragment != null && firstFragment.mActionMode != null) { + firstFragment.mActionMode.finish(); + } + + // Refresh current list + refreshCurrent(); + + } + } catch (Exception e) { @@ -782,8 +817,21 @@ private void handleIntent(Intent intent) { refresh("completed"); } - } - catch (NullPointerException npe) { + + if (intent.getStringExtra("from").equals("RSSItemActivity")) { + + // Add torrent (file, url or magnet) + addTorrentByIntent(intent); + + // // Activity is visble + activityIsVisible = true; + + // Autorefresh + refreshCurrent(); + } + + + } catch (NullPointerException npe) { } } @@ -880,6 +928,10 @@ public boolean onOptionsItemSelected(MenuItem item) { // Add URL torrent addUrlTorrent(); return true; + case R.id.action_rss: + // Open RSS Activity + startActivity(new Intent(getBaseContext(), com.lgallardo.qbittorrentclient.RSSFeedActivity.class)); + return true; case R.id.action_pause: if (com.lgallardo.qbittorrentclient.TorrentDetailsFragment.hashToUpdate != null) { pauseTorrent(com.lgallardo.qbittorrentclient.TorrentDetailsFragment.hashToUpdate); @@ -2131,6 +2183,8 @@ protected String doInBackground(String... params) { try { + httpStatusCode = 0; + jParser.postCommand(params[0], params[1]); } catch (JSONParserStatusCodeException e) { diff --git a/qBittorrentClient/app/src/pro/res/layout-large/activity_main.xml b/qBittorrentClient/app/src/pro/res/layout-large/activity_main.xml index 1b966b52..cfe40045 100644 --- a/qBittorrentClient/app/src/pro/res/layout-large/activity_main.xml +++ b/qBittorrentClient/app/src/pro/res/layout-large/activity_main.xml @@ -32,6 +32,7 @@ android:gravity="end" android:orientation="horizontal" android:paddingBottom="5dp" + android:paddingRight="5dp" android:background="?dropShadowBackground" android:elevation="1dp"> diff --git a/qBittorrentClient/app/src/pro/res/layout/activity_main.xml b/qBittorrentClient/app/src/pro/res/layout/activity_main.xml index 4e480bfb..f039fa28 100644 --- a/qBittorrentClient/app/src/pro/res/layout/activity_main.xml +++ b/qBittorrentClient/app/src/pro/res/layout/activity_main.xml @@ -31,6 +31,7 @@ android:orientation="horizontal" android:paddingTop="2dp" android:paddingBottom="2dp" + android:paddingRight="5dp" android:background="?dropShadowBackground" android:elevation="1dp" > diff --git a/qBittorrentClient/app/src/pro/res/values-es/strings.xml b/qBittorrentClient/app/src/pro/res/values-es/strings.xml index 3f846134..644e7db5 100644 --- a/qBittorrentClient/app/src/pro/res/values-es/strings.xml +++ b/qBittorrentClient/app/src/pro/res/values-es/strings.xml @@ -210,4 +210,12 @@ © Luis M. Gallardo D. \n\nPublicado bajo licencia GPL v3 Por favor califica la aplicación en Google Play Califica esta aplicación + Añadir RSS + Editar + RSS + Descargar nuevos torrents automáticamente? + Notificar nuevos torrents? + RSS url + Nombre + No se pudo obtener RSS \ No newline at end of file diff --git a/qBittorrentClient/app/src/pro/res/values-fr/strings.xml b/qBittorrentClient/app/src/pro/res/values-fr/strings.xml index 058dfccc..b03cdd17 100644 --- a/qBittorrentClient/app/src/pro/res/values-fr/strings.xml +++ b/qBittorrentClient/app/src/pro/res/values-fr/strings.xml @@ -201,4 +201,12 @@ © Luis M. Gallardo D. \n\nPublished under GPL v3 Se il vous plaît évaluer l\'application dans Google Play Évaluer l\'application + Ajouter RSS + Modifier + RSS + Téléchargez de nouveaux torrents automatiquement? + Notifier nouvelles torrents? + RSS url + Nom + Impossible d\'obtenir RSS \ No newline at end of file diff --git a/qBittorrentClient/app/src/pro/res/values-it-rIT/strings.xml b/qBittorrentClient/app/src/pro/res/values-it-rIT/strings.xml index 8a0359bd..c6694bd5 100644 --- a/qBittorrentClient/app/src/pro/res/values-it-rIT/strings.xml +++ b/qBittorrentClient/app/src/pro/res/values-it-rIT/strings.xml @@ -201,4 +201,12 @@ © Luis M. Gallardo D. \n\nPubblicato sotto licenza GPL Si prega di valutare l\'applicazione in Google PlayPoPl Valuta questa applicazione + Aggiungere RSS + Modifica + RSS + Scarica nuovi torrents automaticamente? + Notifica nuove torrents? + RSS url + Nome + Impossibile ottenere RSS \ No newline at end of file diff --git a/qBittorrentClient/app/src/pro/res/values-pl/strings.xml b/qBittorrentClient/app/src/pro/res/values-pl/strings.xml index df758359..a9832ca7 100644 --- a/qBittorrentClient/app/src/pro/res/values-pl/strings.xml +++ b/qBittorrentClient/app/src/pro/res/values-pl/strings.xml @@ -201,4 +201,12 @@ © Luis M. Gallardo D. \n\nOpublikowany pod GPL v3 Proszę ocenić aplikację w Google Play Oceń ten APP + Dodaj RSS + Edycja + RSS + Automatyczne pobieranie nowych torrents? + Informuj nowych torrents? + RSS url + Nazwa + Nie udało się uzyskać RSS \ No newline at end of file diff --git a/qBittorrentClient/app/src/pro/res/values-pt-rBR/strings.xml b/qBittorrentClient/app/src/pro/res/values-pt-rBR/strings.xml index b196f4b2..74add2b2 100644 --- a/qBittorrentClient/app/src/pro/res/values-pt-rBR/strings.xml +++ b/qBittorrentClient/app/src/pro/res/values-pt-rBR/strings.xml @@ -201,4 +201,12 @@ © Luis M. Gallardo D. \n\nPublicado sob GPL v3 Por favor, classifique o aplicativo no Google Play Avalie este aplicativo + Adicionar RSS + Editar + RSS + Baixar automaticamente novos torrents? + Notificar novos torrents? + RSS url + Nome + Não foi possível obter RSS \ No newline at end of file diff --git a/qBittorrentClient/app/src/pro/res/values-pt-rPT/strings.xml b/qBittorrentClient/app/src/pro/res/values-pt-rPT/strings.xml index 190da2aa..1968719b 100644 --- a/qBittorrentClient/app/src/pro/res/values-pt-rPT/strings.xml +++ b/qBittorrentClient/app/src/pro/res/values-pt-rPT/strings.xml @@ -201,4 +201,12 @@ © Luis M. Gallardo D. \n\nPublicado sob GPL v3 Por favor, classifique o aplicativo no Google Play Avalie este aplicativo + Adicionar RSS + Editar + RSS + Baixar automaticamente novos torrents? + Notificar novos torrents? + RSS url + Nome + Não foi possível obter RSS \ No newline at end of file diff --git a/qBittorrentClient/app/src/pro/res/values-ru/strings.xml b/qBittorrentClient/app/src/pro/res/values-ru/strings.xml index 1ee52cae..07881a86 100644 --- a/qBittorrentClient/app/src/pro/res/values-ru/strings.xml +++ b/qBittorrentClient/app/src/pro/res/values-ru/strings.xml @@ -200,4 +200,12 @@ © Luis M. Gallardo D. \n\nОпубликовано под лицензией GPL v3 Оцените приложение в Google Play Оцените это приложение + Добавить RSS + Редактировать + RSS + Автоматически скачивать новые торренты? + Сообщите новые торренты? + RSS url + Имя + Не удалось получить RSS diff --git a/qBittorrentClient/app/src/pro/res/values-sv/strings.xml b/qBittorrentClient/app/src/pro/res/values-sv/strings.xml index 21869d46..6ea991d9 100644 --- a/qBittorrentClient/app/src/pro/res/values-sv/strings.xml +++ b/qBittorrentClient/app/src/pro/res/values-sv/strings.xml @@ -200,4 +200,12 @@ © Luis M. Gallardo D. \n\nPublicerad under GPL v3 Bedöm appen i Google Play Betygsätt den här appen + lägg RSS + Redigera + RSS + Ladda ner nya torrents automatiskt? + Meddela nya torrents? + RSS url + Namn + Det gick inte att få RSS \ No newline at end of file diff --git a/qBittorrentClient/app/src/pro/res/values/strings.xml b/qBittorrentClient/app/src/pro/res/values/strings.xml index 128ed563..c949afe4 100644 --- a/qBittorrentClient/app/src/pro/res/values/strings.xml +++ b/qBittorrentClient/app/src/pro/res/values/strings.xml @@ -20,6 +20,7 @@ Resume all Pause all Delete + Edit Delete data Increase priority Decrease priority @@ -214,5 +215,12 @@ © Luis M. Gallardo D. \n\nPublished under GPL v3 Rate this app Please rate the app in Google play - + Add RSS + RSS + RSS url + Name + Download new torrents automatically? + Notify new torrents? + New torrents available + Could not get RSS \ No newline at end of file diff --git a/qBittorrentClient/qBittorrentClient.iml b/qBittorrentClient/qBittorrentClient.iml index 88b12b1c..700f33e4 100644 --- a/qBittorrentClient/qBittorrentClient.iml +++ b/qBittorrentClient/qBittorrentClient.iml @@ -8,7 +8,7 @@ - +