aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2014-03-03 17:49:10 -0800
committerScott Jackson <daneren2005@gmail.com>2014-03-03 17:49:10 -0800
commitd1da3fcf362584224aba0dbf6ba77cc47f079b14 (patch)
treea1d944f4360daa007d5ca6b487ebe7ca35d1630c
parentf8be58791ef6089707c5fb29dd0eefdc5e1b25e3 (diff)
downloaddsub-d1da3fcf362584224aba0dbf6ba77cc47f079b14.tar.gz
dsub-d1da3fcf362584224aba0dbf6ba77cc47f079b14.tar.bz2
dsub-d1da3fcf362584224aba0dbf6ba77cc47f079b14.zip
DSub 4.5.4 Released
-rw-r--r--AndroidManifest.xml4
-rw-r--r--res/raw/changelog.xml3
-rw-r--r--src/github/daneren2005/dsub/util/FileUtil.java2
3 files changed, 6 insertions, 3 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 6858e64c..f2d4740d 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -2,8 +2,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="github.daneren2005.dsub"
android:installLocation="internalOnly"
- android:versionCode="93"
- android:versionName="4.5.3">
+ android:versionCode="94"
+ android:versionName="4.5.4">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
diff --git a/res/raw/changelog.xml b/res/raw/changelog.xml
index 1bf5d58a..fb208892 100644
--- a/res/raw/changelog.xml
+++ b/res/raw/changelog.xml
@@ -1,5 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<changelog>
+ <release version="4.5.4" versioncode="94" releasedate="3/3/2014">
+ <change>Fix cache location reset for Samsung upgrades</change>
+ </release>
<release version="4.5.3" versioncode="93" releasedate="2/26/2014">
<change>WARNING: Please read the first change!</change>
<change>Google changed Android so that apps can only write to a specific location on a SD card for 4.4+. Samsung is currently upgrading their phones to 4.4, so if you have a Galaxy phone you will probably receive a notification that the cache location has been changed to the only place DSub can write to now. Everyone else's settings will be left alone, but the default cache location has also been changed.</change>
diff --git a/src/github/daneren2005/dsub/util/FileUtil.java b/src/github/daneren2005/dsub/util/FileUtil.java
index 197a0149..a1983fde 100644
--- a/src/github/daneren2005/dsub/util/FileUtil.java
+++ b/src/github/daneren2005/dsub/util/FileUtil.java
@@ -369,7 +369,7 @@ public class FileUtil {
return true;
}
public static boolean verifyCanWrite(File dir) {
- if(ensureDirectoryExistsAndIsReadWritable(dir) {
+ if(ensureDirectoryExistsAndIsReadWritable(dir)) {
try {
File tmp = File.createTempFile("tmp", "tmp", dir);
tmp.delete();