Skip to content

Commit

Permalink
refactor: restructure files
Browse files Browse the repository at this point in the history
  • Loading branch information
ghost91- committed Feb 1, 2022
1 parent aa81367 commit db2d69b
Show file tree
Hide file tree
Showing 32 changed files with 67 additions and 681 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
allowUpdates: false
name: ${{ steps.extract_version.outputs.version }}
token: ${{ secrets.GITHUB_TOKEN }}
artifacts: './src/module.json, ./module.zip'
artifacts: './module.json, ./module.zip'

- name: Publish to Foundry Admin
uses: Varriount/fvtt-autopublish@v1.0.6
Expand All @@ -128,4 +128,4 @@ jobs:
password: ${{ secrets.FVTT_PASSWORD }}
module-id: ${{ secrets.FVTT_PACKAGE_ID }}
manifest-url: https://github.com/${{ github.repository }}/releases/download/v${{ steps.extract_version.outputs.version }}/module.json
manifest-file: ./src/module.json
manifest-file: ./module.json
2 changes: 1 addition & 1 deletion .versionrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// SPDX-License-Identifier: MIT

const manifest = {
filename: 'src/module.json',
filename: 'module.json',
updater: require('./manifest-version-updater'),
};

Expand Down
14 changes: 4 additions & 10 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
This project is being developed under the terms of the
[LIMITED LICENSE AGREEMENT FOR MODULE DEVELOPMENT] for Foundry Virtual Tabletop.

The project itself is licensed under multiple licenses. It is difficult to keep
this section up to date, so here is a brief summary as of October 2021:
* The files in [media] are licensed under [CC BY 4.0].
* Other files are licensed under [MIT].

For more accurate information, check the individual files.
The project itself is licensed under multiple licenses. [REUSE] is used to
specify the licenses for individual files. All files either have their license
specified inside them or in an accompanying `.license` file.

[LIMITED LICENSE AGREEMENT FOR MODULE DEVELOPMENT]: https://foundryvtt.com/article/license/
[CC BY 4.0]: LICENSES/CC-BY-4.0.txt
[MIT]: LICENSES/MIT.txt

[media]: media
[REUSE]: https://reuse.software/
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 4 additions & 6 deletions src/module.json → module.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"title": "Foreground Drawings",
"description": "A module for Foundry Virtual Tabletop that allows users to create drawings in the foreground while keeping the ability to also draw in the background.",
"version": "0.2.0",
"author": "Johannes Loher",
"authors": [
{
"name": "Johannes Loher",
Expand All @@ -14,7 +13,7 @@
],
"minimumCoreVersion": "9.238",
"compatibleCoreVersion": "9",
"esmodules": ["module/foreground-drawings.js"],
"esmodules": ["foreground-drawings.js"],
"languages": [
{
"lang": "de",
Expand All @@ -30,12 +29,11 @@
"url": "https://github.com/ghost-fvtt/foreground-drawings",
"manifest": "https://github.com/ghost-fvtt/foreground-drawings/releases/latest/download/module.json",
"download": "https://github.com/ghost-fvtt/foreground-drawings/releases/download/v0.2.0/module.zip",
"license": "https://github.com/ghost-fvtt/foreground-drawings/blob/master/LICENSE.md",
"readme": "https://github.com/ghost-fvtt/foreground-drawings#readme",
"bugs": "https://github.com/ghost-fvtt/foreground-drawings/issues",
"changelog": "https://github.com/ghost-fvtt/foreground-drawings/blob/master/CHANGELOG.md",
"readme": "./README.md",
"license": "./LICENSE.md",
"changelog": "./CHANGELOG.md",
"manifestPlusVersion": "1.2.0",
"allowBugReporter": true,
"media": [
{
"type": "screenshot",
Expand Down
File renamed without changes.
Loading

0 comments on commit db2d69b

Please sign in to comment.