Skip to content

Commit

Permalink
fix: fixed help links
Browse files Browse the repository at this point in the history
  • Loading branch information
therexone committed Jun 30, 2020
1 parent 0011646 commit 1736e5f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/linux_mon.dart
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ class _LinuxMonState extends State<LinuxMon> {
Widget helpButton = FlatButton(
child: Text('Help'),
onPressed: () async {
await url.launch('https://github.com/therexone/linuxMon/readme.md');
await url.launch('https://github.com/therexone/linux-mon/blob/master/README.md#installation');
},
);

Expand Down
4 changes: 2 additions & 2 deletions lib/widgets/disconnected_column.dart
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ class DisconnectedColumn extends StatelessWidget {
child: InkWell(
onTap: () async {
await url
.launch('https://github.com/therexone/linuxMon/readme.md');
.launch('https://github.com/therexone/linux-mon/blob/master/README.md#installation');
},
child: Text(
'- More help - https://github.com/therexone/linuxMon/readme.md',
'- More help - Github',
style: TextStyle(
color: Color(0xff11DFDE),
fontSize: 12.0,
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.0.0-alpha+1
version: 1.0.1-alpha+2

environment:
sdk: ">=2.7.0 <3.0.0"
Expand Down

0 comments on commit 1736e5f

Please sign in to comment.