Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
55a1cf70cd
|
|||
|
4c63a150fa
|
|||
|
add2f1d091
|
|||
|
0624b1c7f3
|
|||
|
5317a8dc9f
|
|||
|
bd4db36d90
|
|||
|
d26f5aacb1
|
|||
|
4423aaaa1b
|
|||
|
544b8dbdae
|
|||
|
c52e0aa9ab
|
|||
|
26309e2dc3
|
61
.gitea/workflows/main.yml
Normal file
@@ -0,0 +1,61 @@
|
||||
name: Release Creation
|
||||
|
||||
on:
|
||||
push:
|
||||
# Pattern matched against refs/tags
|
||||
tags:
|
||||
- '*'
|
||||
|
||||
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/download/latest/module.json
|
||||
download: https://gitea.ascorrea.com/${{github.repository}}/releases/download/${{ steps.get_version.outputs.version }}/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
@@ -0,0 +1,2 @@
|
||||
*.code-workspace
|
||||
.vscode
|
||||
BIN
src/fonts/Aurebesh/aurebesh-bold-italic.otf
Normal file
BIN
src/fonts/Aurebesh/aurebesh-bold.otf
Normal file
BIN
src/fonts/Aurebesh/aurebesh-condensed-bold-italic.otf
Normal file
BIN
src/fonts/Aurebesh/aurebesh-condensed-bold.otf
Normal file
BIN
src/fonts/Aurebesh/aurebesh-condensed-italic.otf
Normal file
BIN
src/fonts/Aurebesh/aurebesh-condensed.otf
Normal file
BIN
src/fonts/Aurebesh/aurebesh-italic.otf
Normal file
BIN
src/fonts/Aurebesh/aurebesh-normal.ttf
Normal file
52
src/fonts/Aurebesh/aurebesh.css
Normal file
@@ -0,0 +1,52 @@
|
||||
@font-face {
|
||||
font-family: 'Aurebesh';
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
src: url('./aurebesh-normal.ttf');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Aurebesh';
|
||||
font-style: normal;
|
||||
font-weight: bold;
|
||||
src: url('./aurebesh-bold.ttf');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Aurebesh';
|
||||
font-style: italic;
|
||||
font-weight: bold;
|
||||
src: url('./aurebesh-bold-italic.ttf');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Aurebesh';
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-stretch: condensed;
|
||||
src: url('./aurebesh-condensed.ttf');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Aurebesh';
|
||||
font-style: normal;
|
||||
font-weight: bold;
|
||||
font-stretch: condensed;
|
||||
src: url('./aurebesh-condensed-bold.ttf');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Aurebesh';
|
||||
font-style: italic;
|
||||
font-weight: normal;
|
||||
font-stretch: condensed;
|
||||
src: url('./aurebesh-condensed-italic.ttf');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Aurebesh';
|
||||
font-style: italic;
|
||||
font-weight: bold;
|
||||
font-stretch: condensed;
|
||||
src: url('./aurebesh-condensed-bold-italic.ttf');
|
||||
}
|
||||
BIN
src/fonts/Aurek-Besh/Aurek-Besh.ttf
Normal file
BIN
src/fonts/Aurek-Besh/aurek-besh-narrow.ttf
Normal file
0
src/fonts/Aurek-Besh/aurek-besh.css
Normal file
BIN
src/fonts/Elektra Pro/elektra-pro-light.otf
Normal file
BIN
src/fonts/Elektra Pro/elektra-pro-medium-bold-italic.otf
Normal file
BIN
src/fonts/Elektra Pro/elektra-pro-medium-bold.otf
Normal file
BIN
src/fonts/Elektra Pro/elektra-pro-medium.otf
Normal file
BIN
src/fonts/Elektra Pro/elektra-pro-text.otf
Normal file
26
src/fonts/Elektra Pro/elektra-pro.css
Normal file
@@ -0,0 +1,26 @@
|
||||
@font-face{
|
||||
font-family: "Elektra Pro";
|
||||
src: url('./elektra-pro-light.otf') format("opentype");
|
||||
font-weight: 300;
|
||||
}
|
||||
@font-face{
|
||||
font-family: "Elektra Pro";
|
||||
src: url('./elektra-pro-medium-bold-italic.otf') format("opentype");
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
}
|
||||
@font-face{
|
||||
font-family: "Elektra Pro";
|
||||
src: url('./elektra-pro-medium-bold.otf') format("opentype");
|
||||
font-weight: bold;
|
||||
}
|
||||
@font-face{
|
||||
font-family: "Elektra Pro";
|
||||
src: url('./elektra-pro-medium.otf') format("opentype");
|
||||
font-weight: 500;
|
||||
}
|
||||
@font-face{
|
||||
font-family: "Elektra Pro";
|
||||
src: url('./elektra-pro-text.otf') format("opentype");
|
||||
font-weight: 375;
|
||||
}
|
||||
BIN
src/fonts/EotE Symbol Regular v1.otf
Normal file
BIN
src/fonts/Eurostile LT/eurostile-lt-std-boldcn.otf
Normal file
BIN
src/fonts/Eurostile LT/eurostile-lt-std-boldex.otf
Normal file
BIN
src/fonts/Eurostile LT/eurostile-lt-std-cn.otf
Normal file
BIN
src/fonts/Eurostile LT/eurostile-lt-std-demi-oblique.ttf
Normal file
BIN
src/fonts/Eurostile LT/eurostile-lt-std-demi.otf
Normal file
BIN
src/fonts/Eurostile LT/eurostile-lt-std-oblique.ttf
Normal file
38
src/fonts/Eurostile LT/eurostile-lt.css
Normal file
@@ -0,0 +1,38 @@
|
||||
@font-face{
|
||||
font-family: 'Eurostile LT';
|
||||
font-weight: bold;
|
||||
font-stretch: expanded;
|
||||
src: url('./eurostile-lt-std-boldex.otf') format("opentype");
|
||||
}
|
||||
|
||||
@font-face{
|
||||
font-family: 'Eurostile LT';
|
||||
font-stretch: condensed;
|
||||
src: url('./eurostile-lt-std-cn.otf') format("opentype");
|
||||
}
|
||||
|
||||
@font-face{
|
||||
font-family: 'Eurostile LT';
|
||||
font-weight: 600;
|
||||
src: url('./eurostile-lt-std-demi.otf') format("opentype");
|
||||
}
|
||||
|
||||
@font-face{
|
||||
font-family: 'Eurostile LT';
|
||||
font-style: oblique;
|
||||
src: url('./eurostile-lt-std-oblique.ttf') format("truetype");;
|
||||
}
|
||||
|
||||
@font-face{
|
||||
font-family: 'Eurostile LT';
|
||||
font-weight: 600;
|
||||
font-style: oblique;
|
||||
src: url('./eurostile-lt-std-demi-oblique.ttf') format("truetype");;
|
||||
}
|
||||
|
||||
@font-face{
|
||||
font-family: 'Eurostile LT';
|
||||
font-weight: bold;
|
||||
font-stretch: condensed;
|
||||
src: url('./eurostile-lt-std-boldcn.otf') format("opentype");
|
||||
}
|
||||
BIN
src/fonts/ITC Stone Sans/itcstonesans-bold.ttf
Normal file
BIN
src/fonts/ITC Stone Sans/itcstonesans-medium.otf
Normal file
10
src/fonts/ITC Stone Sans/itcstonesans.css
Normal file
@@ -0,0 +1,10 @@
|
||||
@font-face{
|
||||
font-family: "ITC Stone Sans";
|
||||
src: url('./itcstonesans-medium.otf');
|
||||
font-weight: 530;
|
||||
}
|
||||
@font-face{
|
||||
font-family: "ITC Stone Sans";
|
||||
src: url('./itcstonesans-bold.ttf');
|
||||
font-weight: bold;
|
||||
}
|
||||
50
src/fonts/ITC Symbol/itc-symbol.css
Normal file
@@ -0,0 +1,50 @@
|
||||
@font-face{
|
||||
font-family: "ITC Symbol";
|
||||
src: url('./itcsymbolstd-black.otf');
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
@font-face{
|
||||
font-family: "ITC Symbol";
|
||||
src: url('./itcsymbolstd-blackitalic.otf');
|
||||
font-weight: 800;
|
||||
font-style: italic;
|
||||
}
|
||||
@font-face{
|
||||
font-family: "ITC Symbol";
|
||||
src: url('./itcsymbolstd-bold.ttf');
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
@font-face{
|
||||
font-family: "ITC Symbol";
|
||||
src: url('./itcsymbolstd-bolditalic.otf');
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face{
|
||||
font-family: "ITC Symbol";
|
||||
src: url('./itcsymbolstd-book.otf');
|
||||
font-weight: 350;
|
||||
}
|
||||
|
||||
@font-face{
|
||||
font-family: "ITC Symbol";
|
||||
src: url('./itcsymbolstd-bookitalic.otf');
|
||||
font-weight: 350;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face{
|
||||
font-family: "ITC Symbol";
|
||||
src: url('./itcsymbolstd-medium.otf');
|
||||
font-weight: 530;
|
||||
}
|
||||
|
||||
@font-face{
|
||||
font-family: "ITC Symbol";
|
||||
src: url('./itcsymbolstd-mediumitalic.otf');
|
||||
font-weight: 530;
|
||||
font-style: italic;
|
||||
}
|
||||
BIN
src/fonts/ITC Symbol/itcsymbolstd-black.otf
Normal file
BIN
src/fonts/ITC Symbol/itcsymbolstd-blackitalic.otf
Normal file
BIN
src/fonts/ITC Symbol/itcsymbolstd-bold.ttf
Normal file
BIN
src/fonts/ITC Symbol/itcsymbolstd-bolditalic.otf
Normal file
BIN
src/fonts/ITC Symbol/itcsymbolstd-book.otf
Normal file
BIN
src/fonts/ITC Symbol/itcsymbolstd-bookitalic.otf
Normal file
BIN
src/fonts/ITC Symbol/itcsymbolstd-medium.otf
Normal file
BIN
src/fonts/ITC Symbol/itcsymbolstd-mediumitalic.otf
Normal file
BIN
src/fonts/MISTRAL.TTF
Normal file
BIN
src/fonts/Maqui/MaquiW00-Black.eot
Normal file
1762
src/fonts/Maqui/MaquiW00-Black.svg
Normal file
|
After Width: | Height: | Size: 144 KiB |
BIN
src/fonts/Maqui/MaquiW00-Black.ttf
Normal file
BIN
src/fonts/Maqui/MaquiW00-Black.woff
Normal file
BIN
src/fonts/Maqui/MaquiW00-Black.woff2
Normal file
BIN
src/fonts/Maqui/MaquiW00-BlackItalic.eot
Normal file
1810
src/fonts/Maqui/MaquiW00-BlackItalic.svg
Normal file
|
After Width: | Height: | Size: 158 KiB |
BIN
src/fonts/Maqui/MaquiW00-BlackItalic.ttf
Normal file
BIN
src/fonts/Maqui/MaquiW00-BlackItalic.woff
Normal file
BIN
src/fonts/Maqui/MaquiW00-BlackItalic.woff2
Normal file
BIN
src/fonts/Maqui/MaquiW00-Bold.eot
Normal file
1816
src/fonts/Maqui/MaquiW00-Bold.svg
Normal file
|
After Width: | Height: | Size: 150 KiB |
BIN
src/fonts/Maqui/MaquiW00-Bold.ttf
Normal file
BIN
src/fonts/Maqui/MaquiW00-Bold.woff
Normal file
BIN
src/fonts/Maqui/MaquiW00-Bold.woff2
Normal file
BIN
src/fonts/Maqui/MaquiW00-BoldItalic.eot
Normal file
1860
src/fonts/Maqui/MaquiW00-BoldItalic.svg
Normal file
|
After Width: | Height: | Size: 166 KiB |
BIN
src/fonts/Maqui/MaquiW00-BoldItalic.ttf
Normal file
BIN
src/fonts/Maqui/MaquiW00-BoldItalic.woff
Normal file
BIN
src/fonts/Maqui/MaquiW00-BoldItalic.woff2
Normal file
BIN
src/fonts/Maqui/MaquiW00-Book.eot
Normal file
1832
src/fonts/Maqui/MaquiW00-Book.svg
Normal file
|
After Width: | Height: | Size: 154 KiB |
BIN
src/fonts/Maqui/MaquiW00-Book.ttf
Normal file
BIN
src/fonts/Maqui/MaquiW00-Book.woff
Normal file
BIN
src/fonts/Maqui/MaquiW00-Book.woff2
Normal file
BIN
src/fonts/Maqui/MaquiW00-BookItalic.eot
Normal file
1879
src/fonts/Maqui/MaquiW00-BookItalic.svg
Normal file
|
After Width: | Height: | Size: 170 KiB |
BIN
src/fonts/Maqui/MaquiW00-BookItalic.ttf
Normal file
BIN
src/fonts/Maqui/MaquiW00-BookItalic.woff
Normal file
BIN
src/fonts/Maqui/MaquiW00-BookItalic.woff2
Normal file
BIN
src/fonts/Maqui/MaquiW00-Extralight.eot
Normal file
1844
src/fonts/Maqui/MaquiW00-Extralight.svg
Normal file
|
After Width: | Height: | Size: 160 KiB |
BIN
src/fonts/Maqui/MaquiW00-Extralight.ttf
Normal file
BIN
src/fonts/Maqui/MaquiW00-Extralight.woff
Normal file
BIN
src/fonts/Maqui/MaquiW00-Extralight.woff2
Normal file
BIN
src/fonts/Maqui/MaquiW00-ExtralightItalic.eot
Normal file
1885
src/fonts/Maqui/MaquiW00-ExtralightItalic.svg
Normal file
|
After Width: | Height: | Size: 174 KiB |
BIN
src/fonts/Maqui/MaquiW00-ExtralightItalic.ttf
Normal file
BIN
src/fonts/Maqui/MaquiW00-ExtralightItalic.woff
Normal file
BIN
src/fonts/Maqui/MaquiW00-ExtralightItalic.woff2
Normal file
BIN
src/fonts/Maqui/MaquiW00-Heavy.eot
Normal file
1803
src/fonts/Maqui/MaquiW00-Heavy.svg
Normal file
|
After Width: | Height: | Size: 148 KiB |
BIN
src/fonts/Maqui/MaquiW00-Heavy.ttf
Normal file
BIN
src/fonts/Maqui/MaquiW00-Heavy.woff
Normal file
BIN
src/fonts/Maqui/MaquiW00-Heavy.woff2
Normal file
BIN
src/fonts/Maqui/MaquiW00-HeavyItalic.eot
Normal file
1845
src/fonts/Maqui/MaquiW00-HeavyItalic.svg
Normal file
|
After Width: | Height: | Size: 163 KiB |
BIN
src/fonts/Maqui/MaquiW00-HeavyItalic.ttf
Normal file
BIN
src/fonts/Maqui/MaquiW00-HeavyItalic.woff
Normal file
BIN
src/fonts/Maqui/MaquiW00-HeavyItalic.woff2
Normal file
BIN
src/fonts/Maqui/MaquiW00-Italic.eot
Normal file
1878
src/fonts/Maqui/MaquiW00-Italic.svg
Normal file
|
After Width: | Height: | Size: 169 KiB |
BIN
src/fonts/Maqui/MaquiW00-Italic.ttf
Normal file
BIN
src/fonts/Maqui/MaquiW00-Italic.woff
Normal file
BIN
src/fonts/Maqui/MaquiW00-Italic.woff2
Normal file
BIN
src/fonts/Maqui/MaquiW00-Light.eot
Normal file
1838
src/fonts/Maqui/MaquiW00-Light.svg
Normal file
|
After Width: | Height: | Size: 158 KiB |