aboutsummaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
Diffstat (limited to 'res')
-rw-r--r--res/layout/abstract_list_fragment.xml50
-rw-r--r--res/layout/album_cell_item.xml56
-rw-r--r--res/layout/album_list_item.xml58
-rw-r--r--res/layout/chat.xml84
-rw-r--r--res/layout/grid_view.xml11
-rw-r--r--res/layout/select_album.xml51
-rw-r--r--res/layout/unscrollable_grid_view.xml10
-rw-r--r--res/menu/abstract_top_menu.xml6
-rw-r--r--res/menu/empty.xml6
-rw-r--r--res/menu/select_album.xml6
-rw-r--r--res/menu/select_album_list.xml9
-rw-r--r--res/menu/select_artist.xml6
-rw-r--r--res/menu/select_podcast_episode.xml6
-rw-r--r--res/menu/select_podcast_episode_offline.xml6
-rw-r--r--res/menu/select_podcasts.xml6
-rw-r--r--res/menu/select_song.xml6
-rw-r--r--res/menu/select_song_offline.xml6
-rw-r--r--res/values-de/strings.xml7
-rw-r--r--res/values-es/strings.xml2
-rw-r--r--res/values-hu/strings.xml2
-rw-r--r--res/values-ru/strings.xml2
-rw-r--r--res/values/strings.xml4
-rw-r--r--res/xml/changelog.xml243
23 files changed, 184 insertions, 459 deletions
diff --git a/res/layout/abstract_list_fragment.xml b/res/layout/abstract_list_fragment.xml
index bfce4792..be3889ee 100644
--- a/res/layout/abstract_list_fragment.xml
+++ b/res/layout/abstract_list_fragment.xml
@@ -1,29 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/fragment_list_layout"
+<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/refresh_layout"
android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical" >
+ android:layout_height="fill_parent">
- <View
+ <LinearLayout
+ android:id="@+id/fragment_list_layout"
android:layout_width="fill_parent"
- android:layout_height="1px"
- android:background="@color/dividerColor"/>
+ android:layout_height="fill_parent"
+ android:orientation="vertical" >
- <include layout="@layout/tab_progress" />
+ <View
+ android:layout_width="fill_parent"
+ android:layout_height="1px"
+ android:background="@color/dividerColor"/>
- <TextView
- android:id="@+id/fragment_list_empty"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:padding="10dip"
- android:text="@string/common.empty"
- android:visibility="gone" />
+ <include layout="@layout/tab_progress" />
- <ListView
- android:id="@+id/fragment_list"
- android:layout_width="fill_parent"
- android:layout_height="0dip"
- android:layout_weight="1.0"
- android:fastScrollEnabled="true"/>
-</LinearLayout>
+ <TextView
+ android:id="@+id/fragment_list_empty"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:padding="10dip"
+ android:text="@string/common.empty"
+ android:visibility="gone" />
+
+ <ListView
+ android:id="@+id/fragment_list"
+ android:layout_width="fill_parent"
+ android:layout_height="0dip"
+ android:layout_weight="1.0"
+ android:fastScrollEnabled="true"/>
+ </LinearLayout>
+</android.support.v4.widget.SwipeRefreshLayout> \ No newline at end of file
diff --git a/res/layout/album_cell_item.xml b/res/layout/album_cell_item.xml
new file mode 100644
index 00000000..9cc85c6e
--- /dev/null
+++ b/res/layout/album_cell_item.xml
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
+
+ <github.daneren2005.dsub.view.SquareImageView
+ android:id="@+id/album_coverart"
+ android:layout_width="match_parent"
+ android:layout_height="0dp"
+ android:layout_weight="1"
+ android:src="@drawable/unknown_album"/>
+
+ <LinearLayout
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal"
+ android:paddingTop="4dp"
+ android:paddingLeft="2dp">
+
+ <LinearLayout
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:gravity="center_vertical"
+ android:orientation="vertical">
+
+ <TextView
+ android:id="@+id/album_title"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:singleLine="true"
+ android:ellipsize="marquee"
+ android:text="@string/search.albums"/>
+
+ <TextView
+ android:id="@+id/album_artist"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:textAppearance="?android:attr/textAppearanceSmall"
+ android:singleLine="true"
+ android:text="@string/search.artists"/>
+ </LinearLayout>
+
+ <ImageView
+ android:id="@+id/album_more"
+ android:src="?attr/download_none"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="right|center_vertical"
+ android:paddingRight="2dp"
+ android:background="@drawable/menubar_button"/>
+ </LinearLayout>
+
+</LinearLayout> \ No newline at end of file
diff --git a/res/layout/album_list_item.xml b/res/layout/album_list_item.xml
deleted file mode 100644
index 99a9ed88..00000000
--- a/res/layout/album_list_item.xml
+++ /dev/null
@@ -1,58 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@id/drag_handle"
- android:orientation="horizontal"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content">
-
- <ImageView
- android:id="@+id/album_coverart"
- android:layout_width="@dimen/AlbumArt.Small"
- android:layout_height="@dimen/AlbumArt.Small"
- android:layout_gravity="left|center_vertical"/>
-
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="0dip"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:layout_gravity="left|center_vertical"
- android:paddingLeft="10dip"
- android:paddingRight="3dip">
-
- <TextView
- android:id="@+id/album_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceMedium"
- android:singleLine="true"
- android:ellipsize="marquee"/>
-
- <TextView
- android:id="@+id/album_artist"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceSmall"
- android:singleLine="true"/>
-
- </LinearLayout>
-
- <ImageButton
- android:id="@+id/album_star"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="right|center_vertical"
- android:src="@drawable/ic_stat_star"
- android:background="@android:color/transparent"
- android:focusable="false"
- android:visibility="gone"/>
-
- <ImageView
- android:id="@+id/album_more"
- android:src="?attr/download_none"
- android:layout_width="wrap_content"
- android:layout_height="fill_parent"
- android:layout_gravity="right|center_vertical"
- android:paddingRight="10dip"
- android:background="@drawable/menubar_button"/>
-</LinearLayout>
diff --git a/res/layout/chat.xml b/res/layout/chat.xml
index 9b8f7d17..a62cfa65 100644
--- a/res/layout/chat.xml
+++ b/res/layout/chat.xml
@@ -1,47 +1,53 @@
<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/chat_layout"
+<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/refresh_layout"
android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical" >
+ android:layout_height="fill_parent">
- <include layout="@layout/tab_progress" />
-
- <ListView
- android:id="@+id/chat_entries"
+ <LinearLayout
+ android:id="@+id/chat_layout"
android:layout_width="fill_parent"
- android:layout_height="0dip"
- android:layout_weight="1.0"
- android:textFilterEnabled="true" />
+ android:layout_height="fill_parent"
+ android:orientation="vertical" >
- <LinearLayout
- android:layout_height="4dip"
- android:layout_width="fill_parent"
- android:layout_marginTop="4dip"/>
+ <include layout="@layout/tab_progress" />
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal"
- android:gravity="bottom" >
-
- <EditText
- android:id="@+id/chat_edittext"
- android:layout_width="0dip"
- android:layout_height="40dip"
- android:layout_weight="1"
- android:autoLink="all"
- android:hint="@string/chat.send_a_message"
- android:inputType="textEmailAddress|textMultiLine"
- android:linksClickable="true"
- android:paddingBottom="10dip"
- android:paddingTop="10dip" />
-
- <ImageButton
- android:id="@+id/chat_send"
- android:layout_width="60dip"
- android:layout_height="40dip"
- android:src="?attr/chat_send" />
+ <ListView
+ android:id="@+id/chat_entries"
+ android:layout_width="fill_parent"
+ android:layout_height="0dip"
+ android:layout_weight="1.0"
+ android:textFilterEnabled="true" />
+
+ <LinearLayout
+ android:layout_height="4dip"
+ android:layout_width="fill_parent"
+ android:layout_marginTop="4dip"/>
+
+ <LinearLayout
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal"
+ android:gravity="bottom" >
+
+ <EditText
+ android:id="@+id/chat_edittext"
+ android:layout_width="0dip"
+ android:layout_height="40dip"
+ android:layout_weight="1"
+ android:autoLink="all"
+ android:hint="@string/chat.send_a_message"
+ android:inputType="textEmailAddress|textMultiLine"
+ android:linksClickable="true"
+ android:paddingBottom="10dip"
+ android:paddingTop="10dip" />
+
+ <ImageButton
+ android:id="@+id/chat_send"
+ android:layout_width="60dip"
+ android:layout_height="40dip"
+ android:src="?attr/chat_send" />
+ </LinearLayout>
</LinearLayout>
-</LinearLayout> \ No newline at end of file
+</android.support.v4.widget.SwipeRefreshLayout> \ No newline at end of file
diff --git a/res/layout/grid_view.xml b/res/layout/grid_view.xml
new file mode 100644
index 00000000..17b2f8aa
--- /dev/null
+++ b/res/layout/grid_view.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="utf-8"?>
+<GridView xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/gridview"
+ android:layout_width="fill_parent"
+ android:layout_height="0dip"
+ android:layout_weight="1.0"
+ android:numColumns="auto_fit"
+ android:horizontalSpacing="10dp"
+ android:verticalSpacing="10dp"
+ android:gravity="center"
+ android:stretchMode="columnWidth"/> \ No newline at end of file
diff --git a/res/layout/select_album.xml b/res/layout/select_album.xml
index 01df495a..2189fdcc 100644
--- a/res/layout/select_album.xml
+++ b/res/layout/select_album.xml
@@ -1,31 +1,36 @@
<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/select_album_layout"
- android:orientation="vertical"
+<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/refresh_layout"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
- <View
+ <LinearLayout
+ android:id="@+id/select_album_layout"
+ android:orientation="vertical"
android:layout_width="fill_parent"
- android:layout_height="1px"
- android:background="@color/dividerColor"/>
+ android:layout_height="fill_parent">
- <include layout="@layout/tab_progress"/>
+ <View
+ android:layout_width="fill_parent"
+ android:layout_height="1px"
+ android:background="@color/dividerColor"/>
- <TextView
- android:id="@+id/select_album_empty"
- android:text="@string/select_album.empty"
- android:visibility="gone"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:padding="10dip"/>
+ <include layout="@layout/tab_progress"/>
- <com.mobeta.android.dslv.DragSortListView
- style="@style/DragDropListView"
- android:id="@+id/select_album_entries"
- android:textFilterEnabled="true"
- android:layout_width="fill_parent"
- android:layout_height="0dip"
- android:layout_weight="1.0"
- android:fastScrollEnabled="true"/>
-</LinearLayout> \ No newline at end of file
+ <TextView
+ android:id="@+id/select_album_empty"
+ android:text="@string/select_album.empty"
+ android:visibility="gone"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:padding="10dip"/>
+
+ <ListView
+ android:id="@+id/select_album_entries"
+ android:textFilterEnabled="true"
+ android:layout_width="fill_parent"
+ android:layout_height="0dip"
+ android:layout_weight="1.0"
+ android:fastScrollEnabled="true"/>
+ </LinearLayout>
+</android.support.v4.widget.SwipeRefreshLayout> \ No newline at end of file
diff --git a/res/layout/unscrollable_grid_view.xml b/res/layout/unscrollable_grid_view.xml
new file mode 100644
index 00000000..549f9ae5
--- /dev/null
+++ b/res/layout/unscrollable_grid_view.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="utf-8"?>
+<github.daneren2005.dsub.view.UnscrollableGridView xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/gridview"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:numColumns="auto_fit"
+ android:horizontalSpacing="10dp"
+ android:verticalSpacing="10dp"
+ android:gravity="center"
+ android:stretchMode="columnWidth"/> \ No newline at end of file
diff --git a/res/menu/abstract_top_menu.xml b/res/menu/abstract_top_menu.xml
index 46419d0f..67d18390 100644
--- a/res/menu/abstract_top_menu.xml
+++ b/res/menu/abstract_top_menu.xml
@@ -2,12 +2,6 @@
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:compat="http://schemas.android.com/apk/res-auto">
<item
- android:id="@+id/menu_refresh"
- android:icon="?attr/refresh"
- android:title="@string/menu.refresh"
- compat:showAsAction="always|withText"/>
-
- <item
android:id="@+id/menu_search"
android:icon="?attr/search"
android:title="@string/menu.search"
diff --git a/res/menu/empty.xml b/res/menu/empty.xml
index 9bb43bf7..cf7b82de 100644
--- a/res/menu/empty.xml
+++ b/res/menu/empty.xml
@@ -1,9 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:compat="http://schemas.android.com/apk/res-auto">
- <item
- android:id="@+id/menu_refresh"
- android:icon="?attr/refresh"
- android:title="@string/menu.refresh"
- compat:showAsAction="always|withText"/>
+
</menu>
diff --git a/res/menu/select_album.xml b/res/menu/select_album.xml
index 8dc004f1..4b79d251 100644
--- a/res/menu/select_album.xml
+++ b/res/menu/select_album.xml
@@ -8,12 +8,6 @@
compat:showAsAction="always|withText"/>
<item
- android:id="@+id/menu_refresh"
- android:icon="?attr/refresh"
- android:title="@string/menu.refresh"
- compat:showAsAction="always|withText"/>
-
- <item
android:id="@+id/menu_shuffle"
android:icon="?attr/shuffle"
android:title="@string/menu.shuffle"
diff --git a/res/menu/select_album_list.xml b/res/menu/select_album_list.xml
deleted file mode 100644
index 60b636e3..00000000
--- a/res/menu/select_album_list.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<menu xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:compat="http://schemas.android.com/apk/res-auto">
- <item
- android:id="@+id/menu_refresh"
- android:icon="?attr/refresh"
- android:title="@string/menu.refresh"
- compat:showAsAction="always|withText"/>
-</menu>
diff --git a/res/menu/select_artist.xml b/res/menu/select_artist.xml
index d1e1f4e3..127736d6 100644
--- a/res/menu/select_artist.xml
+++ b/res/menu/select_artist.xml
@@ -2,12 +2,6 @@
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:compat="http://schemas.android.com/apk/res-auto">
<item
- android:id="@+id/menu_refresh"
- android:icon="?attr/refresh"
- android:title="@string/menu.refresh"
- compat:showAsAction="always|withText"/>
-
- <item
android:id="@+id/menu_shuffle"
android:icon="?attr/shuffle"
android:title="@string/menu.shuffle"
diff --git a/res/menu/select_podcast_episode.xml b/res/menu/select_podcast_episode.xml
index 8a86b49b..dbb369e9 100644
--- a/res/menu/select_podcast_episode.xml
+++ b/res/menu/select_podcast_episode.xml
@@ -1,12 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:compat="http://schemas.android.com/apk/res-auto">
- <item
- android:id="@+id/menu_refresh"
- android:icon="?attr/refresh"
- android:title="@string/menu.refresh"
- compat:showAsAction="always|withText"/>
-
<item
android:id="@+id/menu_download_all"
android:title="@string/select_podcasts.server_download"/>
diff --git a/res/menu/select_podcast_episode_offline.xml b/res/menu/select_podcast_episode_offline.xml
index 7080768a..3665d317 100644
--- a/res/menu/select_podcast_episode_offline.xml
+++ b/res/menu/select_podcast_episode_offline.xml
@@ -2,12 +2,6 @@
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:compat="http://schemas.android.com/apk/res-auto">
<item
- android:id="@+id/menu_refresh"
- android:icon="?attr/refresh"
- android:title="@string/menu.refresh"
- compat:showAsAction="always|withText"/>
-
- <item
android:id="@+id/menu_delete"
android:title="@string/menu.delete_cache"/>
</menu>
diff --git a/res/menu/select_podcasts.xml b/res/menu/select_podcasts.xml
index 212feb04..2f0ab38a 100644
--- a/res/menu/select_podcasts.xml
+++ b/res/menu/select_podcasts.xml
@@ -1,12 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:compat="http://schemas.android.com/apk/res-auto">
- <item
- android:id="@+id/menu_refresh"
- android:icon="?attr/refresh"
- android:title="@string/menu.refresh"
- compat:showAsAction="always|withText"/>
-
<item
android:id="@+id/menu_search"
android:icon="?attr/search"
diff --git a/res/menu/select_song.xml b/res/menu/select_song.xml
index d5bfc2b2..ec4af96a 100644
--- a/res/menu/select_song.xml
+++ b/res/menu/select_song.xml
@@ -8,12 +8,6 @@
compat:showAsAction="always|withText"/>
<item
- android:id="@+id/menu_refresh"
- android:icon="?attr/refresh"
- android:title="@string/menu.refresh"
- compat:showAsAction="always|withText"/>
-
- <item
android:id="@+id/menu_shuffle"
android:icon="?attr/shuffle"
android:title="@string/menu.shuffle"
diff --git a/res/menu/select_song_offline.xml b/res/menu/select_song_offline.xml
index 0b482a5e..6915c873 100644
--- a/res/menu/select_song_offline.xml
+++ b/res/menu/select_song_offline.xml
@@ -8,12 +8,6 @@
compat:showAsAction="always|withText"/>
<item
- android:id="@+id/menu_refresh"
- android:icon="?attr/refresh"
- android:title="@string/menu.refresh"
- compat:showAsAction="always|withText"/>
-
- <item
android:id="@+id/menu_shuffle"
android:icon="?attr/shuffle"
android:title="@string/menu.shuffle"
diff --git a/res/values-de/strings.xml b/res/values-de/strings.xml
index b7ece050..ce9a68e5 100644
--- a/res/values-de/strings.xml
+++ b/res/values-de/strings.xml
@@ -52,7 +52,7 @@
<string name="main.online">Gehe Online</string>
<string name="main.settings">Einstellungen</string>
<string name="main.albums_title">Album Liste</string>
- <string name="main.albums_newest">Neu hinzugefügt</string>
+ <string name="main.albums_newest">Neue Alben</string>
<string name="main.albums_recent">Vor kurzem gespielt</string>
<string name="main.albums_frequent">Am meisten gespielt</string>
<string name="main.albums_highest">Top bewertet</string>
@@ -379,6 +379,9 @@
<string name="settings.browse_by_tags_summary">Tags statt Ordner verwenden. Benötigt Subsonic 4.7+</string>
<string name="settings.override_system_language">In Englisch anzeigen</string>
<string name="settings.override_system_language_summary">Verwende Englisch anstatt Deutsch für DSub. Benötigt einen Neustart der App.</string>
+ <string name="settings.drawer_items_title">Seitenmenü</string>
+ <string name="settings.play_now_after">Jetzt wiedergeben bis zum Listenende</string>
+ <string name="settings.play_now_after_summary">\"Jetzt wiedergeben\" im Kontextmenü spielt das ausgewählte Lied und alle in der Liste nachfolgenden Lieder ab (wie in der Web-Schnittstelle des Subsonic-Server)</string>
<string name="shuffle.title">Mischen von</string>
<string name="shuffle.startYear">Startjahr:</string>
@@ -417,8 +420,6 @@
<string name="service.connecting">Kontaktiere Server, bitte warten.</string>
- <string name="parser.reading">Lese vom Server.</string>
- <string name="parser.reading_done">Lese vom Server. Fertig!</string>
<string name="parser.upgrade_client">Inkompatible Versionen. Aktualisierung der DSub Android App erforderlich.</string>
<string name="parser.upgrade_server">Inkompatible Versionen. Aktualisierung des Subsonic Server erforderlich.</string>
<string name="parser.not_authenticated">Benutzername oder/und Passwort falsch.</string>
diff --git a/res/values-es/strings.xml b/res/values-es/strings.xml
index db557f19..e18e4b08 100644
--- a/res/values-es/strings.xml
+++ b/res/values-es/strings.xml
@@ -434,8 +434,6 @@
<string name="service.connecting">Conectando con el servidor, espere por favor.</string>
- <string name="parser.reading">Leyendo desde el servidor.</string>
- <string name="parser.reading_done">Leyendo desde el servidor. Hecho!</string>
<string name="parser.upgrade_client">Versiones incompatibles. Por favor, actualice la aplicación DSub de Android.</string>
<string name="parser.upgrade_server">Versiones incompatibles. Por favor, actualice su servidor Subsonic.</string>
<string name="parser.not_authenticated">Usuario o contraseña inconrrectos.</string>
diff --git a/res/values-hu/strings.xml b/res/values-hu/strings.xml
index 1625ab84..9a4e51ae 100644
--- a/res/values-hu/strings.xml
+++ b/res/values-hu/strings.xml
@@ -441,8 +441,6 @@
<string name="service.connecting">Csatlakozás a kiszolgálóhoz, kérem várjon!</string>
- <string name="parser.reading">Olvasás a kiszolgálóról...</string>
- <string name="parser.reading_done">Olvasás a kiszolgálóról. Kész!</string>
<string name="parser.upgrade_client">Nem kompatibilis verzió. Kérjük, frissítse a DSub Android alkalmazást!</string>
<string name="parser.upgrade_server">Nem kompatibilis verzió. Kérjük, frissítse a Subsonic kiszolgálót!</string>
<string name="parser.not_authenticated">Hibás felhasználónév vagy jelszó!</string>
diff --git a/res/values-ru/strings.xml b/res/values-ru/strings.xml
index d4edbf46..7094fe7d 100644
--- a/res/values-ru/strings.xml
+++ b/res/values-ru/strings.xml
@@ -259,8 +259,6 @@
<string name="service.connecting">Подключение к серверу. Пожалуйста, подождите.</string>
- <string name="parser.reading">Чтение с сервера.</string>
- <string name="parser.reading_done">Чтение с сервера выполнено!</string>
<string name="parser.upgrade_client">Несовместимые версии. Пожалуйста, обновите приложение DSub для Android.</string>
<string name="parser.upgrade_server">Несовместимые версии. Пожалуйста, обновите сервер Subsonic.</string>
<string name="parser.not_authenticated">Неправильное имя пользователя или пароль.</string>
diff --git a/res/values/strings.xml b/res/values/strings.xml
index d0df0d24..0cbb9330 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -440,9 +440,7 @@
<string name="service.connecting">Contacting server, please wait.</string>
- <string name="parser.reading">Reading from server.</string>
- <string name="parser.reading_done">Reading from server. Done!</string>
- <string name="parser.upgrade_client">Incompatible versions. Please upgrade DSub Android app.</string>
+ <string name="parser.upgrade_client">Incompatible versions. Please upgrade DSub.</string>
<string name="parser.upgrade_server">Incompatible versions. Please upgrade Subsonic server.</string>
<string name="parser.not_authenticated">Wrong username or password.</string>
<string name="parser.not_authorized">Not authorized. Check user permissions in Subsonic server.</string>
diff --git a/res/xml/changelog.xml b/res/xml/changelog.xml
index 4fb3b472..53b70127 100644
--- a/res/xml/changelog.xml
+++ b/res/xml/changelog.xml
@@ -73,247 +73,4 @@
<change>Fix offline scrobbling bug</change>
<change>Fix some offline caching issues when sync is on with multiple servers</change>
</release>
- <release version="4.4" versioncode="86" releasedate="2/5/2014">
- <change>Browse by ID3 Tags instead of folder structure (off by default)</change>
- <change>Probably a good idea to clear existing cache since there will be many songs that don't match up</change>
- <change>Add unstar option to mass unstar songs in the Starred list</change>
- <change>Convert the start timer to use a slider</change>
- <change>Add years to albums display (requires Subsonic 4.9+)</change>
- <change>Renamed all Delete's to Delete something to remove ambiguity</change>
- <change>Fixed some places where rotating the screen caused a crash</change>
- <change>Various minor bug fixes</change>
- </release>
- <release version="4.3.7" versioncode="84" releasedate="1/22/2014">
- <change>Add stats to genres for 4.9Beta3+ Servers</change>
- <change>Fix stuck Last.FM notification if you use it to scrobble</change>
- <change>Fix shuffle play issue</change>
- <change>Fix pressing next from bluetooth controls not looping back to start with repeat set to all</change>
- </release>
- <release version="4.3.6" versioncode="81" releasedate="1/19/2014">
- <change>Added optional SSID to use for local network address (requires new permission: ACCESS_WIFI_STATE)</change>
- <change>Fix not being able to clear local network address</change>
- <change>Fix Galaxy S3 issues</change>
- <change>Hide star button on now playing screen if hidden in settings</change>
- <change>Fix podcasts not being clickable in offline mode</change>
- <change>Bunch of minor improvements/bugfixes</change>
- </release>
- <release version="4.3.5" versioncode="80" releasedate="1/11/2014">
- <change>Fix downloads not limiting bitrate correctly</change>
- </release>
- <release version="4.3.4" versioncode="79" releasedate="1/9/2014">
- <change>New Share management tab (can disable in settings). Ability to share albums/songs (thanks archrival)</change>
- <change>High quality album art cache (doesn't overwrite existing downloaded art) (thanks archrival)</change>
- <change>Add ability to hide Play next/Play Last/Star/Share from menus</change>
- <change>Add ability to define a separate IP used while browsing via WiFi</change>
- <change>With unlimited bitrate, default to 320 kpbs if transcoding to mp3 (instead of server default of 128 kpbs)</change>
- <change>Show artist as a option under album lists/search albums</change>
- <change>GZip if tomcat/reverse proxy is set up to support it</change>
- <change>Fix for using play next sometimes screwing up playback</change>
- <change>Fix listened to podcasts not being deleted in certain circumstances</change>
- </release>
- <release version="4.3.3" versioncode="77" releasedate="12/25/2013">
- <change>Enable keep starred songs synced in settings</change>
- <change>Enable sync newly added in settings</change>
- <change>Sync notification when new stuff is downloaded (can be disabled)</change>
- <change>Added albums by decade button to home screen on 4.9Beta3+</change>
- <change>Browse genres by album (instead of by song) on 4.9Beta3+</change>
- <change>Sort Podcasts by name</change>
- <change>Sort albums by year on 4.9Beta3+</change>
- <change>Fix clicking on notifications/widgets</change>
- <change>Many sync fixes/improvements</change>
- <change>Background optimizations to improve battery life</change>
- <change>Fix genres not being sorted/weird characters in 4.9Beta3+</change>
- <change>Fix crash turning screen back on in Android 4.3</change>
- <change>Various minor bug fixes</change>
- </release>
- <release version="4.3.2" versioncode="76" releasedate="12/8/2013">
- <change>Click on album art to popup a larger version</change>
- <change>Added Show all media button to replace albums with songs</change>
- <change>Automatically delete podcasts that are > 95% listened to</change>
- <change>Added Show Details button to albums (Year/Genre on Subsonic 4.9Beta3+)</change>
- <change>Fix podcasts syncing trying to redownload ones you delete</change>
- <change>Fix the context menus on the first pane on tablets not working</change>
- <change>Bunch of random bug fixes and enhancements</change>
- </release>
- <release version="4.3.1" versioncode="75" releasedate="11/30/2013">
- <change>Fix search on MusicCabinet servers</change>
- </release>
- <release version="4.3.0" versioncode="74" releasedate="11/30/2013">
- <change>Manage new sync options in Settings -> Cache/Network</change>
- <change>Mark playlists as Keep Synced to auto download whole playlist</change>
- <change>Mark podcasts as Keep Synced to auto download new podcasts</change>
- <change>New Search Provider that searches as you type (thanks Sindre)</change>
- <change>When using "Listen To" search, autoplay artist or albums if they match the query</change>
- <change>Full screen option in Settings. Immersive mode for Android 4.4+</change>
- <change>Fix KitKat's lockscreen scrollbar for Android 4.4+</change>
- <change>Fix crashes on KitKat</change>
- <change>Added Play Next to artist/album context menus + song overflow menu</change>
- <change>Hungarian translation (thanks Andrássy László)</change>
- <change>Tons of bug fixes</change>
- </release>
- <release version="4.2.2" versioncode="71" releasedate="11/22/2013">
- <change>Added starring for artists for 4.9+ Servers</change>
- <change>Add ability to place large widget on lockscreen for Android 4.2+</change>
- <change>Option to use app's custom sorting (on by default)</change>
- <change>Lots of tablet UI enhancements</change>
- <change>Updated translations</change>
- <change>Tons of bug fixes</change>
- </release>
- <release version="4.2.1" versioncode="70" releasedate="11/15/2013">
- <change>Fixed crash when going to download list with Screen On = true</change>
- <change>Fixed crash when changing volume in RC mode</change>
- </release>
- <release version="4.2.0" versioncode="69" releasedate="11/14/2013">
- <change>Changed from tabs to Pull Out Drawer like newer Google docs specify</change>
- <change>Major UI update with better scaling icons</change>
- <change>Updated main app icon (thanks Ben Sumner)</change>
- <change>Added tablet layout that better uses extra space</change>
- <change>New Bookmarks tab</change>
- <change>Persistent notification is like other music apps now (change in settings)</change>
- <change>Ability to hide Podcasts/Bookmarks/Chat tabs</change>
- <change>Pressing next with repeat all on loops back to beginning</change>
- <change>Increase right padding so context buttons are easier to press</change>
- </release>
- <release version="4.1.8" versioncode="66" releasedate="10/26/2013">
- <change>Fix offline shuffle mode</change>
- </release>
- <release version="4.1.7" versioncode="65" releasedate="10/21/2013">
- <change>Settings screen now broken down by sections</change>
- <change>Added option to choose whether or not to pause on headphone/bluetooth disconnect</change>
- <change>Added confirm for clearing current queue</change>
- <change>Added option to hide widget while nothing is playing</change>
- <change>Fix not being able to change position in Jukebox mode</change>
- <change>Fix position not being saved sometimes when pausing during a streamed song</change>
- <change>Fix sometimes the letters not matching the position on the artist list</change>
- <change>Various minor bug fixes</change>
- </release>
- <release version="4.1.6" versioncode="64" releasedate="10/3/2013">
- <change>Fix recent update sometimes messing up downloaded song</change>
- <change>Fix changing position while streaming a song</change>
- </release>
- <release version="4.1.5" versioncode="63" releasedate="9/27/2013">
- <change>Notification while doing background downloads, clicking will show you the download list</change>
- <change>Put songs in the root directory in a new folder called Root at the bottom of the list</change>
- <change>Speedup of saving/loading current playing list (mostly matters for those using large playlists)</change>
- <change>Cache most common folder listings for better experience while network is intermittent</change>
- <change>Speedup of offline playlist loading</change>
- <change>Fix app reloading data/losing position on orientation change</change>
- <change>Fix Show Album from now playing list</change>
- <change>Fix using shuffle in offline mode sometimes using online songs</change>
- <change>Various optimizations and bug fixes</change>
- </release>
- <release version="4.1.4" versioncode="61" releasedate="8/25/2013">
- <change>Fix for freezes on 4.3</change>
- <change>Fix for starred songs/albums not being clickable</change>
- </release>
- <release version="4.1.3" versioncode="60" releasedate="8/21/2013">
- <change>Updated icon</change>
- <change>Moved from ActionBarSherlock to Google's new equivalent library</change>
- <change>Fix podcasts not showing up if server less than 4.8</change>
- <change>Add option to download all podcasts at once (useful for when first adding a new podcast)</change>
- <change>Put back notification for position changing</change>
- <change>Added AlbumArtist, Genre, Track metadata (Android 4.3+)</change>
- <change>Added position updating for AVRCP 1.3 (Android 4.3+)</change>
- <change>Jukebox volume looks nicer</change>
- <change>Jukebox stays active the next time you start DSub</change>
- <change>More optimizations and bug fixes</change>
- </release>
- <release version="4.1.2" versioncode="59" releasedate="7/24/2013">
- <change>Added option to clear cache from settings</change>
- <change>Added cloud settings backup so when you reinstall on the same device your settings are still there</change>
- <change>Fixed Android 4.3 crash</change>
- <change>Performance enhancements</change>
- </release>
- <release version="4.1.1" versioncode="58" releasedate="7/18/2013">
- <change>Fix some podcasts causing errors</change>
- </release>
- <release version="4.1.0" versioncode="57" releasedate="7/17/2013">
- <change>Added Podcast Tab (4.5+)</change>
- <change>Add/Delete Podcast Channels. Manage server status of Podcast Episodes (4.8+)</change>
- <change>Double press pause on headset to skip to next song</change>
- <change>Added HLS as a option under external video players (4.8+). Skipping doesn't seem to work for me.</change>
- <change>Fix pressing play from widget from sometimes starting song over</change>
- <change>Various minor UI tweaks to make things look nicer</change>
- <change>Gapless Playback setting: if off now acts more like base Subsonic app to hopefully fix some issues</change>
- </release>
- <release version="4.0.7" versioncode="56" releasedate="7/2/2013">
- <change>Added offline starring to library view instead of just now playing</change>
- <change>Remove * to show downloading, go off of whether arrow is blue or green for cached/perma cached</change>
- <change>Go back to always showing bottom bar so downloading list is accessible </change>
- <change>Fix offline mode matching first letters against ignore list (ie: the), instead of first word</change>
- <change>Add prompt for removing a server</change>
- <change>Fix some cases where list would incorrectly show up blank</change>
- </release>
- <release version="4.0.6" versioncode="55" releasedate="6/25/2013">
- <change>Scrobble and star songs and sync changes back when going online (has trouble when tags don't match folders)</change>
- <change>Fix cases where operations didn't work in online mode when originally added in offline mode and vice versa</change>
- <change>Added blank option to genre picker in the shuffle dialog</change>
- <change>Added option to show track # in front of song (off by default)</change>
- <change>Separate cached playlists from different servers in separate folders so they don't interfere with each other</change>
- <change>Fix for some music files which throw errors at the end not proceeding to the next song</change>
- <change>Fix flash preference not being obeyed for the Play External option</change>
- <change>As songs are downloaded in background list, automatically remove them</change>
- <change>Fix low quality album artwork in large widgets</change>
- <change>Fix a rare case that can cause a song to be played twice</change>
- <change>Fix for some who listen to untranscoded flac songs</change>
- <change>Remove bottom bar if nothing is in the queue</change>
- <change>Use .nomedia file instead of folder for more compatibility</change>
- <change>Clean some sensitive info from the logs</change>
- </release>
- <release version="4.0.5" versioncode="54" releasedate="6/7/2013">
- <change>Fix album art on old Subsonic/MusicCabinet servers</change>
- </release>
- <release version="4.0.4" versioncode="53" releasedate="6/6/2013">
- <change>Added Genre parsing (thanks archrival)</change>
- <change>Changed Genre to combo selection on 4.8+ servers</change>
- <change>Added video choice similar to Subsonic (Raw is the same as MX but you can choose which player to use)</change>
- <change>Added 4x2, 4x3, 4x4 widgets (thanks archrival)</change>
- <change>Add option to create new playlist when adding song to playlists</change>
- <change>Added option to overwrite existing playlist on 4.7+ servers</change>
- <change>Fix when removing the current server</change>
- <change>Fix edge case in new sort</change>
- </release>
- <release version="4.0.3" versioncode="52" releasedate="5/31/2013">
- <change>Sort by disc number if specified in tags</change>
- <change>Show starred artists in starred list</change>
- <change>Change folder.jpg to albumart.jpg which galleries shouldn't display</change>
- <change>Fix Show Album</change>
- <change>Added support for server Ignored Articles (future server version) + defaults to server's defaults</change>
- <change>On network error return to front of the app instead of exiting all the way</change>
- <change>Fix occasional crash when going back into app after running for a while</change>
- <change>Various minor bugfixes</change>
- </release>
- <release version="4.0.2" versioncode="51" releasedate="5/24/2013">
- <change>Fix if you set chat refresh rate to 0, will just not refresh</change>
- <change>Revert dark theme modification</change>
- <change>New Theme called black which is the pure black background</change>
- <change>Option to disable chat menu, need to exit app and reenter for now</change>
- </release>
-
- <release version="4.0.1" versioncode="50" releasedate="5/23/2013">
- <change>New: Chat Tab (Set chat auto refresh rate from settings)</change>
- <change>New: Dynamic servers, add as many, or remove all but the ones you are using</change>
- <change>New: Added separate setting for songs to preload for Wifi/Mobile</change>
- <change>Improvement: The infinite playlist while shuffling is now persistent between startups</change>
- <change>Theme: White is now more white, got rid of blue text for white theme only</change>
- <change>Theme: Black is now a flat black due to popular request</change>
- <change>Theme: Apply the current theme to settings screen</change>
- <change>Fix: Don't stretch album art on bottom of main tabs</change>
- <change>Fix: Possible fix for some who were having crash on starting EQ</change>
- </release>
-
- <release version="4.0.0" versioncode="48" releasedate="5/16/2013">
- <change>Converted everything to fragments!</change>
- <change>Swipe to switch tabs</change>
- <change>Breadcrumb trail when going down several levels</change>
- <change>Require double tapping back to exit app</change>
- <change>Change log dialog for new versions</change>
- <change>Endless loading on album lists (ie: Random, Recently Added, etc...) instead of pressing more</change>
- <change>Look at what is now playing from main tabs</change>
- <change>Added Playing: Track/Total to Now Playing action bar</change>
- <change>When clicking on a album in search, the parent is also added to the back stack</change>
- <change>Added total time to playlist/album headers</change>
- <change>Fixed a lot of the menu items not working when using search</change>
- <change>Update to Light/Dark themes</change>
- </release>
</changelog> \ No newline at end of file