mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2025-12-17 23:10:30 +00:00
Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
af8c48adce | ||
|
|
624a0d9fca | ||
|
|
68e09e786b | ||
|
|
922f572383 | ||
|
|
f19d821388 | ||
|
|
a3f600efd9 | ||
|
|
5cf07ca691 |
Submodule ASF-WebConfigGenerator updated: adb2111205...249bf61ca7
2
ASF-ui
2
ASF-ui
Submodule ASF-ui updated: 9aa6d5cd28...ced8221b21
@@ -178,15 +178,13 @@ namespace ArchiSteamFarm {
|
||||
|
||||
ArchiLogger.LogGenericInfo(string.Format(Strings.UpdateVersionInfo, SharedInfo.Version, newVersion));
|
||||
|
||||
if (SharedInfo.Version == newVersion) {
|
||||
return SharedInfo.Version;
|
||||
}
|
||||
if (SharedInfo.Version >= newVersion) {
|
||||
if (SharedInfo.Version > newVersion) {
|
||||
ArchiLogger.LogGenericWarning(Strings.WarningPreReleaseVersion);
|
||||
await Task.Delay(15 * 1000).ConfigureAwait(false);
|
||||
}
|
||||
|
||||
if (SharedInfo.Version > newVersion) {
|
||||
ArchiLogger.LogGenericWarning(Strings.WarningPreReleaseVersion);
|
||||
await Task.Delay(15 * 1000).ConfigureAwait(false);
|
||||
|
||||
return SharedInfo.Version;
|
||||
return newVersion;
|
||||
}
|
||||
|
||||
if (!updateOverride && (GlobalConfig.UpdatePeriod == 0)) {
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
<PropertyGroup>
|
||||
<ApplicationIcon>ASF.ico</ApplicationIcon>
|
||||
<AssemblyVersion>4.0.0.3</AssemblyVersion>
|
||||
<AssemblyVersion>4.0.0.4</AssemblyVersion>
|
||||
<Authors>JustArchi</Authors>
|
||||
<Company>JustArchi</Company>
|
||||
<ConcurrentGarbageCollection>true</ConcurrentGarbageCollection>
|
||||
@@ -11,7 +11,7 @@
|
||||
<DefaultItemExcludes>$(DefaultItemExcludes);config/**;debug/**;out/**;overlay/**</DefaultItemExcludes>
|
||||
<Description>ASF is an application that allows you to farm steam cards using multiple steam accounts simultaneously.</Description>
|
||||
<ErrorReport>none</ErrorReport>
|
||||
<FileVersion>4.0.0.3</FileVersion>
|
||||
<FileVersion>4.0.0.4</FileVersion>
|
||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||
<LangVersion>latest</LangVersion>
|
||||
<NoWarn>1591</NoWarn>
|
||||
|
||||
@@ -198,9 +198,8 @@ namespace ArchiSteamFarm.Json {
|
||||
TradingCard,
|
||||
SteamGems,
|
||||
SaleItem,
|
||||
|
||||
// ReSharper disable once UnusedMember.Global - TODO: This type exists, but we don't know what item class it has, maybe we can fill it when consumables return in one of the future sales
|
||||
Consumable
|
||||
Consumable,
|
||||
ProfileModifier
|
||||
}
|
||||
}
|
||||
|
||||
@@ -578,10 +577,18 @@ namespace ArchiSteamFarm.Json {
|
||||
case "item_class_5":
|
||||
type = Asset.EType.BoosterPack;
|
||||
|
||||
break;
|
||||
case "item_class_6":
|
||||
type = Asset.EType.Consumable;
|
||||
|
||||
break;
|
||||
case "item_class_7":
|
||||
type = Asset.EType.SteamGems;
|
||||
|
||||
break;
|
||||
case "item_class_8":
|
||||
type = Asset.EType.ProfileModifier;
|
||||
|
||||
break;
|
||||
case "item_class_10":
|
||||
type = Asset.EType.SaleItem;
|
||||
|
||||
2
wiki
2
wiki
Submodule wiki updated: 22e3db69e6...12ba9edb75
Reference in New Issue
Block a user