Skip to content

Commit fd301ea

Browse files
committed
update to version 3.1.0
1 parent 19ac12e commit fd301ea

File tree

456 files changed

+7239
-2801
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

456 files changed

+7239
-2801
lines changed

CheakNewVersion.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public partial class CheakNewVersion : ContentPage
1111
// === CONFIGURATION ===
1212
private const string RepoOwner = "kinguser981";
1313
private const string RepoName = "Fortnite_DNS";
14-
private static readonly Version LocalVersion = new Version("3.0.0");
14+
private static readonly Version LocalVersion = new Version("3.1.0");
1515
// =====================
1616

1717
public CheakNewVersion()

MainPage.xaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,11 @@
7474

7575
<Label
7676
x:Name="SelectedItemLabel"
77+
HorizontalOptions="Start"
7778
Text="Status:"
7879
FlowDirection="LeftToRight"
7980
VerticalOptions="Fill"
80-
HorizontalOptions="Fill"
81+
8182
WidthRequest="370"
8283
TextColor="OrangeRed"
8384
FontAttributes="Bold"

MainPage.xaml.cs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using DnsClient;
22
using System.Collections.ObjectModel;
3+
using System.Globalization;
34
using System.Net;
45
using System.Net.NetworkInformation;
56
using System.Text.RegularExpressions;
@@ -19,7 +20,12 @@ public MainPage()
1920

2021
{
2122
InitializeComponent();
22-
23+
24+
var englishCulture = new CultureInfo("en-US", false);
25+
26+
CultureInfo.CurrentCulture = englishCulture;
27+
CultureInfo.CurrentUICulture = englishCulture;
28+
2329
Application.Current.UserAppTheme = AppTheme.Dark;
2430

2531
MyListView.ItemsSource = dnsResults;

MauiApp2.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
<ApplicationId>com.freeapps.fortnitedns</ApplicationId>
2626

2727
<!-- Versions -->
28-
<ApplicationDisplayVersion>2.0</ApplicationDisplayVersion>
29-
<ApplicationVersion>2</ApplicationVersion>
28+
<ApplicationDisplayVersion>3.0</ApplicationDisplayVersion>
29+
<ApplicationVersion>3</ApplicationVersion>
3030

3131
<!-- To develop, package, and publish an app to the Microsoft Store, see: https://aka.ms/MauiTemplateUnpackaged -->
3232
<WindowsPackageType>None</WindowsPackageType>

MauiApp2.csproj.user

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<IsFirstTimeProjectOpen>False</IsFirstTimeProjectOpen>
5-
<ActiveDebugFramework>net10.0-windows10.0.19041.0</ActiveDebugFramework>
6-
<ActiveDebugProfile>Windows Machine</ActiveDebugProfile>
5+
<ActiveDebugFramework>net10.0-android</ActiveDebugFramework>
6+
<ActiveDebugProfile>HMD Global Nokia 5.3 (Android 12.0 - API 31)</ActiveDebugProfile>
77
<SelectedPlatformGroup>PhysicalDevice</SelectedPlatformGroup>
88
</PropertyGroup>
99
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net10.0-android|AnyCPU'">

0 commit comments

Comments
 (0)