Skip to content

Commit 7d833fe

Browse files
release: v1.0.0-alpha release
1 parent 8278251 commit 7d833fe

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

lib/screens/main_screen.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,15 +281,15 @@ class _MainScreenState extends State<MainScreen> {
281281
),
282282
children: [
283283
Text(
284-
'Build Number : 1',
284+
'Build Number : $BUILD_NUMBER',
285285
style: TextStyle(
286286
fontSize: 14, fontWeight: FontWeight.w600),
287287
),
288288
SizedBox(
289289
height: 15,
290290
),
291291
Text(
292-
'Release Date : 11.10.20',
292+
'Release Date : $RELEASE_DATE',
293293
style: TextStyle(
294294
fontSize: 14, fontWeight: FontWeight.w600),
295295
),

lib/utilities/constants.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,7 @@ const Color kSecondaryDT = Color(0xFF987BEE);
1818
const Color kRedErrorDT = Color(0xFFEF5350);
1919
const Color kGreenActiveDT = Color(0xFF1ED760);
2020
const Color kBackgroundDT = Color(0xFF121212);
21+
22+
/// APP RELEASE INFO
23+
const String BUILD_NUMBER = '2';
24+
const String RELEASE_DATE = '28.02.20';

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: rutorrentflutter
22
description: A rutorrent-based client in flutter
33

44
publish_to: "none"
5-
version: 0.1.0+1
5+
version: 1.0.0-alpha+2
66

77
environment:
88
sdk: ">=2.7.0 <3.0.0"

0 commit comments

Comments
 (0)