Skip to content

Commit

Permalink
Releases version 1.0.20211018
Browse files Browse the repository at this point in the history
  • Loading branch information
tglima committed Oct 18, 2021
1 parent 3d34c90 commit 95b56cb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ void main() async {
supportedLocales: [
ConstantUtil.americanEnglish,
ConstantUtil.brazilianPortuguese,
ConstantUtil.spanishDefault
ConstantUtil.spanishDefault,
ConstantUtil.italianDefault
],
localizationsDelegates: [
AppLocalizations.delegate,
Expand Down
3 changes: 2 additions & 1 deletion lib/utils/constant_util.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import 'package:myfluttercrypto/data/global_data.dart';

class ConstantUtil {
//Texts
static const String nuVersion = '1.0.20211017';
static const String nuVersion = '1.0.20211018';
static const String nmApplication = "MyFlutterCrypto";
static const String linkGitHub = 'https://github.com/tglima/myfluttercrypto';
//Colors
Expand Down Expand Up @@ -55,4 +55,5 @@ class ConstantUtil {
static const Locale brazilianPortuguese = Locale('pt', 'BR');
static const Locale americanEnglish = Locale('en', 'US');
static const Locale spanishDefault = Locale('es', '');
static const Locale italianDefault = Locale('it', '');
}
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Cross-platform application developed with Flutter.

publish_to: 'none' # Remove this line if you wish to publish to pub.dev

version: 1.0.20211017+1
version: 1.0.20211018+1

environment:
sdk: ">=2.12.0 <3.0.0"
Expand Down
4 changes: 2 additions & 2 deletions windows/runner/Runner.rc
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ IDI_APP_ICON ICON "resources\\myfluttercrypto.ico"
#ifdef FLUTTER_BUILD_NUMBER
#define VERSION_AS_NUMBER FLUTTER_BUILD_NUMBER
#else
#define VERSION_AS_NUMBER 1,0,20211017
#define VERSION_AS_NUMBER 1,0,20211018
#endif

#ifdef FLUTTER_BUILD_NAME
#define VERSION_AS_STRING #FLUTTER_BUILD_NAME
#else
#define VERSION_AS_STRING "1.0.20211017"
#define VERSION_AS_STRING "1.0.20211018"
#endif

VS_VERSION_INFO VERSIONINFO
Expand Down

0 comments on commit 95b56cb

Please sign in to comment.