diff --git a/PolyChat/MainPage.xaml.cs b/PolyChat/MainPage.xaml.cs
index d39e27d..06a9db4 100644
--- a/PolyChat/MainPage.xaml.cs
+++ b/PolyChat/MainPage.xaml.cs
@@ -84,7 +84,7 @@ namespace PolyChat
var result = await dialog.ShowAsync();
if (result == ContentDialogResult.Primary)
{
- string ip = IP.GetIPfromCode(dialog.getValue());
+ string ip = IP.GetIPFromCode(dialog.getValue());
Controller.Connect(ip);
Partners.Add(new ChatPartner(
"Connecting...",
diff --git a/PolyChat/Package.appxmanifest b/PolyChat/Package.appxmanifest
index 06228f6..30ac9c8 100644
--- a/PolyChat/Package.appxmanifest
+++ b/PolyChat/Package.appxmanifest
@@ -9,8 +9,8 @@
+ Publisher="CN=PatrickMarcFelix"
+ Version="0.1.0.0" />
diff --git a/PolyChat/PolyChat.csproj b/PolyChat/PolyChat.csproj
index 418a809..12041a4 100644
--- a/PolyChat/PolyChat.csproj
+++ b/PolyChat/PolyChat.csproj
@@ -17,7 +17,15 @@
512
{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
true
- false
+ False
+ False
+ False
+ True
+ Always
+ x86
+ 0
+ 6B0D12FC4E83C6F6997C60706A04799ED44B7E56
+ SHA256
true
@@ -195,6 +203,9 @@
5.0.2
+
+
+
14.0
diff --git a/PolyChat/Util/IP.cs b/PolyChat/Util/IP.cs
index fcb6fd6..975dcd1 100644
--- a/PolyChat/Util/IP.cs
+++ b/PolyChat/Util/IP.cs
@@ -7,7 +7,7 @@ namespace PolyChat.Util
{
private const string REGEX_IP = @"^((25[0-5]|(2[0-4]|1\d|[1-9]|)\d)(\.(?!$)|$)){4}$";
- public static string GetIPfromCode(string code)
+ public static string GetIPFromCode(string code)
{
return code;
}
diff --git a/PolyChat/Views/NewChatDialog.xaml.cs b/PolyChat/Views/NewChatDialog.xaml.cs
index 600c62f..4c888ba 100644
--- a/PolyChat/Views/NewChatDialog.xaml.cs
+++ b/PolyChat/Views/NewChatDialog.xaml.cs
@@ -29,7 +29,7 @@ namespace PolyChat.Views
private void OnKeyUp(object sender, Windows.UI.Xaml.Input.KeyRoutedEventArgs e)
{
- if (!IP.ValidateIP(IP.GetIPfromCode(input.Text)))
+ if (!IP.ValidateIP(IP.GetIPFromCode(input.Text)))
{
textSuccess.Visibility = Visibility.Collapsed;
textError.Visibility = Visibility.Visible;