Skip to content

Commit dfdd887

Browse files
committed
extract getText method
1 parent 04b5593 commit dfdd887

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
### v1.1.1
4+
* Added 0.6.6 compatibility
5+
36
## v1.1.0
47
* Added manifest URL link to JSON environment structure
58
* Added options to export and import game settings. Non-GM users can only import client-side settings.

module.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
"url": "https://www.patreon.com/forien"
1010
}
1111
],
12-
"version": "1.1.0",
12+
"version": "1.1.1",
1313
"minimumCoreVersion": "0.6.0",
1414
"compatibleCoreVersion": "0.7.1",
1515
"url": "https://github.com/Forien/foundryvtt-forien-copy-environment",
1616
"manifest": "https://raw.githubusercontent.com/Forien/foundryvtt-forien-copy-environment/master/module.json",
17-
"download": "https://github.com/Forien/foundryvtt-forien-copy-environment/releases/download/v1.1.0/v1.1.0.zip",
18-
"readme": "https://github.com/Forien/foundryvtt-forien-copy-environment/blob/v1.1.0/README.md",
17+
"download": "https://github.com/Forien/foundryvtt-forien-copy-environment/releases/download/v1.1.1/v1.1.1.zip",
18+
"readme": "https://github.com/Forien/foundryvtt-forien-copy-environment/blob/v1.1.1/README.md",
1919
"bugs": "https://github.com/Forien/foundryvtt-forien-copy-environment/issues",
2020
"esmodules": [
2121
"./modules/init.js"

modules/init.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import FCE from "./FCE.js";
22

33
Hooks.on("renderSettings", function (app, html, data) {
44
if (game.user.isGM) {
5-
new ContextMenu(html, "div.game-system", [
5+
new ContextMenu(html, "div.game-system, ul#game-details", [
66
{
77
name: "Copy as text",
88
icon: '<i class="far fa-copy"></i>',

0 commit comments

Comments
 (0)