Skip to content

Commit 596bfc4

Browse files
committed
prepared for 1.25 release
1 parent f7f84c1 commit 596bfc4

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
GH::watch changelog
22
===================
33

4-
## v1.25 (ToDo)
4+
## v1.25 (Dec 4th, 2017)
55
- \#90 Dark theme implemented - it is available in app settings
66

77
## v1.24 (Nov 28th, 2017)

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ to allow access for gh::watch application.
2727
Main features
2828
-------------
2929

30+
### GUI
31+
* Material design
32+
* Light and Dark/Night theme (manual or [automatic](https://developer.android.com/reference/android/support/v7/app/AppCompatDelegate.html#MODE_NIGHT_AUTO) switching) - **new in 1.25**
33+
3034
### Authentication
3135
* OAuth used
3236
* No GithHub password stored on device

app/src/main/java/com/daskiworks/ghwatch/NewVersionInfoDialogFragment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public class NewVersionInfoDialogFragment extends DialogFragment {
4141

4242
private static final String TAG = NewVersionInfoDialogFragment.class.getSimpleName();
4343

44-
private static final String VERSION_VALUE = "1.24";
44+
private static final String VERSION_VALUE = "1.25";
4545

4646
protected View view;
4747

app/src/main/java/com/daskiworks/ghwatch/backend/GHConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*/
2323
public final class GHConstants {
2424

25-
public static final boolean DEBUG = true;
25+
public static final boolean DEBUG = false;
2626

2727
public static final String URL_BASE = "https://api.github.com";
2828

app/src/main/res/values/strings.xml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
<string name="pref_appNightMode">Application theme</string>
112112
<string-array name="pref_appNightMode_entries">
113113
<item>Follow System</item>
114-
<item>Automatic</item>
114+
<item>Automatic Switching</item>
115115
<item>Light</item>
116116
<item>Dark</item>
117117
</string-array>
@@ -267,11 +267,7 @@
267267

268268
<!-- New Version dialog -->
269269
<string name="dialog_nv_title">New version</string>
270-
<string name="dialog_nv_intro_text">Version 1.24 brings minor GUI improvements and fixes.
271-
\n\nVersion 1.23 brought new features and minor bugfix. Most important changes:
272-
\n* Bundled notifications style for Nougat+ devices with actions for individual notifications.
273-
\n* Improved quality of the icon used in the app widget and notification.
274-
\n* Patched two rare crashes.
270+
<string name="dialog_nv_intro_text">Version 1.25 is dedicated to Bluscream, it brings Dark/Night theme for him finally. Visit Settings to set theme behavior.
275271
</string>
276272

277273
<!-- About dialog -->

0 commit comments

Comments
 (0)