Skip to content

Commit

Permalink
Version 2.13.4
Browse files Browse the repository at this point in the history
  • Loading branch information
3urobeat committed Jun 29, 2023
1 parent 87d79ee commit 829c387
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 8 deletions.
31 changes: 31 additions & 0 deletions docs/wiki/changelogs/CHANGELOG_v2.13.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- [2.13.1](#2.13.1)
- [2.13.2](#2.13.2)
- [2.13.3](#2.13.3)
- [2.13.4](#2.13.4)

 

Expand Down Expand Up @@ -334,4 +335,34 @@ Commit: [0ffe0fa](https://github.com/HerrEurobeat/steam-comment-service-bot/comm
- Removed vanity resolving fix library patch as [my PR to the SteamCommunity library got merged](https://github.com/DoctorMcKay/node-steamcommunity/pull/314)
- Updated dependencies

Commit: [24984d6](https://github.com/HerrEurobeat/steam-comment-service-bot/commit/24984d6)

 

<a id="2.13.4"></a>

## **2023-06-29, Version 2.13.4**
**Additions:**
- Added REST API plugin written by [@DerDeathraven](https://github.com/DerDeathraven) to default packages list. Plugin is disabled by default.
- Added function to PluginSystem to delete files from their plugin data folder
- Added proper handling of requesting >50 missing game licenses from Steam

**Fixes:**
- Fixed account loosing connection (changing status) during active request throwing error because the account could not be found anymore
- Fixed non-owners not being permitted to use !abort and !failed commands for group & sharedfiles requests that they started
- Fixed !failed command throwing error when providing non-profile ID
- Fixed destructuring response of getUserCooldown() helper in comment command throwing error when database request fails
- Fixed reloadPlugins() throwing error for plugins missing unload() function
- Fixed error on plugin import causing subsequent error on load
- Fixed login() "changed status" log message showing EStatus enum number instead of human readable string
- Fixed !abort and !failed messages not mentioning sharedfiles

**Changes:**
- Request commands (comment, vote, favorite) will now log request start messages before the first iteration to avoid unintuitive log behaviour if the first iteration fails
- The PluginSystem will now only display warnings (e.g. missing unload() function) for enabled plugins
- "Last account logged in, waiting for user object to populate" message will now show the index of the affected bot account
- Minor README.md improvements
- Updated dependencies
- Minor other changes

Commit: [](https://github.com/HerrEurobeat/steam-comment-service-bot/commit/)
4 changes: 2 additions & 2 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.3",
"version": "2.13.4",
"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": "21303",
"versionstr": "2.13.3",
"branch": "beta-testing",
"version": "21304",
"versionstr": "2.13.4",
"branch": "master",
"filetostart": "./src/starter.js",
"filetostarturl": "https://raw.githubusercontent.com/HerrEurobeat/steam-comment-service-bot/beta-testing/src/starter.js",
"filetostarturl": "https://raw.githubusercontent.com/HerrEurobeat/steam-comment-service-bot/master/src/starter.js",
"mestr": "3urobeat",
"aboutstr": "This bot was created by 3urobeat.\nGitHub: https://github.com/HerrEurobeat/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": "Reworked getting missing licenses of playinggames to reduce memory usage and fixed commenting on sharedfiles owned by private profiles not working.",
"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.",
"timesloggedin": 0,
"totallogintime": 0
}

0 comments on commit 829c387

Please sign in to comment.