Skip to content

Commit 5fa28a9

Browse files
committed
Release v1.0.2
1 parent 148f442 commit 5fa28a9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## In development
1+
## 1.0.2
22
### New API endpoints
33
- Added `executeForOthers` and `executeForOtherGMs` that execute for all users/all GMs except the local client.
44

module.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "socketlib",
33
"title": "socketlib",
44
"description": "A library for easier handling of foundry sockets",
5-
"version": "1.0.1",
5+
"version": "1.0.2",
66
"minimumCoreVersion" : "0.7.9",
77
"compatibleCoreVersion" : "0.8.1",
88
"library": true,
@@ -17,7 +17,7 @@
1717
"src/socketlib.js"
1818
],
1919
"url": "https://github.com/manuelVo/foundryvtt-socketlib",
20-
"download": "https://github.com/manuelVo/foundryvtt-socketlib/archive/v1.0.1.zip",
20+
"download": "https://github.com/manuelVo/foundryvtt-socketlib/archive/v1.0.2.zip",
2121
"manifest": "https://raw.githubusercontent.com/manuelVo/foundryvtt-socketlib/master/module.json",
2222
"readme": "https://github.com/manuelVo/foundryvtt-socketlib/blob/master/README.md",
2323
"changelog": "https://github.com/manuelVo/foundryvtt-socketlib/blob/master/CHANGELOG.md",

src/socketlib.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ class SocketlibSocket {
114114
func(...args);
115115
}
116116

117-
async executeForAllOtherGMs(handler, ...args) {
117+
async executeForOtherGMs(handler, ...args) {
118118
const [name, func] = this._resolveFunction(handler);
119119
this._sendCommand(name, args, RECIPIENT_TYPES.ALL_GMS);
120120
}

0 commit comments

Comments
 (0)