Skip to content

Commit

Permalink
(MINOR) bump min SDK version to 3.2.2 (weather api support)
Browse files Browse the repository at this point in the history
  • Loading branch information
Laverlin committed Aug 31, 2023
1 parent ce17ae4 commit 97dd421
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,15 @@ jobs:
with:
tag_prefix: "v"

minor_pattern: "(MINOR)"
search_commit_body: true
# A string to determine the format of the version output
# version_format: "${major}.${minor}.${patch}-prerelease${increment}"
version_format: "${major}.${minor}.${patch}"

# If this is set to true, *every* commit will be treated as a new version.
bump_each_commit: true

# If bump_each_commit is also set to true, setting this value will cause the version to increment only if the pattern specified is matched.
search_commit_body: false

- name: Write Version
run: |
Expand Down
2 changes: 1 addition & 1 deletion manifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<!-- This is a generated file. It is highly recommended that you DO NOT edit this file. -->
<iq:manifest xmlns:iq="http://www.garmin.com/xml/connectiq" version="3">
<iq:application entry="YetAnotherWatchFaceApp" id="6f2d38ac1fc845fe82a0399df4aaacc1" launcherIcon="@Drawables.LauncherIcon" minSdkVersion="3.0.0" name="@Strings.AppName" type="watchface">
<iq:application entry="YetAnotherWatchFaceApp" id="6f2d38ac1fc845fe82a0399df4aaacc1" launcherIcon="@Drawables.LauncherIcon" minSdkVersion="3.2.0" name="@Strings.AppName" type="watchface">
<iq:products>
<iq:product id="approachs7047mm"/>
<iq:product id="d2airx10"/>
Expand Down
2 changes: 0 additions & 2 deletions source/BackgroundServiceDelegate.mc
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ class BackgroundServiceDelegate extends Sys.ServiceDelegate
{
// Request update if one of the remote services displayed
//
//var location = Setting.GetLastKnownLocation();
if (Setting.GetIsShowExchangeRate()
|| Setting.GetIsShowCity()
|| Setting.GetIsShowWeather())
Expand All @@ -41,7 +40,6 @@ class BackgroundServiceDelegate extends Sys.ServiceDelegate
}
}


function RequestUpdate()
{
var weatherProviders = ["OpenWeather", "AppleDarkSky"];
Expand Down

0 comments on commit 97dd421

Please sign in to comment.