Merge branch 'master' into feature-add-homepage-title

This commit is contained in:
Shawn 2022-09-06 13:36:01 -06:00
commit d7fce78dde
7 changed files with 60 additions and 10 deletions

View File

@ -1,5 +1,6 @@
import 'dart:async';
import 'package:flutter/foundation.dart';
import 'package:flutter_displaymode/flutter_displaymode.dart';
import 'package:wonders/common_libs.dart';
import 'package:wonders/ui/common/utils/page_routes.dart';
@ -22,7 +23,9 @@ class AppLogic {
setDeviceOrientation(Axis.vertical);
// Set preferred refresh rate to the max possible (the OS may ignore this)
await FlutterDisplayMode.setHighRefreshRate();
if (defaultTargetPlatform == TargetPlatform.android) {
await FlutterDisplayMode.setHighRefreshRate();
}
// Localizations
await localeLogic.load();

View File

@ -0,0 +1,20 @@
//
// Generated file. Do not edit.
//
import FlutterMacOS
import Foundation
import package_info_plus_macos
import path_provider_macos
import share_plus_macos
import shared_preferences_macos
import url_launcher_macos
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
FLTPackageInfoPlusPlugin.register(with: registry.registrar(forPlugin: "FLTPackageInfoPlusPlugin"))
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
SharePlusMacosPlugin.register(with: registry.registrar(forPlugin: "SharePlusMacosPlugin"))
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin"))
UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin"))
}

View File

@ -0,0 +1,11 @@
// This is a generated file; do not edit or check into version control.
FLUTTER_ROOT=/Users/shawn/Dev/flutter
FLUTTER_APPLICATION_PATH=/Users/shawn/Dev/gskinner/flutter-wonders-app
COCOAPODS_PARALLEL_CODE_SIGN=true
FLUTTER_BUILD_DIR=build
FLUTTER_BUILD_NAME=1.9.0
FLUTTER_BUILD_NUMBER=1.9.0
DART_OBFUSCATION=false
TRACK_WIDGET_CREATION=true
TREE_SHAKE_ICONS=false
PACKAGE_CONFIG=.dart_tool/package_config.json

View File

@ -0,0 +1,12 @@
#!/bin/sh
# This is a generated file; do not edit or check into version control.
export "FLUTTER_ROOT=/Users/shawn/Dev/flutter"
export "FLUTTER_APPLICATION_PATH=/Users/shawn/Dev/gskinner/flutter-wonders-app"
export "COCOAPODS_PARALLEL_CODE_SIGN=true"
export "FLUTTER_BUILD_DIR=build"
export "FLUTTER_BUILD_NAME=1.9.0"
export "FLUTTER_BUILD_NUMBER=1.9.0"
export "DART_OBFUSCATION=false"
export "TRACK_WIDGET_CREATION=true"
export "TREE_SHAKE_ICONS=false"
export "PACKAGE_CONFIG=.dart_tool/package_config.json"

View File

@ -35,7 +35,7 @@ packages:
name: archive
url: "https://pub.dartlang.org"
source: hosted
version: "3.3.0"
version: "3.3.1"
args:
dependency: transitive
description:
@ -238,7 +238,7 @@ packages:
name: file
url: "https://pub.dartlang.org"
source: hosted
version: "6.1.2"
version: "6.1.4"
fixnum:
dependency: transitive
description:
@ -588,7 +588,7 @@ packages:
name: material_color_utilities
url: "https://pub.dartlang.org"
source: hosted
version: "0.1.5"
version: "0.2.0"
meta:
dependency: transitive
description:
@ -978,7 +978,7 @@ packages:
name: source_span
url: "https://pub.dartlang.org"
source: hosted
version: "1.9.0"
version: "1.9.1"
stack_trace:
dependency: transitive
description:
@ -1027,7 +1027,7 @@ packages:
name: test_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.4.12"
version: "0.4.13"
timing:
dependency: transitive
description:
@ -1125,14 +1125,14 @@ packages:
name: vector_math
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.2"
version: "2.1.3"
vm_service:
dependency: transitive
description:
name: vm_service
url: "https://pub.dartlang.org"
source: hosted
version: "9.0.0"
version: "9.3.0"
watcher:
dependency: transitive
description:
@ -1190,5 +1190,5 @@ packages:
source: hosted
version: "2.3.0"
sdks:
dart: ">=2.17.1 <3.0.0"
dart: ">=2.18.0-146.0.dev <3.0.0"
flutter: ">=3.0.0"

View File

@ -1,7 +1,7 @@
name: wonders
description: Explore the famous wonders of the world.
publish_to: "none"
version: 1.8.0
version: 1.9.0
environment:
sdk: ">=2.16.0 <3.0.0"

View File

@ -1,2 +1,6 @@
# 1.9.0
- Improved support for dynamic text scaling
- Improved performance for blend modes and blurs
# 1.8.0
- Initial release