Skip to content

Commit

Permalink
Version 2.13.5
Browse files Browse the repository at this point in the history
  • Loading branch information
3urobeat committed Jul 9, 2023
1 parent aa41b5a commit cd2683b
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 12 deletions.
35 changes: 34 additions & 1 deletion docs/wiki/changelogs/CHANGELOG_v2.13.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
- [2.13.2](#2.13.2)
- [2.13.3](#2.13.3)
- [2.13.4](#2.13.4)
- [2.13.5](#2.13.5)

 

Expand Down Expand Up @@ -365,4 +366,36 @@ Commit: [24984d6](https://github.com/3urobeat/steam-comment-service-bot/commit/2
- Updated dependencies
- Minor other changes

Commit: [829c387](https://github.com/3urobeat/steam-comment-service-bot/commit/829c387)
Commit: [829c387](https://github.com/3urobeat/steam-comment-service-bot/commit/829c387)

 

<a id="2.13.5"></a>

## **2023-07-09, Version 2.13.5**, co-author [@DerDeathraven](https://github.com/DerDeathraven)
**Additions:**
- Aggregate old config files for plugins [@DerDeathraven](https://github.com/DerDeathraven) [#188](https://github.com/3urobeat/steam-comment-service-bot/pull/188)
- Added arguments documentation to all commands
- Added command descriptions from wiki to all commands
- Added data export functions to DataManager to write all data files back to the disk
- Added JsDoc eslint rules and enforced them
- Added Command and CommandArg typedef in CommandHandler

**Fixes:**
- Potentially fixed SteamCommunity library scraping sharedfile error caused by non-English page being returned by Steam
- Fixed reload not clearing plugin cache when using 'npm link' [@DerDeathraven](https://github.com/DerDeathraven) [#192](https://github.com/3urobeat/steam-comment-service-bot/pull/192)
- Fixed reload not clearing plugin cache of subfolders
- Fixed plugins reading core commands on load getting an empty array because `_importCoreCommands()` wasn't being awaited

**Changes:**
- Wiki: Updated Integrating into your app and Creating Plugins [@DerDeathraven](https://github.com/DerDeathraven) [#189](https://github.com/3urobeat/steam-comment-service-bot/pull/189)
- Wiki: Rewrote Steam Limitations page, rewrote Integrating into your app page, updated various command descriptions, added missing step to npm link explanation and more misc improvements
- Plugin data handling functions will now throw errors on missing parameters
- Data Check will now throw errors instead of rejecting with a string
- Cleaned up a few unnecessarily nested promises
- Enforced lowercase primitive types in JsDocs
- Updated every mention of my old username
- Updated dependencies
- Minor other changes

Commit: [](https://github.com/3urobeat/steam-comment-service-bot/commit/)
10 changes: 5 additions & 5 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "steam-comment-service-bot",
"version": "2.13.4",
"version": "2.13.5",
"description": "Request a ton of steam profile/group comments from a bot network with just one command!",
"main": "start.js",
"dependencies": {
Expand Down
10 changes: 5 additions & 5 deletions src/data/data.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"version": "21304",
"versionstr": "2.13.4",
"branch": "beta-testing",
"version": "21305",
"versionstr": "2.13.5",
"branch": "master",
"filetostart": "./src/starter.js",
"filetostarturl": "https://raw.githubusercontent.com/3urobeat/steam-comment-service-bot/beta-testing/src/starter.js",
"filetostarturl": "https://raw.githubusercontent.com/3urobeat/steam-comment-service-bot/master/src/starter.js",
"mestr": "3urobeat",
"aboutstr": "This bot was created by 3urobeat.\nGitHub: https://github.com/3urobeat/steam-comment-service-bot \nSteam: https://steamcommunity.com/id/3urobeat \nIf you like my work, any donation would be appreciated! https://paypal.me/3urobeat",
"firststart": true,
"compatibilityfeaturedone": false,
"whatsnew": "Added REST API plugin @DerDeathraven, added proper handling of >50 missing licenses, fixed error when acc looses connection during request, fixed non-profile behaviour of !failed & !abort for non-owners and more.",
"whatsnew": "Improved plugin system and other parts related to it, (potentially) fixed getting sharedfile error, improved code quality, improved a few wiki pages and minor other changes and fixes.",
"timesloggedin": 0,
"totallogintime": 0
}
1 change: 1 addition & 0 deletions src/libraryPatches/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ These are the patches being applied:
- Re-enable primaryGroup profile setting: [#287](https://github.com/DoctorMcKay/node-steamcommunity/pull/287) & [#307](https://github.com/DoctorMcKay/node-steamcommunity/pull/307)
- Add sharedfiles voteUp & voteDown support
- Fix resolving vanity for private profiles returning error: [#315](https://github.com/DoctorMcKay/node-steamcommunity/pull/315)
- (Potentially) Fix sharedfile data scraping failing as a non-english page was returned by Steam

These patches have been applied in the past:
- Add full sharedfiles support: [#306](https://github.com/DoctorMcKay/node-steamcommunity/pull/306)
Expand Down

0 comments on commit cd2683b

Please sign in to comment.