Skip to content
This repository was archived by the owner on Jul 5, 2024. It is now read-only.

Commit 2981937

Browse files
committed
Старый интерфейс, отмена сум
1 parent 55f182c commit 2981937

9 files changed

Lines changed: 481 additions & 1054 deletions

File tree

App.config

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,6 @@
2222
<setting name="RUB_USD_Web_Real" serializeAs="String">
2323
<value>0</value>
2424
</setting>
25-
<setting name="RUB_USD_Qiwi" serializeAs="String">
26-
<value>0</value>
27-
</setting>
28-
<setting name="KZT_USD_Steam" serializeAs="String">
29-
<value>0</value>
30-
</setting>
31-
<setting name="UZS_USD_Qiwi" serializeAs="String">
32-
<value>0</value>
33-
</setting>
34-
<setting name="RUB_UZS_Qiwi" serializeAs="String">
35-
<value>0</value>
36-
</setting>
3725
</SteamCurrency.Properties.Settings>
3826
</userSettings>
3927
</configuration>

MainForm.Designer.cs

Lines changed: 317 additions & 635 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MainForm.cs

Lines changed: 157 additions & 338 deletions
Large diffs are not rendered by default.

Properties/Settings.Designer.cs

Lines changed: 0 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Properties/Settings.settings

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,5 @@
1717
<Setting Name="RUB_USD_Web_Real" Type="System.Single" Scope="User">
1818
<Value Profile="(Default)">0</Value>
1919
</Setting>
20-
<Setting Name="RUB_USD_Qiwi" Type="System.Single" Scope="User">
21-
<Value Profile="(Default)">0</Value>
22-
</Setting>
23-
<Setting Name="KZT_USD_Steam" Type="System.Single" Scope="User">
24-
<Value Profile="(Default)">0</Value>
25-
</Setting>
26-
<Setting Name="UZS_USD_Qiwi" Type="System.Single" Scope="User">
27-
<Value Profile="(Default)">0</Value>
28-
</Setting>
29-
<Setting Name="RUB_UZS_Qiwi" Type="System.Single" Scope="User">
30-
<Value Profile="(Default)">0</Value>
31-
</Setting>
3220
</Settings>
3321
</SettingsFile>

QiwiJson.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace SteamCurrency
44
{
5-
#pragma warning disable IDE1006, CS8618
5+
#pragma warning disable IDE1006, CS8618, CS8603, CS8600
66
public class QiwiJsonResult
77
{
88
public string set { get; set; }
@@ -50,5 +50,5 @@ public float GetRate((string, string) pair)
5050
return rate;
5151
}
5252
}
53-
#pragma warning restore IDE1006, CS8618
53+
#pragma warning restore IDE1006, CS8618, CS8603, CS8600
5454
}

SteamCurrency.csproj

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<AnalysisLevel>latest-recommended</AnalysisLevel>
1212
<ApplicationIcon>Flag.ico</ApplicationIcon>
1313
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
14-
<Version>$(VersionPrefix)4.1.0</Version>
14+
<Version>$(VersionPrefix)5.0.0</Version>
1515
<RepositoryType>git</RepositoryType>
1616
<RepositoryUrl>https://github.com/OneCodeUnit/SteamCurrency</RepositoryUrl>
1717
<NeutralLanguage>ru</NeutralLanguage>
@@ -21,8 +21,6 @@
2121
<PackageReadmeFile>README.md</PackageReadmeFile>
2222
<PackageTags>Steam; Currency; Calculator; Currency rate; Qiwi; WebMoney</PackageTags>
2323
<PackageId>SteamCurrencyCalculator</PackageId>
24-
<AssemblyVersion>4.1</AssemblyVersion>
25-
<FileVersion>4.1</FileVersion>
2624
</PropertyGroup>
2725

2826
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">

SteamJson.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace SteamCurrency
55
{
6-
#pragma warning disable IDE1006, CA1707
6+
#pragma warning disable IDE1006, CA1707, CS8600, CS8603, CS8604
77
public class SteamJson
88
{
99
public bool success { get; set; }
@@ -89,5 +89,5 @@ private static float TrimData(SteamJson rawText, int id)
8989
return rate;
9090
}
9191
}
92-
#pragma warning restore IDE1006, CA1707
92+
#pragma warning restore IDE1006, CA1707, CS8600, CS8603, CS8604
9393
}

WMJson.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace SteamCurrency
44
{
5-
#pragma warning disable IDE1006, CA1707
5+
#pragma warning disable IDE1006, CA1707, CS8600, CS8603
66
public class WMJson
77
{
88
public double BankRate { get; set; }
@@ -39,5 +39,5 @@ public float GetRate()
3939
return rate;
4040
}
4141
}
42-
#pragma warning restore IDE1006, CA1707
42+
#pragma warning restore IDE1006, CA1707, CS8600, CS8603
4343
}

0 commit comments

Comments
 (0)