Skip to content

Commit

Permalink
version 0.3 (3) release
Browse files Browse the repository at this point in the history
  • Loading branch information
filip2cz committed Jun 11, 2023
1 parent cabc43a commit 9ab86f6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# network-info
Mobile app, which gives informations about network.

[![wakatime](https://wakatime.com/badge/github/filip2cz/network-info.svg?6)](https://wakatime.com/badge/github/filip2cz/network-info)
[![wakatime](https://wakatime.com/badge/github/filip2cz/network-info.svg?7)](https://wakatime.com/badge/github/filip2cz/network-info)

### Acknowledgements
Thanks [Mikuláš (Ur-Fault)](https://github.com/ur-fault) for help about basic knowlege how to use Xamarin
Expand Down
2 changes: 1 addition & 1 deletion network-info.Android/Properties/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="2" android:versionName="0.2" package="com.komarek.network_info" android:installLocation="preferExternal">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="3" android:versionName="0.3" package="com.komarek.network_info" android:installLocation="preferExternal">
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="33" />
<application android:label="network_info.Android" android:theme="@style/MainTheme" android:icon="@mipmap/icon"></application>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
Expand Down
2 changes: 1 addition & 1 deletion network-info/MainPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<Label Text="Network Info" HorizontalTextAlignment="Center" TextColor="White" FontSize="36"/>
</Frame>

<Label Text="Version: 0.3-devel" HorizontalTextAlignment="Start" FontSize="12" Padding="30,5,30,0"/>
<Label Text="Version: 0.3" HorizontalTextAlignment="Start" FontSize="12" Padding="30,5,30,0"/>
<Label Text="{Binding versionStatus}" HorizontalTextAlignment="Start" FontSize="12" Padding="30,5,30,0"/>
<Label Text="This app is still in heavy development, bugs may occur." HorizontalTextAlignment="Start" FontSize="12" Padding="30,5,30,0"/>

Expand Down
2 changes: 1 addition & 1 deletion network-info/MainPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ private async Task UpdaterFunction()
{
Debug.WriteLine("Checking version from server");

int yourVersion = 2;
int yourVersion = 3;
int latestVersion = yourVersion;
using (WebClient client = new WebClient())
{
Expand Down
2 changes: 1 addition & 1 deletion ver
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2
3

0 comments on commit 9ab86f6

Please sign in to comment.