Commit graph

7399 commits

Author SHA1 Message Date
JustArchi
573d73c7a9 CIs: Bump 2020-03-05 23:21:12 +01:00
JustArchi
45dec47bf0 Bump 2020-03-05 22:59:40 +01:00
JustArchi
c38ce811f8 Add AssetID as the last missing property to parse in active trade offers 2020-03-05 22:59:11 +01:00
JustArchi
e83c8bc129 Add fallback for lack of tags 2020-03-05 21:30:37 +01:00
JustArchi
0ed5092e97 Add missing parsing of descriptions in active trade offers
@Vital7 you completely broke that part, since you've removed parsing of tags without adding any new logic for them, good thing R# started suggesting me to convert those 3 tags-generated properties to const :bite:
2020-03-05 21:28:10 +01:00
JustArchi
847c78b650 R# cleanup 2020-03-05 21:05:40 +01:00
JustArchi
4483a30df8 Translations update 2020-03-05 20:41:33 +01:00
Łukasz Domeradzki
7914e6bf59
Add additional properties to Asset (#1653)
* Add additional properties to Asset

* Make dictionary with additional data readonly and immutable

* Add backing collection for tags

* Rewrite to properties

* Formatting

* Make tags readonly, immediately return value of tag

* Make tags readonly, immediately return value of tag

* Make AdditionalProperties readonly again

* Formatting
2020-03-05 20:28:16 +01:00
dependabot-preview[bot]
ad74d57d6c Bump ASF-ui from d3509ee to eab8360
Bumps [ASF-ui](https://github.com/JustArchiNET/ASF-ui) from `d3509ee` to `eab8360`.
- [Release notes](https://github.com/JustArchiNET/ASF-ui/releases)
- [Commits](d3509ee42a...eab83601b8)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-03-02 18:24:22 +00:00
dependabot-preview[bot]
5ef1c05145 Bump ASF-WebConfigGenerator from 7c29e57 to 90246f8
Bumps [ASF-WebConfigGenerator](https://github.com/JustArchiNET/ASF-WebConfigGenerator) from `7c29e57` to `90246f8`.
- [Release notes](https://github.com/JustArchiNET/ASF-WebConfigGenerator/releases)
- [Commits](7c29e57d7e...90246f85c2)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-03-02 18:20:46 +00:00
JustArchi
ce81b67dea Update Wiki_correction.md 2020-02-29 02:57:20 +01:00
JustArchi
7d630e3df2 Create Wiki_correction.md 2020-02-29 02:54:13 +01:00
dependabot-preview[bot]
64404e6b3f Bump ASF-WebConfigGenerator from be429dc to 7c29e57
Bumps [ASF-WebConfigGenerator](https://github.com/JustArchiNET/ASF-WebConfigGenerator) from `be429dc` to `7c29e57`.
- [Release notes](https://github.com/JustArchiNET/ASF-WebConfigGenerator/releases)
- [Commits](be429dc29a...7c29e57d7e)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-02-27 01:33:12 +00:00
dependabot-preview[bot]
47ffbb1374 Bump ASF-ui from a3c962f to d3509ee
Bumps [ASF-ui](https://github.com/JustArchiNET/ASF-ui) from `a3c962f` to `d3509ee`.
- [Release notes](https://github.com/JustArchiNET/ASF-ui/releases)
- [Commits](a3c962f1bc...d3509ee42a)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-02-27 01:27:06 +00:00
dependabot-preview[bot]
9bd104a223 Bump ASF-WebConfigGenerator from c98138d to be429dc
Bumps [ASF-WebConfigGenerator](https://github.com/JustArchiNET/ASF-WebConfigGenerator) from `c98138d` to `be429dc`.
- [Release notes](https://github.com/JustArchiNET/ASF-WebConfigGenerator/releases)
- [Commits](c98138d3c9...be429dc29a)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-02-26 01:26:18 +00:00
JustArchi
ff3ecad6d1 Add workaround for POST limit size 2020-02-24 21:11:54 +01:00
dependabot-preview[bot]
1494e96ed3 Bump ASF-ui from 8ce1d28 to a3c962f
Bumps [ASF-ui](https://github.com/JustArchiNET/ASF-ui) from `8ce1d28` to `a3c962f`.
- [Release notes](https://github.com/JustArchiNET/ASF-ui/releases)
- [Commits](8ce1d28c49...a3c962f1bc)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-02-24 18:06:04 +00:00
dependabot-preview[bot]
16b859f53e Bump HtmlAgilityPack from 1.11.20 to 1.11.21
Bumps [HtmlAgilityPack](https://github.com/zzzprojects/html-agility-pack) from 1.11.20 to 1.11.21.
- [Release notes](https://github.com/zzzprojects/html-agility-pack/releases)
- [Commits](https://github.com/zzzprojects/html-agility-pack/compare/v1.11.20...v1.11.21)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-02-23 16:06:22 +00:00
Vitaliy
6657945b7d
Use IAsyncEnumerable for getting inventory (#1652)
* Use IAsyncEnumerable for getting inventory

* Don't suppress exceptions, catch them in ResponseUnpackBoosters

* Make sure we don't get duplicate assets during unpack

* Rewrite inventory filters to LINQ methods

* Add handling duplicate items, mark GetInventory as obsolete, catch exceptions from getting inventory errors

* Mark GetInventoryEnumerable as NotNull, don't check received inventory for null, use comparison with nullable values

* Use specific types of exceptions, log exceptions using LogGenericWarningException, handle IOException separately (without logging the exception), remove default null value

* Use old method signature for obsolete API

* Use error level for generic exceptions

* Fix wantedSets not being used

* Correct exception types, rename function

* Replace exception types

* Make SendTradeOfferAsync that accepts Func<Steam.Asset, bool> as a filter

* Fix missing targetSteamID in ResponseTransferByRealAppIDs

* Make parameter name readable

* Rename method
2020-02-22 18:03:22 +01:00
JustArchi
144fdcf422 Accelerate unlocking parental account 2020-02-22 00:16:52 +01:00
JustArchi
dbf740f560 Use more robust approach 2020-02-21 17:10:42 +01:00
JustArchi
a60c3d6376 Use HTTP/2 explicitly on .NET Core 2020-02-21 17:07:05 +01:00
Vitaliy
9a47f53398
Use HttpVersion.Version20 instead of creating Version instance (#1650) 2020-02-21 16:33:21 +01:00
dependabot-preview[bot]
b51dc2dd35 Bump ASF-WebConfigGenerator from b0ab7b5 to c98138d
Bumps [ASF-WebConfigGenerator](https://github.com/JustArchiNET/ASF-WebConfigGenerator) from `b0ab7b5` to `c98138d`.
- [Release notes](https://github.com/JustArchiNET/ASF-WebConfigGenerator/releases)
- [Commits](b0ab7b5d5a...c98138d3c9)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-02-20 01:32:09 +00:00
dependabot-preview[bot]
02a81f4971 Bump ASF-ui from 571c7a8 to 8ce1d28
Bumps [ASF-ui](https://github.com/JustArchiNET/ASF-ui) from `571c7a8` to `8ce1d28`.
- [Release notes](https://github.com/JustArchiNET/ASF-ui/releases)
- [Commits](571c7a8caf...8ce1d28c49)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-02-20 01:25:31 +00:00
dependabot-preview[bot]
f5298fd068 Bump HtmlAgilityPack from 1.11.19 to 1.11.20
Bumps [HtmlAgilityPack](https://github.com/zzzprojects/html-agility-pack) from 1.11.19 to 1.11.20.
- [Release notes](https://github.com/zzzprojects/html-agility-pack/releases)
- [Commits](https://github.com/zzzprojects/html-agility-pack/compare/v1.11.19...v1.11.20)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-02-19 20:08:30 +00:00
dependabot-preview[bot]
06911fab63 Bump wiki from 417b3c7 to fb109fa
Bumps [wiki](https://github.com/JustArchiNET/ArchiSteamFarm.wiki) from `417b3c7` to `fb109fa`.
- [Release notes](https://github.com/JustArchiNET/ArchiSteamFarm.wiki/releases)
- [Commits](417b3c70d8...fb109fa4dc)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-02-19 01:25:43 +00:00
JustArchi
83060a4ff6 Misc 2020-02-18 21:24:22 +01:00
JustArchi
bb3e0e4054 Merge branch 'master' of https://github.com/JustArchiNET/ArchiSteamFarm 2020-02-18 19:50:24 +01:00
JustArchi
206e064bed Remove default GC settings from ASF
People are advised to use https://docs.microsoft.com/en-us/dotnet/core/run-time-config/garbage-collector instead
2020-02-18 19:50:21 +01:00
dependabot-preview[bot]
076d791ab7 Bump Microsoft.Extensions.Configuration.Json from 3.1.1 to 3.1.2
Bumps [Microsoft.Extensions.Configuration.Json](https://github.com/aspnet/Extensions) from 3.1.1 to 3.1.2.
- [Release notes](https://github.com/aspnet/Extensions/releases)
- [Commits](https://github.com/aspnet/Extensions/commits)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-02-18 17:54:35 +00:00
dependabot-preview[bot]
4a3c02c9e7 Bump Microsoft.Extensions.Logging.Configuration from 3.1.1 to 3.1.2
Bumps [Microsoft.Extensions.Logging.Configuration](https://github.com/aspnet/Extensions) from 3.1.1 to 3.1.2.
- [Release notes](https://github.com/aspnet/Extensions/releases)
- [Commits](https://github.com/aspnet/Extensions/commits)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-02-18 17:13:42 +00:00
dependabot-preview[bot]
67d5926a69 Bump Microsoft.AspNetCore.Mvc.NewtonsoftJson from 3.1.1 to 3.1.2
Bumps [Microsoft.AspNetCore.Mvc.NewtonsoftJson](https://github.com/aspnet/AspNetCore) from 3.1.1 to 3.1.2.
- [Release notes](https://github.com/aspnet/AspNetCore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/master/docs/CrossRepoBreakingChanges.md)
- [Commits](https://github.com/aspnet/AspNetCore/commits)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-02-18 17:03:46 +00:00
dependabot-preview[bot]
3515a47ac6 Bump ASF-ui from 02b44f2 to 571c7a8
Bumps [ASF-ui](https://github.com/JustArchiNET/ASF-ui) from `02b44f2` to `571c7a8`.
- [Release notes](https://github.com/JustArchiNET/ASF-ui/releases)
- [Commits](02b44f2c1c...571c7a8caf)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-02-18 01:26:06 +00:00
dependabot-preview[bot]
22951c6a27 Bump HtmlAgilityPack from 1.11.18 to 1.11.19
Bumps [HtmlAgilityPack](https://github.com/zzzprojects/html-agility-pack) from 1.11.18 to 1.11.19.
- [Release notes](https://github.com/zzzprojects/html-agility-pack/releases)
- [Commits](https://github.com/zzzprojects/html-agility-pack/compare/v1.11.18...v1.11.19)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-02-17 17:52:19 +00:00
dependabot-preview[bot]
e87d2df133 Bump ASF-ui from 3e20767 to 02b44f2
Bumps [ASF-ui](https://github.com/JustArchiNET/ASF-ui) from `3e20767` to `02b44f2`.
- [Release notes](https://github.com/JustArchiNET/ASF-ui/releases)
- [Commits](3e207672f2...02b44f2c1c)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-02-17 01:24:28 +00:00
dependabot-preview[bot]
beab0dbb5e Bump ASF-WebConfigGenerator from 91498e7 to b0ab7b5
Bumps [ASF-WebConfigGenerator](https://github.com/JustArchiNET/ASF-WebConfigGenerator) from `91498e7` to `b0ab7b5`.
- [Release notes](https://github.com/JustArchiNET/ASF-WebConfigGenerator/releases)
- [Commits](91498e7196...b0ab7b5d5a)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-02-13 01:32:55 +00:00
dependabot-preview[bot]
753f8be6df Bump ASF-ui from fed48d2 to 3e20767
Bumps [ASF-ui](https://github.com/JustArchiNET/ASF-ui) from `fed48d2` to `3e20767`.
- [Release notes](https://github.com/JustArchiNET/ASF-ui/releases)
- [Commits](fed48d2d1d...3e207672f2)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-02-13 01:25:32 +00:00
dependabot-preview[bot]
4aa005b949 Bump ASF-ui from e53c906 to fed48d2
Bumps [ASF-ui](https://github.com/JustArchiNET/ASF-ui) from `e53c906` to `fed48d2`.
- [Release notes](https://github.com/JustArchiNET/ASF-ui/releases)
- [Commits](e53c906dcd...fed48d2d1d)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-02-12 01:31:21 +00:00
dependabot-preview[bot]
e03ace1935 Bump ASF-WebConfigGenerator from 412703e to 91498e7
Bumps [ASF-WebConfigGenerator](https://github.com/JustArchiNET/ASF-WebConfigGenerator) from `412703e` to `91498e7`.
- [Release notes](https://github.com/JustArchiNET/ASF-WebConfigGenerator/releases)
- [Commits](412703e7a1...91498e7196)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-02-12 01:24:21 +00:00
JustArchi
a28f754dba Bump 2020-02-09 22:06:21 +01:00
Sandro
9ae7434bbb Dockerfile: Use more common npm run alias (#1634) 2020-02-09 22:05:20 +01:00
JustArchi
cf50e5c596 Translations update 2020-02-09 18:47:55 +01:00
JustArchi
a40c117b73 Remove excessive private gettes from assets
Those getters are not required for item classification, and their removal decreases the request size, effectively increasing the amount of items we can send across one without running into POST size.

At the same time 255 is still relevant in regards to Steam servers stability.
2020-02-09 18:37:52 +01:00
dependabot-preview[bot]
72901ce3f2 Bump ASF-ui from 127a85d to dc35917
Bumps [ASF-ui](https://github.com/JustArchiNET/ASF-ui) from `127a85d` to `dc35917`.
- [Release notes](https://github.com/JustArchiNET/ASF-ui/releases)
- [Commits](127a85dc2d...dc359177df)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-02-06 01:25:17 +00:00
dependabot-preview[bot]
d1ed423d10 Bump Microsoft.NET.Test.Sdk from 16.4.0 to 16.5.0
Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 16.4.0 to 16.5.0.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Commits](https://github.com/microsoft/vstest/compare/v16.4.0...v16.5.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-02-05 08:56:07 +00:00
dependabot-preview[bot]
9e473482a8 Bump ASF-ui from 773f7b9 to 127a85d
Bumps [ASF-ui](https://github.com/JustArchiNET/ASF-ui) from `773f7b9` to `127a85d`.
- [Release notes](https://github.com/JustArchiNET/ASF-ui/releases)
- [Commits](773f7b97e2...127a85dc2d)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-02-05 01:24:49 +00:00
JustArchi
44ba45871e Decrease MaxItemsPerTrade 2020-02-04 18:54:32 +01:00
dependabot-preview[bot]
f98a5d3d87 Bump ASF-ui from 8a9dd29 to 773f7b9
Bumps [ASF-ui](https://github.com/JustArchiNET/ASF-ui) from `8a9dd29` to `773f7b9`.
- [Release notes](https://github.com/JustArchiNET/ASF-ui/releases)
- [Commits](8a9dd29069...773f7b97e2)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-02-04 01:26:22 +00:00
dependabot-preview[bot]
0d157a9bc4 Bump MSTest.TestAdapter from 2.0.0 to 2.1.0
Bumps [MSTest.TestAdapter](https://github.com/microsoft/testfx) from 2.0.0 to 2.1.0.
- [Release notes](https://github.com/microsoft/testfx/releases)
- [Commits](https://github.com/microsoft/testfx/compare/v2.0.0...v2.1.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-02-03 12:00:30 +00:00