Skip to content

Commit

Permalink
Fix macOS updater
Browse files Browse the repository at this point in the history
Version bump (Mac-only)
  • Loading branch information
Samplasion committed Feb 28, 2022
1 parent 717e788 commit cb7e0ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/components/Utilities/updates/config.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ AppcastConfiguration? getAppcastConfig() {
url: appcastURL,
supportedOS: ['android'],
);
} else if (Platform.isIOS) {
} else if (Platform.isMacOS) {
final appcastURL = 'https://samplasion.github.io/reaxios/appcast_mac.xml';
return AppcastConfiguration(
url: appcastURL,
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 0.5.1
version: 0.5.2

environment:
sdk: ">=2.13.0 <3.0.0"
Expand Down

0 comments on commit cb7e0ca

Please sign in to comment.