Skip to content

Commit fbe746a

Browse files
valnoxybovirus
andauthored
Merge pull request #11 from valnoxy/develop
* πŸ—‘οΈ Ignore file output * ©️ Update copyright * 🌎 Localization functionality See issue #5 * 🌎 Support German language * βš’οΈ Debug output current language * 🌎 More strings localized See issue #7 * Add italian language (#8) * Localization italian language * Add italian/italian language to the installer * 🌎 Update Inno Setup files * βš’οΈ Added GitHub Action Workflow for Windows GUI version * Update README.md * πŸ”„οΈ New UI, IPManager, .NET 8.0 * Update pipeline * Add RuntimeIdentifiers * Update Readme & Code cleanup * Fix layout --------- Co-authored-by: bovirus <[email protected]>
2 parents eab80b7 + 8e074f5 commit fbe746a

35 files changed

+1901
-981
lines changed

β€Ž.gitignoreβ€Ž

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,8 @@ publish/
174174
*.azurePubxml
175175
# Note: Comment the next line if you want to checkin your web deploy settings,
176176
# but database connection strings (with potential passwords) will be unencrypted
177-
*.pubxml
178-
*.publishproj
177+
#*.pubxml
178+
#*.publishproj
179179

180180
# Microsoft Azure Web App publish settings. Comment the next line if you want to
181181
# checkin your Azure Web App publish settings, but sensitive information contained
@@ -207,7 +207,7 @@ rcf/
207207
# Windows Store app package directories and files
208208
AppPackages/
209209
BundleArtifacts/
210-
Package.StoreAssociation.xml
210+
# Package.StoreAssociation.xml
211211
_pkginfo.txt
212212
*.appx
213213
*.appxbundle
@@ -384,4 +384,5 @@ Temporary Items
384384

385385
### macOS Patch ###
386386
# iCloud generated files
387-
*.icloud
387+
*.icloud
388+
CheckIP.Windows/Setup/Output/

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 0 additions & 28 deletions
This file was deleted.

β€ŽCheckIP.CLI/CheckIP.CLI.slnβ€Ž

Lines changed: 0 additions & 25 deletions
This file was deleted.

β€ŽCheckIP.CLI/CheckIP.CLI/CheckIP.CLI.csprojβ€Ž

Lines changed: 0 additions & 14 deletions
This file was deleted.

β€ŽCheckIP.CLI/CheckIP.CLI/Program.csβ€Ž

Lines changed: 0 additions & 32 deletions
This file was deleted.

β€ŽCheckIP.Windows/CheckIP.Packaging/CheckIP.Packaging.wapprojβ€Ž

Lines changed: 5 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,6 @@
2020
<Configuration>Release</Configuration>
2121
<Platform>x64</Platform>
2222
</ProjectConfiguration>
23-
<ProjectConfiguration Include="Debug|ARM">
24-
<Configuration>Debug</Configuration>
25-
<Platform>ARM</Platform>
26-
</ProjectConfiguration>
27-
<ProjectConfiguration Include="Release|ARM">
28-
<Configuration>Release</Configuration>
29-
<Platform>ARM</Platform>
30-
</ProjectConfiguration>
3123
<ProjectConfiguration Include="Debug|ARM64">
3224
<Configuration>Debug</Configuration>
3325
<Platform>ARM64</Platform>
@@ -54,15 +46,18 @@
5446
<TargetPlatformVersion>10.0.22000.0</TargetPlatformVersion>
5547
<TargetPlatformMinVersion>10.0.18362.0</TargetPlatformMinVersion>
5648
<DefaultLanguage>de-DE</DefaultLanguage>
57-
<AppxPackageSigningEnabled>false</AppxPackageSigningEnabled>
49+
<AppxPackageSigningEnabled>True</AppxPackageSigningEnabled>
5850
<NoWarn>$(NoWarn);NU1702</NoWarn>
5951
<GenerateTemporaryStoreCertificate>True</GenerateTemporaryStoreCertificate>
6052
<GenerateAppInstallerFile>False</GenerateAppInstallerFile>
6153
<AppxAutoIncrementPackageRevision>False</AppxAutoIncrementPackageRevision>
6254
<GenerateTestArtifacts>True</GenerateTestArtifacts>
63-
<AppxBundlePlatforms>x86|x64</AppxBundlePlatforms>
55+
<AppxBundlePlatforms>x86|x64|arm64</AppxBundlePlatforms>
6456
<HoursBetweenUpdateChecks>0</HoursBetweenUpdateChecks>
6557
<EntryPointProjectUniqueName>..\CheckIP\CheckIP.csproj</EntryPointProjectUniqueName>
58+
<PackageCertificateThumbprint>A80FD11EC378D1985237EE2B346FC5D63304C50D</PackageCertificateThumbprint>
59+
<AppxPackageSigningTimestampServerUrl>http://time.certum.pl</AppxPackageSigningTimestampServerUrl>
60+
<AppxPackageSigningTimestampDigestAlgorithm>SHA256</AppxPackageSigningTimestampDigestAlgorithm>
6661
</PropertyGroup>
6762
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
6863
<DefaultLanguage>en-US</DefaultLanguage>
@@ -72,10 +67,6 @@
7267
<DefaultLanguage>en-US</DefaultLanguage>
7368
<AppxBundle>Always</AppxBundle>
7469
</PropertyGroup>
75-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
76-
<DefaultLanguage>en-US</DefaultLanguage>
77-
<AppxBundle>Always</AppxBundle>
78-
</PropertyGroup>
7970
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
8071
<DefaultLanguage>en-US</DefaultLanguage>
8172
<AppxBundle>Always</AppxBundle>
@@ -96,10 +87,6 @@
9687
<DefaultLanguage>en-US</DefaultLanguage>
9788
<AppxBundle>Always</AppxBundle>
9889
</PropertyGroup>
99-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
100-
<DefaultLanguage>en-US</DefaultLanguage>
101-
<AppxBundle>Always</AppxBundle>
102-
</PropertyGroup>
10390
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
10491
<DefaultLanguage>en-US</DefaultLanguage>
10592
<AppxBundle>Always</AppxBundle>

0 commit comments

Comments
Β (0)