Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
alessioC42 committed Mar 10, 2024
1 parent 61bc286 commit 234ddbb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
3 changes: 1 addition & 2 deletions app/lib/home_page.dart
@@ -1,5 +1,4 @@
import 'dart:ui';
import 'dart:io';

import 'package:cached_network_image/cached_network_image.dart';
import 'package:sph_plan/shared/apps.dart';
Expand Down Expand Up @@ -94,7 +93,7 @@ class _HomePageState extends State<HomePage> {
isSupported: true,
enableBottomNavigation: false,
enableDrawer: true,
action: (_context) {
action: (context) {
client.getLoginURL().then((response) {
launchUrl(Uri.parse(response));
});
Expand Down
4 changes: 2 additions & 2 deletions app/lib/main.dart
Expand Up @@ -16,7 +16,6 @@ import 'package:sph_plan/client/storage.dart';
import 'package:permission_handler/permission_handler.dart';
import 'package:workmanager/workmanager.dart';
import 'background_service/service.dart' as background_service;
import 'client/connection_checker.dart';

void main() async {
ErrorWidget.builder = (FlutterErrorDetails details) {
Expand Down Expand Up @@ -106,8 +105,9 @@ class App extends StatelessWidget {
return DynamicColorBuilder(builder: (lightDynamic, darkDynamic) {
if (lightDynamic != null && darkDynamic != null) {
Themes.dynamicTheme = Themes.getNewTheme(lightDynamic.primary);
if (globalStorage.prefs.getString("color") == "dynamic")
if (globalStorage.prefs.getString("color") == "dynamic") {
ColorModeNotifier.set("dynamic", Themes.dynamicTheme);
}
}

return ValueListenableBuilder<Themes>(
Expand Down
2 changes: 0 additions & 2 deletions app/lib/startup.dart
@@ -1,5 +1,3 @@
import 'dart:io';

import 'package:cached_network_image/cached_network_image.dart';
import 'package:flutter/material.dart';
import 'package:package_info_plus/package_info_plus.dart';
Expand Down
2 changes: 1 addition & 1 deletion app/pubspec.yaml
Expand Up @@ -16,7 +16,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: 2.13.2+28
version: 2.14.0+29

environment:
sdk: '>=3.1.3 <4.0.0'
Expand Down

0 comments on commit 234ddbb

Please sign in to comment.