From 05f923ebe256b71636e2369d48450a52ab87f944 Mon Sep 17 00:00:00 2001 From: alifeflow Date: Sun, 25 Mar 2018 16:00:42 +0900 Subject: [Ture Black] True Black Theme for AMOLED Add true black themese Modified code that fails to support three themes --- core/src/main/res/values-v19/colors.xml | 1 + core/src/main/res/values-v21/styles.xml | 13 +++++++++++ core/src/main/res/values/arrays.xml | 2 ++ core/src/main/res/values/colors.xml | 1 + core/src/main/res/values/strings.xml | 1 + core/src/main/res/values/styles.xml | 40 +++++++++++++++++++++++++++++++++ 6 files changed, 58 insertions(+) (limited to 'core/src/main/res') diff --git a/core/src/main/res/values-v19/colors.xml b/core/src/main/res/values-v19/colors.xml index 16c065d75..08982735a 100644 --- a/core/src/main/res/values-v19/colors.xml +++ b/core/src/main/res/values-v19/colors.xml @@ -1,5 +1,6 @@ #484B4D + #000000 #E3E3E3 \ No newline at end of file diff --git a/core/src/main/res/values-v21/styles.xml b/core/src/main/res/values-v21/styles.xml index 503337c95..c53000c4f 100644 --- a/core/src/main/res/values-v21/styles.xml +++ b/core/src/main/res/values-v21/styles.xml @@ -6,6 +6,19 @@ + + + + + + + @@ -255,6 +275,26 @@ @drawable/ic_cast_disconnect_white_36dp + + + + + -- cgit v1.2.3 From deb2cea72f0f50d5ad2e3248bc8adc65ac896275 Mon Sep 17 00:00:00 2001 From: alifeflow Date: Sat, 14 Apr 2018 14:09:19 +0900 Subject: [True Black] Cleaning up Code Remove unused imports and redundant values Coding style adjustment --- .../res/drawable/progress_bar_horizontal_trueblack.xml | 15 +++++++++++++++ core/src/main/res/values-v19/colors.xml | 1 - core/src/main/res/values/colors.xml | 1 + 3 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 core/src/main/res/drawable/progress_bar_horizontal_trueblack.xml (limited to 'core/src/main/res') diff --git a/core/src/main/res/drawable/progress_bar_horizontal_trueblack.xml b/core/src/main/res/drawable/progress_bar_horizontal_trueblack.xml new file mode 100644 index 000000000..73ad5b37c --- /dev/null +++ b/core/src/main/res/drawable/progress_bar_horizontal_trueblack.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/core/src/main/res/values-v19/colors.xml b/core/src/main/res/values-v19/colors.xml index 08982735a..16c065d75 100644 --- a/core/src/main/res/values-v19/colors.xml +++ b/core/src/main/res/values-v19/colors.xml @@ -1,6 +1,5 @@ #484B4D - #000000 #E3E3E3 \ No newline at end of file diff --git a/core/src/main/res/values/colors.xml b/core/src/main/res/values/colors.xml index 9d020b0e4..84ae5cbc0 100644 --- a/core/src/main/res/values/colors.xml +++ b/core/src/main/res/values/colors.xml @@ -21,6 +21,7 @@ #669900 #80000000 + #286E8A #286E8A #81CFEA -- cgit v1.2.3 From 12ee8d89b2fd7eeebcf3ec0432ffb343e07f81d2 Mon Sep 17 00:00:00 2001 From: alifeflow Date: Sat, 14 Apr 2018 14:29:47 +0900 Subject: [True Black] Fix UI Elements Add true black style for progress bar Add true black style for item description Add true black style for web description --- core/src/main/res/drawable/progress_bar_horizontal_trueblack.xml | 2 +- core/src/main/res/values/styles.xml | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) (limited to 'core/src/main/res') diff --git a/core/src/main/res/drawable/progress_bar_horizontal_trueblack.xml b/core/src/main/res/drawable/progress_bar_horizontal_trueblack.xml index 73ad5b37c..604bb2655 100644 --- a/core/src/main/res/drawable/progress_bar_horizontal_trueblack.xml +++ b/core/src/main/res/drawable/progress_bar_horizontal_trueblack.xml @@ -2,7 +2,7 @@ - + diff --git a/core/src/main/res/values/styles.xml b/core/src/main/res/values/styles.xml index 441c7addd..7587585cc 100644 --- a/core/src/main/res/values/styles.xml +++ b/core/src/main/res/values/styles.xml @@ -132,6 +132,7 @@ + + -- cgit v1.2.3 From 7ad176ce299bb2abfa3698ce64ffc69b16cfdc8b Mon Sep 17 00:00:00 2001 From: ByteHamster Date: Wed, 10 Jan 2018 21:50:29 +0100 Subject: Added notification categories Android treats IMPORTANCE_DEFAULT as IMPORTANCE_HIGH https://issuetracker.google.com/issues/65108694 --- core/src/main/res/values/strings.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'core/src/main/res') diff --git a/core/src/main/res/values/strings.xml b/core/src/main/res/values/strings.xml index 46bac68c9..2e7cc7149 100644 --- a/core/src/main/res/values/strings.xml +++ b/core/src/main/res/values/strings.xml @@ -709,4 +709,14 @@ Failed to seek to the new position on the cast device Receiver player has encountered a severe error Error playing media. Skipping… + + + Action required + Shown if your action is required + Downloading + Shown while currently downloading + Currently playing + Allows to control playback + Errors + Shown if something went wrong -- cgit v1.2.3 From 3e98ab61ea50b320989c26f6548303fd91447073 Mon Sep 17 00:00:00 2001 From: ByteHamster Date: Sun, 22 Apr 2018 22:21:46 +0200 Subject: Start PlaybackService lazily to allow using ForegroundService --- core/src/main/res/values/strings.xml | 3 +++ 1 file changed, 3 insertions(+) (limited to 'core/src/main/res') diff --git a/core/src/main/res/values/strings.xml b/core/src/main/res/values/strings.xml index 2e7cc7149..5759912d1 100644 --- a/core/src/main/res/values/strings.xml +++ b/core/src/main/res/values/strings.xml @@ -29,6 +29,7 @@ %1$s free Episode cache full The episode cache limit has been reached. You can increase the cache size in the Settings. + Synchronizing… Total time of podcasts played: @@ -719,4 +720,6 @@ Allows to control playback Errors Shown if something went wrong + gpodder.net + Shown while currently synchronizing -- cgit v1.2.3 From 686801fea2fbe162fae9f1c64ab204587e19fc95 Mon Sep 17 00:00:00 2001 From: ByteHamster Date: Fri, 4 May 2018 17:51:12 +0200 Subject: Switched to PreferenceCompat --- core/src/main/res/values/styles.xml | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'core/src/main/res') diff --git a/core/src/main/res/values/styles.xml b/core/src/main/res/values/styles.xml index 77758a223..3a215588e 100644 --- a/core/src/main/res/values/styles.xml +++ b/core/src/main/res/values/styles.xml @@ -67,6 +67,7 @@ @drawable/ic_create_new_folder_grey600_24dp @drawable/ic_cast_disconnect_grey600_36dp @color/master_switch_background_light + @style/PreferenceThemeOverlay.v14.Material @@ -136,6 +137,7 @@ @drawable/ic_create_new_folder_white_24dp @drawable/ic_cast_disconnect_white_36dp @color/master_switch_background_dark + @color/highlight_dark @style/PreferenceThemeOverlay.v14.Material @@ -227,6 +229,7 @@ @drawable/ic_create_new_folder_grey600_24dp @drawable/ic_cast_disconnect_grey600_36dp @color/master_switch_background_light + @color/highlight_light @style/PreferenceThemeOverlay.v14.Material @@ -297,6 +300,7 @@ @drawable/ic_create_new_folder_white_24dp @drawable/ic_cast_disconnect_white_36dp @color/master_switch_background_dark + @color/highlight_dark @style/PreferenceThemeOverlay.v14.Material @@ -312,6 +316,7 @@ @drawable/ic_drag_vertical_white_48dp @color/black @color/black + @color/highlight_trueblack @color/white @color/white @color/black -- cgit v1.2.3