5 Commits

Author SHA1 Message Date
0624b1c7f3 Update module.json with latest version and download link
All checks were successful
Release Creation / build (release) Successful in 30s
- Updated the version number from 0.2.1 to 0.3.0 in the module.json file.
- Changed the download link from a specific version to the latest version.
- The manifest URL now points to the latest version of the module.json file.
2025-02-07 11:50:31 -06:00
5317a8dc9f Update module packaging workflow
All checks were successful
Release Creation / build (release) Successful in 34s
2025-02-07 11:09:14 -06:00
bd4db36d90 Update font paths and colors for SW-RPG symbols
Some checks failed
Release Creation / build (release) Failing after 22s
- Updated font path in `sw-rpg-symbol.css` to use relative path.
- Added new `--dice-color-setback` variable to `asc-ffg-starwars.css` for setback color.
- Updated `.starwars-rpg-info` CSS to use `--dice-color-setback` variable for setback color.
- Added `.symbol` class to `.starwars-rpg-info` CSS to use `--dice-color-setback` variable for setback color.
- Updated `.symbol` class in `.starwars-rpg-info` CSS to use `--dice-color-setback` variable for setback color.
- Updated `.ability` class in `.starwars-rpg-info` CSS to use `--dice-color-ability` variable for ability color.
- Updated `.proficiency` class in `.starwars-rpg-info` CSS to use `--dice-color-proficiency` variable for proficiency color.
- Updated `.boost` class in `.starwars-rpg-info` CSS to use `--dice-color-boost` variable for boost color.
- Updated `.difficulty` class in `.starwars-rpg-info` CSS to use `--dice-color-difficulty` variable for difficulty color.
- Updated `.challenge` class in `.starwars-rpg-info` CSS to use `--dice-color-challenge` variable for challenge color.

Added a workflow to automatically create a release when a new version is published.

- It uses actions to extract the version number, substitute manifest and download URLs, create a zip file, set a commit message, and create a release with the files.

- Added `*.code-workspace` and `.vscode` to the `.gitignore` to exclude these files from version control.
2025-02-07 10:51:46 -06:00
d26f5aacb1 Bump version to 0.2.1 and update download URL
- Updated `version` from 0.2.0 to 0.2.1 in `module.json`.
- Modified the `download` URL to point to the new version's release zip.
2025-02-05 11:52:10 -06:00
4423aaaa1b Add Star Wars Text Page support and update journal styling
- Registered `StarWarsTextPageSheet` for handling text-type journal pages with custom settings.
- Extended `journalSheets.js` to define `StarWarsTextPageSheet` with specific UI configurations.
- Modified CSS to apply the Star Wars style background to `.editor-container` within the journal.
- Enhanced overall journal aesthetics while maintaining the existing `StarWarsStyleJournalSheet`.
2025-02-05 11:51:12 -06:00
8 changed files with 109 additions and 30 deletions

59
.gitea/workflows/main.yml Normal file
View File

@@ -0,0 +1,59 @@
name: Release Creation
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# get part of the tag after the `v`
- name: Extract tag version number
id: get_version
uses: battila7/get-version-action@v2
# Substitute the Manifest and Download URLs in the module.json
- name: Substitute Manifest and Download Links For Versioned Ones
id: sub_manifest_link_version
uses: microsoft/variable-substitution@v1
with:
files: 'src/module.json'
env:
version: ${{steps.get_version.outputs.version-without-v}}
url: https://gitea.ascorrea.com/${{github.repository}}
manifest: https://gitea.ascorrea.com/${{github.repository}}/releases/latest/download/module.json
download: https://gitea.ascorrea.com/${{github.repository}}/releases/download/${{github.event.release.tag_name}}/module.zip
# Create a zip file with all files required by the module to add to the release
- name: Create files (module.zip, module.json) for release
working-directory: ./src
run: >
mkdir -p ../dist
&& zip -r ../dist/module.zip .
&& cp module.json ../dist/
&& echo \"Done! Zipped module.json and copied module.js.\"
- name: Setting commit message variable
id: commit-message
# Per
# https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions#example-of-a-multiline-string
run: |
{
echo 'COMMIT_MESSAGE<<EOF'
git log -1 --pretty=%B
echo EOF
} >> "$GITHUB_OUTPUT"
# Create a release for this specific version
- name: Update Release with Files
id: create_version_release
uses: akkuman/gitea-release-action@v1
with:
files: |-
./dist/module.json
./dist/module.zip
body: |-
${{ steps.commit-message.outputs.COMMIT_MESSAGE }}

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
*.code-workspace
.vscode

View File

@@ -1,6 +1,6 @@
@font-face {
font-family: "SW-RPG";
src: url("worlds/shared/fonts/SW-RPG-Symbol.otf") format("opentype"), url("../files/font/SW-RPG-Symbol.ttf") format("truetype"), url("../files/font/SW-RPG-Symbol.woff") format("woff");
src: url("./SW-RPG-Symbol.otf") format("opentype"), url("./SW-RPG-Symbol.ttf") format("truetype"), url("./SW-RPG-Symbol.woff") format("woff");
font-weight: normal;
font-style: normal;
}

View File

@@ -1,8 +1,8 @@
{
"id": "asc-starwars-style-journal",
"title": "Star Wars Style Journal",
"version": "0.2.0",
"download": "https://gitea.ascorrea.com/asc/asc-starwars-style-journal/releases/download/v0.2.0/module.zip",
"version": "0.3.0",
"download": "https://gitea.ascorrea.com/asc/asc-starwars-style-journal/releases/download/latest/module.zip",
"manifest": "https://gitea.ascorrea.com/asc/asc-starwars-style-journal/releases/download/latest/module.json",
"compatibility": {
"minimum": "12",
@@ -13,5 +13,4 @@
"styles/asc-ffg-starwars.css",
"styles/asc-starwars-journal.css"
]
}

View File

@@ -1,4 +1,4 @@
import {StarWarsStyleJournalSheet} from "./journalSheets.js"
import {StarWarsStyleJournalSheet, StarWarsTextPageSheet} from "./journalSheets.js"
// ui.notifications.info
// Register the custom journal sheet
@@ -8,6 +8,11 @@ Hooks.once('ready', () => {
label: 'Star Wars Style Journal',
makeDefault: false // Set to true if you want this as the default
});
DocumentSheetConfig.registerSheet(JournalEntryPage, "asc-starwars-style-journal", StarWarsTextPageSheet, {
types: ['text'],
label: 'Star Wars Text Page',
makeDefault: false, // Not globally default—used conditionally by the journal sheet
});
});
Hooks.on("renderChatMessage", (message, html, data) => {

View File

@@ -4,17 +4,18 @@ export class StarWarsStyleJournalSheet extends JournalSheet {
classes: [...(super.defaultOptions.classes || []), 'asc-starwars'],
});
}
// activateListeners(html) {
// super.activateListeners(html);
// const sidebar = html.find('.journal-sidebar');
// const aside = html.find('aside');
// this.toggleSidebar()
// }
async _render(force, options) {
await super._render(force, {...options, collapsed:true});
}
}
export class StarWarsTextPageSheet extends JournalTextPageSheet {
static get defaultOptions() {
return mergeObject(super.defaultOptions, {
classes: [...(super.defaultOptions.classes || []), 'asc-starwars'],
width: 600,
height: 400,
resizable: true,
});
}
}

View File

@@ -6,6 +6,7 @@
--dice-color-challenge: #D2263F;
--dice-color-difficulty: #532D7F;
--dice-color-proficiency: #F9EA2F;
--dice-color-setback: #0E0E0E;
}
body {
@@ -49,33 +50,45 @@ button {
font-family: 'SF Distant Galaxy';
}
.starwars-rpg-info {
font-family: 'SW-RPG';
text-shadow:
-1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
.symbol,
.difficulty,
.ability,
.challenge,
.setback,
.proficiency,
.boost
{
font-family: "SW-RPG";
text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
.boost {
color: #c3e1fe;
color: var(--dice-color-boost);
}
.ability {
color: #4f7f32;
color: var(--dice-color-ability);
}
.proficiency {
color: #fdee66;
color: var(--dice-color-proficiency);
}
.setback {
color: #0E0E0E;
}
.difficulty {
color: #3c1b4f;
}
.challenge {
color: #ca2722;
}
.symbol {
color: #000;
}
.setback {
color: var(--dice-color-setback);
}
.difficulty {
color: var(--dice-color-difficulty);
}
.challenge {
color: var(--dice-color-challenge);
}
.symbol {
color: #000;
}

View File

@@ -23,7 +23,7 @@
src: url("../fonts/SWCrawlBody.ttf");
}
.asc-starwars .journal-entry-content, .editor-container, .chat-message.asc-starwars .message-content {
.asc-starwars .journal-entry-content, .asc-starwars .editor-container, .chat-message.asc-starwars .message-content {
background-image:url(../artwork/stars.png) !important;
background-repeat:repeat !important;
background-position:center top !important;