Skip to content
This repository has been archived by the owner on Sep 25, 2021. It is now read-only.

Commit

Permalink
Release v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
floens committed Oct 3, 2016
1 parent 1ec8248 commit 4023895
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 3 deletions.
17 changes: 17 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
New in 2.2.0 (2016-10-03)
- Add sliding of threads back.
- Rewrote thread watching, it's more stable and works correctly with doze now.
- Optimized parsing with multithreading.
- Added album view.
- Added bookmark clearing.

- Added inline reporting.
- All boards are added by default now.
- Thread positions are retained across restarts.
- Allow setting of multiple types on filters simultaneously.
- Made single frame gifs zoomable.
- Add saving of images into their own board folder.
- More advanced settings.
- Many bug fixes.


New in 2.1.3 (2016-01-28)
- New Google Play release

Expand Down
4 changes: 2 additions & 2 deletions Clover/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ android {
minSdkVersion 15
targetSdkVersion 24

versionName "v2.1.3"
versionCode 55
versionName "v2.2.0"
versionCode 56
}

compileOptions {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,9 @@ public class PreviousVersionHandler {
* 53 = v2.1.1 = 2
* 54 = v2.1.2 = 2
* 55 = v2.1.3 = 2
* 56 = v2.2.0 = 3
*/
private static final int CURRENT_VERSION = 2;
private static final int CURRENT_VERSION = 3;

public void run(Context context) {
int previous = ChanSettings.previousVersion.get();
Expand Down
26 changes: 26 additions & 0 deletions Clover/app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,32 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
]]>
</string>

<string name="previous_version_3">
<![CDATA[
<h3>Clover was updated</h3>
Clover was updated to v2.2.0<br>
<br>
<b>New in this version:</b><br>
Add sliding of threads back.<br>
Rewrote thread watching, it\'s more stable and works correctly with doze now.<br>
Optimized parsing with multithreading.<br>
Added album view.<br>
Added bookmark clearing.<br>
<br>
Added inline reporting.<br>
All boards are added by default now.<br>
Thread positions are retained across restarts.<br>
Allow setting of multiple types on filters simultaneously.<br>
Made single frame gifs zoomable.<br>
Add saving of images into their own board folder.<br>
More advanced settings.<br>
Many bug fixes.<br>
<br>
Many thanks to the contributors on GitHub!
]]>
</string>

<string name="cancel">Cancel</string>
<string name="add">Add</string>
<string name="close">Close</string>
Expand Down

0 comments on commit 4023895

Please sign in to comment.