Skip to content

Commit acd10a1

Browse files
committed
added message to copied list
1 parent 74a4b82 commit acd10a1

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# FoundryVTT - Forien's Copy Environment
2-
![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/forien/foundryvtt-forien-copy-environment?style=for-the-badge) ![GitHub Releases](https://img.shields.io/github/downloads/Forien/foundryvtt-forien-copy-environment/latest/total?style=for-the-badge)
2+
![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/forien/foundryvtt-forien-copy-environment?style=for-the-badge) ![GitHub Releases](https://img.shields.io/github/downloads/Forien/foundryvtt-forien-copy-environment/total?style=for-the-badge)
33
**[Compatibility]**: *FoundryVTT* 0.6.0+
44
**[Systems]**: *any*
55

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.0.0",
12+
"version": "1.0.1",
1313
"minimumCoreVersion": "0.6.0",
1414
"compatibleCoreVersion": "0.6.3",
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.0.0/v1.0.0.zip",
18-
"readme": "https://github.com/Forien/foundryvtt-forien-copy-environment/blob/v1.0.0/README.md",
17+
"download": "https://github.com/Forien/foundryvtt-forien-copy-environment/releases/download/v1.0.1/v1.0.1.zip",
18+
"readme": "https://github.com/Forien/foundryvtt-forien-copy-environment/blob/v1.0.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: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ class FCE {
1010
text += `${m.id} ${m.data.version} (${m.data.author})\n`;
1111
});
1212

13+
text += `\n${data.message}`;
14+
1315
const el = document.createElement('textarea');
1416
el.value = text;
1517
el.setAttribute('readonly', '');
@@ -58,7 +60,9 @@ class FCE {
5860
let system = game.data.system;
5961
let core = game.data.version;
6062

61-
return {core, system, modules};
63+
let message = "List generated with Forien's Copy Environment: https://github.com/Forien/foundryvtt-forien-copy-environment"
64+
65+
return {message, core, system, modules};
6266
}
6367

6468
static getModules() {

0 commit comments

Comments
 (0)