Skip to content

Commit

Permalink
upgrade .net version 4.5
Browse files Browse the repository at this point in the history
changed icon and logo
  • Loading branch information
yasin sekman committed Apr 24, 2019
1 parent 42935c2 commit e16f270
Show file tree
Hide file tree
Showing 10 changed files with 47 additions and 25 deletions.
1 change: 1 addition & 0 deletions ProxyChanger/Language/en.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ internal static void _main_()
_mainGUI.btnSettings.Text = "Settings";
_mainGUI.languageToolStripMenuItem.Text = "Language";
_mainGUI.toolStripMenuItem1.Text = "Windows Proxy Settings";
_mainGUI.gitHubRepositiesToolStripMenuItem.Text = "My GitHub Reposities";
_mainGUI.aboutToolStripMenuItem.Text = "About";
}
internal static void _about_()
Expand Down
1 change: 1 addition & 0 deletions ProxyChanger/Language/tr.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ internal static void _main_()
_mainGUI.btnSettings.Text = "Ayarlar";
_mainGUI.languageToolStripMenuItem.Text = "Dil";
_mainGUI.toolStripMenuItem1.Text = "Windows Proxy Ayarları";
_mainGUI.gitHubRepositiesToolStripMenuItem.Text = "Benim GitHub Depolarım";
_mainGUI.aboutToolStripMenuItem.Text = "Hakkında";
}
internal static void _about_()
Expand Down
2 changes: 1 addition & 1 deletion ProxyChanger/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
[assembly: AssemblyTitle("ProxyChanger")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Yasin SEKMAN")]
[assembly: AssemblyCompany("yasinvs")]
[assembly: AssemblyProduct("ProxyChanger")]
[assembly: AssemblyCopyright("Copyright © 2019 yasinvs")]
[assembly: AssemblyTrademark("")]
Expand Down
22 changes: 9 additions & 13 deletions ProxyChanger/Properties/Settings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion ProxyChanger/ProxyChanger.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ProxyChanger</RootNamespace>
<AssemblyName>ProxyChanger</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
Expand All @@ -21,6 +22,7 @@
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
Expand All @@ -30,6 +32,7 @@
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>icon.ico</ApplicationIcon>
Expand Down Expand Up @@ -80,6 +83,7 @@
<DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
</Compile>
<None Include="app.config" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
Expand Down
6 changes: 3 additions & 3 deletions ProxyChanger/aboutForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions ProxyChanger/aboutForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs

private void button1_Click(object sender, EventArgs e)
{
Process _mail = new Process();
_mail.StartInfo.FileName = "mailto:sekmanyasin@hotmail.com?subject=ProxyChanger";
_mail.Start();
Process _github1 = new Process();
_github1.StartInfo.FileName = "https://github.com/yasinvs/ProxyChanger";
_github1.Start();
}

private void LinkLabel1_LinkClicked_1(object sender, LinkLabelLinkClickedEventArgs e)
Expand Down
3 changes: 3 additions & 0 deletions ProxyChanger/app.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/></startup></configuration>
18 changes: 14 additions & 4 deletions ProxyChanger/mainGUI.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions ProxyChanger/mainGUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -177,5 +177,12 @@ private void toolStripMenuItem1_Click(object sender, EventArgs e)
{
Process.Start("rundll32", "shell32.dll,Control_RunDLL inetcpl.cpl,,4");
}

private void GitHubRepositiesToolStripMenuItem_Click(object sender, EventArgs e)
{
Process _github = new Process();
_github.StartInfo.FileName = "https://github.com/yasinvs";
_github.Start();
}
}
}

0 comments on commit e16f270

Please sign in to comment.