Add files via upload
This commit is contained in:
parent
b97a2cf352
commit
fda935ac5d
6 changed files with 40 additions and 11 deletions
BIN
src/Privatezilla/AppIcon.ico
Normal file
BIN
src/Privatezilla/AppIcon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 177 KiB |
BIN
src/Privatezilla/GitHubIcon.png
Normal file
BIN
src/Privatezilla/GitHubIcon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 828 B |
|
@ -36,6 +36,9 @@ namespace Privatezilla
|
|||
private readonly string _psSuccess = Properties.Resources.msgPSSuccess;
|
||||
private readonly string _psSave = Properties.Resources.msgPSSave;
|
||||
|
||||
private readonly string _infoApp = "Privatezilla" + "\nVersion " + Program.GetCurrentVersionTostring() + " (Phoenix)\r\n" +
|
||||
Properties.Resources.infoApp.Replace("\\t", "\t");
|
||||
|
||||
// Setting progress
|
||||
private int _progress = 0;
|
||||
|
||||
|
@ -501,14 +504,7 @@ namespace Privatezilla
|
|||
|
||||
private void Info_Click(object sender, EventArgs e)
|
||||
{
|
||||
MessageBox.Show("Privatezilla" + "\nVersion " + Program.GetCurrentVersionTostring() + " (Phoenix)" +
|
||||
"\n\nThe open source Windows 10 privacy settings app.\n\nThis is in no way related to Microsoft and a completely independent project.\r\n\n" +
|
||||
"All infos and credits about this project on\n" +
|
||||
"\tgithub.com/builtbybel/privatezilla\r\n\n" +
|
||||
"You can also follow me on\n" +
|
||||
"\ttwitter.com/builtbybel\r\n\n" +
|
||||
"(C#) 2020, Builtbybel",
|
||||
"Info", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
MessageBox.Show(_infoApp, "Info", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
}
|
||||
|
||||
private void LblMainMenu_Click(object sender, EventArgs e)
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
<ApplicationManifest>app.manifest</ApplicationManifest>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<ApplicationIcon>privatezilla.ico</ApplicationIcon>
|
||||
<ApplicationIcon>AppIcon.ico</ApplicationIcon>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'x64|AnyCPU'">
|
||||
<OutputPath>bin\x64\</OutputPath>
|
||||
|
@ -176,9 +176,8 @@
|
|||
<ItemGroup>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup />
|
||||
<ItemGroup>
|
||||
<Content Include="privatezilla.ico" />
|
||||
<Content Include="AppIcon.ico" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
20
src/Privatezilla/Properties/Resources.Designer.cs
generated
20
src/Privatezilla/Properties/Resources.Designer.cs
generated
|
@ -172,6 +172,26 @@ namespace Privatezilla.Properties {
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Sucht eine lokalisierte Zeichenfolge, die
|
||||
///The open source Windows 10 privacy settings app.
|
||||
///
|
||||
///This is in no way related to Microsoft and a completely independent project.
|
||||
///
|
||||
///All infos and credits about this project on
|
||||
///\tgithub.com/builtbybel/privatezilla
|
||||
///
|
||||
///You can also follow me on
|
||||
///\ttwitter.com/builtbybel
|
||||
///
|
||||
///(C#) 2020, Builtbybel ähnelt.
|
||||
/// </summary>
|
||||
internal static string infoApp {
|
||||
get {
|
||||
return ResourceManager.GetString("infoApp", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Sucht eine lokalisierte Zeichenfolge, die Scripts ähnelt.
|
||||
/// </summary>
|
||||
|
|
|
@ -168,6 +168,20 @@
|
|||
<value>Info</value>
|
||||
<comment>Main menu</comment>
|
||||
</data>
|
||||
<data name="infoApp" xml:space="preserve">
|
||||
<value>
|
||||
The open source Windows 10 privacy settings app.
|
||||
|
||||
This is in no way related to Microsoft and a completely independent project.
|
||||
|
||||
All infos and credits about this project on
|
||||
\tgithub.com/builtbybel/privatezilla
|
||||
|
||||
You can also follow me on
|
||||
\ttwitter.com/builtbybel
|
||||
|
||||
(C#) 2020, Builtbybel</value>
|
||||
</data>
|
||||
<data name="LblPS" xml:space="preserve">
|
||||
<value>Scripts</value>
|
||||
<comment>GUI</comment>
|
||||
|
|
Loading…
Add table
Reference in a new issue