Skip to content

Commit

Permalink
Update Version
Browse files Browse the repository at this point in the history
  • Loading branch information
Kara-Zor-El committed Nov 1, 2022
1 parent 9d231b8 commit d1fef92
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/providers/login.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class Login {
const _client = "jellybook";
const _device = "Unknown Device";
const _deviceId = "Unknown Device id";
const _version = "0.0.2";
const _version = "1.0.3";

if ((!url.contains("http://") || !url.contains("https://")) == false) {
debugPrint("URL does not contain http:// or https://");
Expand Down
2 changes: 1 addition & 1 deletion lib/screens/home_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ Future<List<Map<String, dynamic>>> getServerCategories() async {
final client = prefs.getString('client') ?? "JellyBook";
final device = prefs.getString('device') ?? "";
final deviceId = prefs.getString('deviceId') ?? "";
final version = prefs.getString('version') ?? "1.0.2";
final version = prefs.getString('version') ?? "1.0.3";
debugPrint("got prefs");
Map<String, String> headers =
getHeaders(url, client, device, deviceId, version, token);
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix.
version: 1.0.2
version: 1.0.3

environment:
sdk: '>=2.18.2 <3.0.0'
Expand Down

0 comments on commit d1fef92

Please sign in to comment.