Skip to content

Commit

Permalink
New release 209
Browse files Browse the repository at this point in the history
  • Loading branch information
obbimi committed Jan 4, 2019
1 parent b45e280 commit 423d4d8
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 28 deletions.
24 changes: 2 additions & 22 deletions AndroidManifestRacketlon.xml
Original file line number Diff line number Diff line change
@@ -1,28 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.doubleyellow.racketlon"
android:versionCode="206"
android:versionName="4.12">
<!-- 4.08 (19) = revision 790 --> <!-- nov 02: minor improvements -->
<!-- 4.08 (18) = revision 779 --> <!-- okt 21: better handling of dialogs/network timeouts -->
<!-- 4.08 (17) = revision 771 --> <!-- sep 25: color for checkbox in matchview -->
<!-- 4.08 (17) = revision 771 --> <!-- sep 25: color in dialogs + minor bug fixes -->
<!-- 4.08 (17) = revision 771 --> <!-- sep 25: allow starting a match from feeds player list -->
<!-- 4.08 (16) = revision 759 --> <!-- aug 04: copy country code when selecting player fix -->
<!-- 4.08 (15) = revision 758 --> <!-- jul 31: improvements for live scoring -->
<!-- 4.07 (14) = revision 747 --> <!-- jul 18: easily change sides/flip players -->
<!-- 4.06 (13) = revision 741 --> <!-- jul 16: download fix for android 7 + improved sharing for Doubles -->
<!-- 4.05 (12) = revision 735 --> <!-- jul 11: improved match(ball) 'calculation' in last set + add missing Dutch translations -->
<!-- 4.04 (11) = revision 728 --> <!-- jul 09: allow different sequence + double improvements -->
<!-- 4.03 (10) = revision 725 --> <!-- jul 07: minor bugfixes -->
<!-- 4.02 ( 9) = revision 718 --> <!-- jul 04: minor fixes: end game incorrect warning 'not allowed' after rotation -->
<!-- 4.01 ( 7) = revision 704 --> <!-- jun 28: static match selection did not remember country because of faulty getTemp() model -->
<!-- 4.01 ( 6) = revision 703 --> <!-- jun 27: refresh select list by means of swipe down-->
<!-- 4.01 ( 5) = revision 701 --> <!-- jun 24: fix the AdjustScore dialog for racketlon-->
<!-- 4.01 ( 4) = revision 699 --> <!-- jun 19: match result summary should be something like A+24 or B+15, usage of separate racketlon.dy.be subdomain -->
<!-- 4.00 ( 3) = revision 694 --> <!-- jun 18: added missing dutch translations -->
<!-- 4.00 ( 2) = revision 692 --> <!-- jun 17: few fixes -->
<!-- 4.00 ( 1) = revision 691 --> <!-- jun 16: first racketlon version -->
android:versionCode="209"
android:versionName="4.17">
<!--
<uses-feature android:name="android.permission.SEND_SMS" android:required="false" />
<uses-feature android:name="android.permission.INTERNET" android:required="true" />
Expand Down
2 changes: 1 addition & 1 deletion AndroidManifestTabletennis.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.doubleyellow.tabletennis"
android:versionCode="208"
android:versionCode="209"
android:versionName="4.17">
<!--
<uses-feature android:name="android.permission.SEND_SMS" android:required="false" />
Expand Down
2 changes: 1 addition & 1 deletion res/raw/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
## 4.16 (dec 2018)

- allow 'undo' for both players by swiping left-to-right or right-to-left
- for player who score last this was already possible
- for player who scored last this was already possible
- for other player a dialog will pop-up to confirm the undo last score made for this player

## 4.15 (nov 2018)
Expand Down
5 changes: 5 additions & 0 deletions res/raw/changelog_racketlon.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 4.17 (jan 2019)

- improve autocomplete for double player names
- Other minor improvements

## 4.12 (aug 2018)

- upgraded to use new google-play library to improve ChromeCast for e.g. Android 8
Expand Down
2 changes: 1 addition & 1 deletion res/raw/changelog_tabletennis.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
## 4.16 (dec 2018)

- allow 'undo' for both players by swiping left-to-right or right-to-left
- for player who score last this was already possible
- for player who scored last this was already possible
- for other player a dialog will pop-up to confirm the undo last score made for this player
- fix bug in serve sequence for doubles

Expand Down
6 changes: 3 additions & 3 deletions src/com/doubleyellow/scoreboard/prefs/PreferenceValues.java
Original file line number Diff line number Diff line change
Expand Up @@ -1564,14 +1564,14 @@ public static StartupAction getStartupAction(Context context) {
// very first install/run

int appVersionCode = RWValues.getAppVersionCode(context);
final int NO_SHOWCASE_FOR_VERSION = 208;
final String NO_SHOWCASE_FOR_VERSION_BEFORE = "2019-01-02";
final int NO_SHOWCASE_FOR_VERSION = 209;
final String NO_SHOWCASE_FOR_VERSION_BEFORE = "2019-01-05";
if ( appVersionCode > NO_SHOWCASE_FOR_VERSION ) {
// need to adjust the datecheck below
Log.w(TAG, "[getStartupAction] Adjust version code check!!");
//throw new RuntimeException("[getStartupAction] Adjust version code check!!");
}
if ( appVersionCode == NO_SHOWCASE_FOR_VERSION && DateUtil.getCurrentYYYY_MM_DD().compareTo(NO_SHOWCASE_FOR_VERSION_BEFORE) < 0 ) {
if ( appVersionCode >= NO_SHOWCASE_FOR_VERSION && DateUtil.getCurrentYYYY_MM_DD().compareTo(NO_SHOWCASE_FOR_VERSION_BEFORE) < 0 ) {
// to allow google play store to run the app and monkey test it without the showcase/quickintro coming into the way
return StartupAction.None;
}
Expand Down

0 comments on commit 423d4d8

Please sign in to comment.