From 74986cb2a593deca85e2eda83d1fb18d5485f7f0 Mon Sep 17 00:00:00 2001 From: Scott Jackson Date: Thu, 6 Oct 2016 17:43:31 -0700 Subject: Convert ServerProxy to HttpUrlConnection and remove last traces of apache.http (closes #564) --- app/build.gradle | 1 - 1 file changed, 1 deletion(-) (limited to 'app/build.gradle') diff --git a/app/build.gradle b/app/build.gradle index 075e403c..50bbb69b 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -3,7 +3,6 @@ apply plugin: 'com.android.application' android { compileSdkVersion 23 buildToolsVersion "23.0.3" - useLibrary 'org.apache.http.legacy' defaultConfig { applicationId "github.daneren2005.dsub" -- cgit v1.2.3 From 406b996e0cbb2a708606ddee4a0a12d90136dcf0 Mon Sep 17 00:00:00 2001 From: Scott Jackson Date: Thu, 13 Oct 2016 16:05:46 -0700 Subject: DSub released to Beta to test out connection logic --- app/build.gradle | 4 ++-- app/src/main/res/xml/changelog.xml | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) (limited to 'app/build.gradle') diff --git a/app/build.gradle b/app/build.gradle index 50bbb69b..92dfa731 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -8,8 +8,8 @@ android { applicationId "github.daneren2005.dsub" minSdkVersion 14 targetSdkVersion 23 - versionCode 187 - versionName '5.3.1' + versionCode 188 + versionName '5.3.2 BETA' setProperty("archivesBaseName", "DSub $versionName") resConfigs "de", "es", "fr", "hu", "nl", "pt-rPT", "ru", "sv" } diff --git a/app/src/main/res/xml/changelog.xml b/app/src/main/res/xml/changelog.xml index 169edaa0..7abec09c 100644 --- a/app/src/main/res/xml/changelog.xml +++ b/app/src/main/res/xml/changelog.xml @@ -1,5 +1,11 @@ + + Add support for casting Internet Radio to ChromeCast/DLNA + Add support for Play Title by Artist from Google Search + Use Google Play SSL + Move to more modern connection framework + Fix Internet Radio streams which point to playlists Don't show playback speed button below Android 6.0 -- cgit v1.2.3 From 862e767d938c1a3e574a8ecf58d9e7f0c83786f9 Mon Sep 17 00:00:00 2001 From: Scott Jackson Date: Mon, 17 Oct 2016 17:08:34 -0700 Subject: Second beta released with self-signed cert fixes --- app/build.gradle | 4 ++-- app/src/main/res/xml/changelog.xml | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) (limited to 'app/build.gradle') diff --git a/app/build.gradle b/app/build.gradle index 92dfa731..47b3df01 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -8,8 +8,8 @@ android { applicationId "github.daneren2005.dsub" minSdkVersion 14 targetSdkVersion 23 - versionCode 188 - versionName '5.3.2 BETA' + versionCode 189 + versionName '5.3.2 BETA 2' setProperty("archivesBaseName", "DSub $versionName") resConfigs "de", "es", "fr", "hu", "nl", "pt-rPT", "ru", "sv" } diff --git a/app/src/main/res/xml/changelog.xml b/app/src/main/res/xml/changelog.xml index 7abec09c..b1dd5930 100644 --- a/app/src/main/res/xml/changelog.xml +++ b/app/src/main/res/xml/changelog.xml @@ -1,5 +1,11 @@ + + Fix errors with Self Signed Certificates + Fix error following redirect from http to https + Fix Show all media sometimes failing + Show album instead of artist for Show all media + Add support for casting Internet Radio to ChromeCast/DLNA Add support for Play Title by Artist from Google Search -- cgit v1.2.3 From 862f70536f672ff91bea830e42d4a906f8a466ae Mon Sep 17 00:00:00 2001 From: Scott Jackson Date: Fri, 21 Oct 2016 18:13:14 -0700 Subject: Upgrade to support library v24 --- app/build.gradle | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'app/build.gradle') diff --git a/app/build.gradle b/app/build.gradle index 47b3df01..e6581796 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,7 +1,7 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 23 + compileSdkVersion 24 buildToolsVersion "23.0.3" defaultConfig { @@ -46,11 +46,11 @@ android { dependencies { compile project(':Server Proxy') compile fileTree(include: ['*.jar'], dir: 'libs') - compile 'com.android.support:support-v4:23.4.+' - compile 'com.android.support:appcompat-v7:23.4.+' - compile 'com.android.support:mediarouter-v7:23.4.+' - compile 'com.android.support:recyclerview-v7:23.4.+' - compile 'com.android.support:design:23.4.+' + compile 'com.android.support:support-v4:24.2.+' + compile 'com.android.support:appcompat-v7:24.2.+' + compile 'com.android.support:mediarouter-v7:24.2.+' + compile 'com.android.support:recyclerview-v7:24.2.+' + compile 'com.android.support:design:24.2.+' compile 'com.google.android.gms:play-services-cast:8.1.0' compile 'com.sothree.slidinguppanel:library:3.0.0' compile 'de.hdodenhof:circleimageview:1.2.1' -- cgit v1.2.3 From 2ed855cd6d14eacd77a578f4d8ac8c80ebe516de Mon Sep 17 00:00:00 2001 From: Scott Jackson Date: Sat, 22 Oct 2016 14:13:25 -0700 Subject: DSub 5.3.2 released --- app/build.gradle | 4 ++-- app/src/main/res/xml/changelog.xml | 14 ++++++-------- 2 files changed, 8 insertions(+), 10 deletions(-) (limited to 'app/build.gradle') diff --git a/app/build.gradle b/app/build.gradle index e6581796..5f46aab8 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -8,8 +8,8 @@ android { applicationId "github.daneren2005.dsub" minSdkVersion 14 targetSdkVersion 23 - versionCode 189 - versionName '5.3.2 BETA 2' + versionCode 190 + versionName '5.3.2' setProperty("archivesBaseName", "DSub $versionName") resConfigs "de", "es", "fr", "hu", "nl", "pt-rPT", "ru", "sv" } diff --git a/app/src/main/res/xml/changelog.xml b/app/src/main/res/xml/changelog.xml index b1dd5930..dc77a5a3 100644 --- a/app/src/main/res/xml/changelog.xml +++ b/app/src/main/res/xml/changelog.xml @@ -1,16 +1,14 @@ - - Fix errors with Self Signed Certificates - Fix error following redirect from http to https - Fix Show all media sometimes failing - Show album instead of artist for Show all media - - + Add support for casting Internet Radio to ChromeCast/DLNA Add support for Play Title by Artist from Google Search - Use Google Play SSL Move to more modern connection framework + Use Google Play SSL + Show album instead of artist for Show all media + Ask for location permissions for Day/Night themes + Fix a change to the ChromeCast API + Fix Show all media sometimes failing Fix Internet Radio streams which point to playlists -- cgit v1.2.3