Release v1.1.2

captchafix v1.1.2
Florens Douwes 11 years ago
parent 50024c2c62
commit 864a7be6b8
  1. 5
      CHANGES.txt
  2. 2
      Clover/app/build.gradle
  3. 2
      Clover/app/src/main/java/org/floens/chan/utils/ImageSaver.java

@ -1,3 +1,8 @@
New in 1.1.2 (2014-06-18)
- Added quick reply
- Bug fixes and other improvements
New in 1.1 (2014-05-28) New in 1.1 (2014-05-28)
- Added light, dark and black theme - Added light, dark and black theme
- Add option for auto refreshing threads - Add option for auto refreshing threads

@ -9,7 +9,7 @@ android {
targetSdkVersion 19 targetSdkVersion 19
versionName "v1.1.2" versionName "v1.1.2"
versionCode 27 versionCode 28
} }
compileOptions { compileOptions {

@ -104,7 +104,7 @@ public class ImageSaver {
Intent intent = new Intent(Intent.ACTION_SEND); Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("image/*"); intent.setType("image/*");
intent.putExtra(Intent.EXTRA_STREAM, uri); intent.putExtra(Intent.EXTRA_STREAM, uri);
context.startActivity(Intent.createChooser(intent, "WAT")); context.startActivity(Intent.createChooser(intent, context.getString(R.string.action_share)));
} }
} }
}); });

Loading…
Cancel
Save