Release v2.1.0 beta

multisite
Floens 10 years ago
parent a093188276
commit 7e299ddc8d
  1. 8
      CHANGES.txt
  2. 4
      Clover/app/build.gradle
  3. 25
      Clover/app/src/main/java/org/floens/chan/ui/helper/PreviousVersionHandler.java
  4. 22
      Clover/app/src/main/res/values/strings.xml

@ -1,3 +1,11 @@
New in 2.1.0 (2015-11-18)
This is the release version of 2.0.0 that added:
- Swipeable controllers
- Fixed recaptcha v1
- Added some more advanced options
- Bug fixes
New in 2.0.0 (2015-08-23)
- New design.
- New inline reply layout.

@ -8,8 +8,8 @@ android {
minSdkVersion 14
targetSdkVersion 23
versionName "v2.0.0"
versionCode 51
versionName "v2.1.0"
versionCode 52
}
compileOptions {

@ -32,7 +32,28 @@ import java.io.File;
public class PreviousVersionHandler {
private static final String TAG = "PreviousVersionHandler";
private static final int CURRENT_VERSION = 1;
/*
* Manifest version code, manifest version name, this version mapping:
*
* 28 = v1.1.2
* 32 = v1.1.3
* 36 = v1.2.0
* 39 = v1.2.1
* 40 = v1.2.2
* 41 = v1.2.3
* 42 = v1.2.4
* 43 = v1.2.5
* 44 = v1.2.6
* 46 = v1.2.7
* 47 = v1.2.8
* 48 = v1.2.9
* 49 = v1.2.10
* 50 = v1.2.11
* 51 = v2.0.0 = 1
* 52 = v2.1.0 = 2
*/
private static final int CURRENT_VERSION = 2;
public void run(Context context) {
int previous = ChanSettings.previousVersion.get();
@ -41,6 +62,8 @@ public class PreviousVersionHandler {
cleanupOutdatedIonFolder(context);
}
// Add more previous version checks here
showMessage(context, CURRENT_VERSION);
ChanSettings.previousVersion.set(CURRENT_VERSION);

@ -40,6 +40,28 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
]]>
</string>
<string name="previous_version_2">
<![CDATA[
<h3>Clover was updated</h3>
This is the release of Clover v2, redesigned with the Material design guidelines in mind.<br>
<br>
<b>Biggest changes are:</b><br>
- New design.<br>
- New inline reply layout.<br>
- Added thread hiding.<br>
- Added filtering threads, making posts either highlighted, hidden or removed.<br>
- Added history.<br>
- Added more themes.<br>
- Better album download screen.<br>
- Catalog mode now uses cards.<br>
- More advanced options added.<br>
- Minor features and bug fixes.<br>
<br>
<b>Please provide feedback on GitHub or by writing an email, links are at the bottom of the settings screen.</b>
]]>
</string>
<string name="cancel">Cancel</string>
<string name="add">Add</string>
<string name="close">Close</string>

Loading…
Cancel
Save