Skip to content

Commit

Permalink
Update version, changelog, README, help
Browse files Browse the repository at this point in the history
  • Loading branch information
billthefarmer committed Dec 22, 2023
1 parent 5ce4190 commit a45586e
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ centre is filled in once the app has a GPS location.
The app widget will show the bus times from the last stop viewed. The
widget will update periodically for about 5 minutes. Tap the refresh
button to update again. Due to restrictions in later versions of
android the refresh button will no longer work after a short
android the refresh button may no longer work after a short
period. Tap the widget anywhere to show the app. The widget will
update when the app is dismissed and the refresh button will work
again.
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ android {
applicationId "org.billthefarmer.buses"
minSdkVersion 21
targetSdkVersion 31
versionName "1.06"
versionCode 106
versionName "1.07"
versionCode 107

buildConfigField "long", "BUILT", System.currentTimeMillis() + "L"
}
Expand Down
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-GB/changelogs/107.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Fix issue with HTTP error
3 changes: 1 addition & 2 deletions src/main/java/org/billthefarmer/buses/Buses.java
Original file line number Diff line number Diff line change
Expand Up @@ -849,8 +849,7 @@ protected void onPostExecute(Document doc)
link.attr("href"));
if (url.matches(SEARCH_PATTERN))
continue;
if (BuildConfig.DEBUG)
Log.d(TAG, "StopsTask " + url);

urls.add(url);
String s = link.text();
list.add(s);
Expand Down
10 changes: 10 additions & 0 deletions src/main/res/raw/help.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,16 @@ <h3>Navigate</h3>
location. The button icon centre is filled in once the app has a GPS
location.
</p>
<h3>Widget</h3>
<p>
The app widget will show the bus times from the last stop
viewed. The widget will update periodically for about 5 minutes. Tap
the refresh button to update again. Due to restrictions in later
versions of android the refresh button may no longer work after a
short period. Tap the widget anywhere to show the app. The widget
will update when the app is dismissed and the refresh button will
work again.
</p>
<h3>Permissions</h3>
<p>
The app will ask for location and file access permissions. The
Expand Down

0 comments on commit a45586e

Please sign in to comment.