Skip to content

Commit 1736e5f

Browse files
committed
fix: fixed help links
1 parent 0011646 commit 1736e5f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Diff for: lib/linux_mon.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ class _LinuxMonState extends State<LinuxMon> {
128128
Widget helpButton = FlatButton(
129129
child: Text('Help'),
130130
onPressed: () async {
131-
await url.launch('https://github.com/therexone/linuxMon/readme.md');
131+
await url.launch('https://github.com/therexone/linux-mon/blob/master/README.md#installation');
132132
},
133133
);
134134

Diff for: lib/widgets/disconnected_column.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ class DisconnectedColumn extends StatelessWidget {
3838
child: InkWell(
3939
onTap: () async {
4040
await url
41-
.launch('https://github.com/therexone/linuxMon/readme.md');
41+
.launch('https://github.com/therexone/linux-mon/blob/master/README.md#installation');
4242
},
4343
child: Text(
44-
'- More help - https://github.com/therexone/linuxMon/readme.md',
44+
'- More help - Github',
4545
style: TextStyle(
4646
color: Color(0xff11DFDE),
4747
fontSize: 12.0,

Diff for: pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
1515
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
1616
# Read more about iOS versioning at
1717
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
18-
version: 1.0.0-alpha+1
18+
version: 1.0.1-alpha+2
1919

2020
environment:
2121
sdk: ">=2.7.0 <3.0.0"

0 commit comments

Comments
 (0)