diff options
author | Allan Wang <me@allanwang.ca> | 2019-09-08 00:19:57 -0700 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2019-09-08 00:19:57 -0700 |
commit | 4e09cf236f8aa33f3ceb67ce907e920ed1f81dc0 (patch) | |
tree | 4930b1fb54c6e778e1b6c16dbd70a7f3174a02ba | |
parent | ad0fcdcb581ee036ace2c55524069b2beef3603a (diff) | |
download | frost-4e09cf236f8aa33f3ceb67ce907e920ed1f81dc0.tar.gz frost-4e09cf236f8aa33f3ceb67ce907e920ed1f81dc0.tar.bz2 frost-4e09cf236f8aa33f3ceb67ce907e920ed1f81dc0.zip |
Update changelog and apply spotless
-rw-r--r-- | app/src/main/kotlin/com/pitchedapps/frost/settings/Experimental.kt | 1 | ||||
-rw-r--r-- | app/src/main/play/en-US/whatsnew | 11 | ||||
-rw-r--r-- | app/src/main/res/xml/frost_changelog.xml | 4 | ||||
-rw-r--r-- | app/src/test/kotlin/com/pitchedapps/frost/facebook/requests/FbRequestTest.kt | 1 | ||||
-rw-r--r-- | docs/Changelog.md | 3 |
5 files changed, 10 insertions, 10 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/settings/Experimental.kt b/app/src/main/kotlin/com/pitchedapps/frost/settings/Experimental.kt index a73dc1a4..5647584e 100644 --- a/app/src/main/kotlin/com/pitchedapps/frost/settings/Experimental.kt +++ b/app/src/main/kotlin/com/pitchedapps/frost/settings/Experimental.kt @@ -23,7 +23,6 @@ import com.pitchedapps.frost.R import com.pitchedapps.frost.activities.SettingsActivity import com.pitchedapps.frost.utils.Prefs import com.pitchedapps.frost.utils.REQUEST_RESTART_APPLICATION -import com.pitchedapps.frost.utils.Showcase /** * Created by Allan Wang on 2017-06-29. diff --git a/app/src/main/play/en-US/whatsnew b/app/src/main/play/en-US/whatsnew index dfb4e201..4db2b010 100644 --- a/app/src/main/play/en-US/whatsnew +++ b/app/src/main/play/en-US/whatsnew @@ -1,10 +1,3 @@ -v2.3.2 +v2.4.0 -* Disable auto feed refresh by default and add setting to re-enable it -* Update theme -* Disable bugsnag completely when opting out of analytics -* Filter urls before sending to other apps -* Allow hiding main fab (see settings > newsfeed) -* Add some experimental options to debug login problems (settings > experimental) -* Enforce desktop user agent for now -* Obfuscate js tags
\ No newline at end of file +* Removed web only mode for auth requests. Marking notifications as read is now disabled by default to deal with phishing accusations.
\ No newline at end of file diff --git a/app/src/main/res/xml/frost_changelog.xml b/app/src/main/res/xml/frost_changelog.xml index 6142f595..42739ab1 100644 --- a/app/src/main/res/xml/frost_changelog.xml +++ b/app/src/main/res/xml/frost_changelog.xml @@ -6,6 +6,10 @@ <item text="" /> --> + <version title="v2.4.0" /> + <item text="Removed web only mode for auth requests. Marking notifications as read is now disabled by default to deal with phishing accusations." /> + <item text="" /> + <item text="" /> <version title="v2.3.2" /> <item text="Disable auto feed refresh by default and add setting to re-enable it" /> diff --git a/app/src/test/kotlin/com/pitchedapps/frost/facebook/requests/FbRequestTest.kt b/app/src/test/kotlin/com/pitchedapps/frost/facebook/requests/FbRequestTest.kt index 8610436a..67f62a40 100644 --- a/app/src/test/kotlin/com/pitchedapps/frost/facebook/requests/FbRequestTest.kt +++ b/app/src/test/kotlin/com/pitchedapps/frost/facebook/requests/FbRequestTest.kt @@ -65,6 +65,7 @@ class FbRequestTest { } @Test + @Ignore("Post requests are now experimental") fun markNotification() { val notifId = 1514443903880 AUTH.markNotificationRead(notifId).call.assertNoError() diff --git a/docs/Changelog.md b/docs/Changelog.md index 31315d04..224607e4 100644 --- a/docs/Changelog.md +++ b/docs/Changelog.md @@ -1,5 +1,8 @@ # Changelog +## v2.4.0 +* Removed web only mode for auth requests. Marking notifications as read is now disabled by default to deal with phishing accusations. + ## v2.3.2 * Disable auto feed refresh by default and add setting to re-enable it * Update theme |