Compare commits

...

3 Commits

Author SHA1 Message Date
farling42 fe527cd944 Ignore lock file and create new release 2025-03-20 16:09:54 +00:00
farling42 0fa4b52704 Add LICENSE file to zip 2025-03-20 16:03:02 +00:00
farling42 6b2deb0392 Fix module.json for release action 2025-03-20 16:00:21 +00:00
4 changed files with 9 additions and 5 deletions
+1
View File
@@ -117,6 +117,7 @@ jobs:
./module.zip \ ./module.zip \
`# The files that will be included.` \ `# The files that will be included.` \
module.json \ module.json \
LICENSE \
CHANGELOG.md \ CHANGELOG.md \
README.md \ README.md \
src/ src/
+1
View File
@@ -0,0 +1 @@
socketlib.lock
+3 -1
View File
@@ -1,8 +1,10 @@
## 1.1.1
- Update module.json for new location and maintainer.
## 1.1.0 ## 1.1.0
### Compatibility ### Compatibility
- Updated for compatibilty with Foundry 12 (thanks Clemente!) - Updated for compatibilty with Foundry 12 (thanks Clemente!)
## 1.0.13 ## 1.0.13
### Compatibility ### Compatibility
- Verified compatibility with Foundry 11 - Verified compatibility with Foundry 11
+4 -4
View File
@@ -2,7 +2,7 @@
"id": "socketlib", "id": "socketlib",
"title": "socketlib", "title": "socketlib",
"description": "A library for easier handling of foundry sockets", "description": "A library for easier handling of foundry sockets",
"version": "1.1.0", "version": "#{VERSION}#",
"compatibility": { "compatibility": {
"minimum": "11", "minimum": "11",
"verified": "12" "verified": "12"
@@ -27,9 +27,9 @@
"esmodules": [ "esmodules": [
"src/socketlib.js" "src/socketlib.js"
], ],
"url": "https://github.com/farling42/foundryvtt-socketlib", "url": "#{URL}#",
"download": "https://github.com/farling42/foundryvtt-socketlib/archive/v1.1.0.zip", "download": "#{DOWNLOAD}#",
"manifest": "https://raw.githubusercontent.com/farling42/foundryvtt-socketlib/master/module.json", "manifest": "#{MANIFEST}#",
"readme": "https://github.com/farling42/foundryvtt-socketlib/blob/master/README.md", "readme": "https://github.com/farling42/foundryvtt-socketlib/blob/master/README.md",
"changelog": "https://github.com/farling42/foundryvtt-socketlib/blob/master/CHANGELOG.md", "changelog": "https://github.com/farling42/foundryvtt-socketlib/blob/master/CHANGELOG.md",
"bugs": "https://github.com/farling42/foundryvtt-socketlib/issues" "bugs": "https://github.com/farling42/foundryvtt-socketlib/issues"