Skip to content

Commit

Permalink
Fork the project
Browse files Browse the repository at this point in the history
  • Loading branch information
prantlf committed Feb 26, 2023
1 parent 589a594 commit 301612d
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 7 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Test or Release

on:
- push
- pull_request

jobs:
test-or-release:
runs-on: ubuntu-latest
steps:
- name: Prepare OS
run: sudo apt-get install -y fontforge
- name: Checkout Sources
uses: actions/checkout@v3
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
registry-url: 'https://registry.npmjs.org'
- name: Install PNPM
uses: pnpm/action-setup@v2
with:
version: latest
run_install: |
- args: [--frozen-lockfile, --no-verify-store-integrity]
- name: Test
run: npm test
- name: Publish
uses: cycjimmy/semantic-release-action@v3
with:
branches: master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
*#
#*
*.swp
!.github
!.gitignore
dist
node_modules
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

This is a copy of Solbera's CC-BY-SA-4.0 fonts taken from [his Reddit thread](https://www.reddit.com/r/UnearthedArcana/comments/3vpphx/5e_font_package_embeddable_cc_edition/), combined with Ryrok's fixes from [this Reddit thread](https://www.reddit.com/r/UnearthedArcana/comments/4loka0/fixed_versions_of_solberas_fonts/) and fixes and additions by [Ners](https://www.reddit.com/r/UnearthedArcana/comments/71wzc2/new_indesign_template_and_open_source_fonts/) ("Remake") with some minor adjustment made by [LUCASTUCIOUS](http://github.com/lucastucious).

This is a fork of the [original project] with several enhancements:

* Distributed as NPM module.
* Optimised web font formats included.
* Declarations of font faces in CSS stylesheets included.

Use NPM to install the package or to download unpack the tarball with them:

npm i -D solbera-dnd-fonts
Expand Down Expand Up @@ -67,3 +73,5 @@ The following table contains names and usage details:
> A. Make Some Sweet Homebrew for the rest of us!
<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.

[original project]: https://github.com/jonathonf/solbera-dnd-fonts.git
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,24 @@
"name": "solbera-dnd-fonts",
"version": "1.0.0",
"description": "Solbera's DND5e fonts",
"homepage": "https://github.com/jonathonf/solbera-dnd-fonts#readme",
"author": "Jonathon <559369+jonathonf@users.noreply.github.com>",
"homepage": "https://github.com/prantlf/solbera-dnd-fonts#readme",
"author": "Ferdinand Prantl <prantlf@gmail.com>",
"contributors": [
"Peter Lucas <peterlucas2804@gmail.com>",
"Ferdinand Prantl <prantlf@gmail.com>"
"Jonathon <559369+jonathonf@users.noreply.github.com>",
"Peter Lucas <peterlucas2804@gmail.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/jonathonf/solbera-dnd-fonts.git"
"url": "https://github.com/prantlf/solbera-dnd-fonts.git"
},
"bugs": {
"url": "https://github.com/jonathonf/solbera-dnd-fonts/issues"
"url": "https://github.com/prantlf/solbera-dnd-fonts/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/jonathonf/solbera-dnd-fonts/blob/master/LICENSE"
"url": "https://github.com/prantlf/solbera-dnd-fonts/blob/master/LICENSE"
}
],
"engines": {
Expand Down

0 comments on commit 301612d

Please sign in to comment.