Skip to content

Commit

Permalink
UPD Applications versioins, Route Loader, globl
Browse files Browse the repository at this point in the history
  • Loading branch information
denver-code committed Dec 10, 2022
1 parent ab02f00 commit ebf28c8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 0 additions & 2 deletions lib/config.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import 'package:secure_control_panel/screens/authorisation_screen.dart';
import 'package:secure_control_panel/screens/desktop_screen.dart';

import 'internal/applications/debug_application.dart' as debug_app;
import 'internal/applications/test_applications/all_widget_application.dart';
import 'internal/applications/test_applications/route_load_application.dart'
as route_load;

Expand Down Expand Up @@ -56,7 +55,6 @@ class Config {
"/authorisation": (_) => const AuthorisationScreen(),
"/desktop": (_) => const DesktopScreen(),
"/debug": (_) => const debug_app.DebugApplication(),
"/allWidgetsApp": (_) => const AllWidgetTestApplicaton(),
"/routeLoad": (_) => route_load.RouteLoaderApplication(),
"/applicationsOverview": (_) =>
const applications_app.ApplicationsOverviewApplication()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import '../../config.dart';
class AppManifest {
static const Map details = {
"name": "Applications",
"version": "alpha v0.0.1+1",
"version": "alpha v0.1.0+2",
"developer": "Igor Savenko",
};
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import '../../components/widgets/text_field_widget.dart';
class AppManifest {
static const Map details = {
"name": "Route Loader",
"version": "alpha v0.1.0+2",
"version": "alpha v0.1.1+3",
"developer": "Igor Savenko",
};
}
Expand Down
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: CRM-based staff control system

publish_to: 'none'

version: 0.1.0+2
version: 0.1.1+5

environment:
sdk: ">=2.17.6 <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\\app_icon.ico"
#ifdef FLUTTER_BUILD_NUMBER
#define VERSION_AS_NUMBER FLUTTER_BUILD_NUMBER
#else
#define VERSION_AS_NUMBER 0,1,0,1
#define VERSION_AS_NUMBER 0,1,1,5
#endif

#ifdef FLUTTER_BUILD_NAME
#define VERSION_AS_STRING #FLUTTER_BUILD_NAME
#else
#define VERSION_AS_STRING "0.1.0+1"
#define VERSION_AS_STRING "0.1.1+5"
#endif

VS_VERSION_INFO VERSIONINFO
Expand Down

0 comments on commit ebf28c8

Please sign in to comment.