Skip to content

Commit

Permalink
chore: Release 2.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
alerque committed May 11, 2023
1 parent d06b4bf commit 1b434b1
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ SILE itself is capable of far, far, more, and you're very welcome to play around
## Docker usage

As an alternative method to use FontProof, Docker images are available from [Docker Hub](https://hub.docker.com/repository/docker/siletypesetter/fontproof) or the [GitHub Container Registry](https://github.com/sile-typesetter/fontproof/pkgs/container/fontproof%2Ffontproof) with SILE and the *fontproof* class baked in and ready for use.
Released versions are tagged to match (e.g. `v2.0.4`), the latest release will be tagged `latest`, and a `master` tag is also available with the freshest development build.
Released versions are tagged to match (e.g. `v2.0.5`), the latest release will be tagged `latest`, and a `master` tag is also available with the freshest development build.
In order to be useful you need to tell the Docker run command a way to reach your source documents (and hence also to give it a place to write the output) as well as tell it who you are on the host machine so the output generated inside the container can be created with the expected ownership properties.
You may find it easiest to run with an alias like this:

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ inputs:
default: ""
runs:
using: docker
image: docker://ghcr.io/sile-typesetter/fontproof:v2.0.4
image: docker://ghcr.io/sile-typesetter/fontproof:v2.0.5
args:
- ${{ inputs.args }}
branding:
Expand Down
48 changes: 48 additions & 0 deletions rockspecs/fontproof-2.0.5-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
rockspec_format = "1.0"
package = "fontproof"
version = "2.0.5-1"

source = {
url = "git+https://github.com/sile-typesetter/fontproof.git",
dir = "fontproof",
tag = "v2.0.5"
}

description = {
summary = "A font design testing class for SILE",
detailed = [[FontProof enables you to produce PDF font test documents without
fiddling with InDesign or other manual page layout or word
processing programs. You can apply one of the predesigned test
documents (to be added later) or use FontProof to build your own
custom font test document.]],
license = "MIT",
homepage = "https://github.com/sile-typesetter/fontproof",
}

dependencies = {
"lua >= 5.1",
"lua_cliargs == 3.0-2"
}

build = {
type = "builtin",
modules = {
["sile.classes.fontproof"] = "classes/fontproof/init.lua",
["sile.packages.fontproof"] = "packages/fontproof/init.lua",
["sile.packages.fontproof.groups"] = "packages/fontproof/groups.lua",
["sile.packages.fontproof.gutenberg"] = "packages/fontproof/gutenberg.lua",
["sile.packages.fontproof.texts"] = "packages/fontproof/texts.lua",
["sile.packages.fontproof.templates.locator"] = "templates/locator.lua"
},
install = {
lua = {
["sile.packages.fontproof.templates.full"] = "templates/full.sil",
["sile.packages.fontproof.templates.gutenberg"] = "templates/gutenberg.sil",
["sile.packages.fontproof.templates.test"] = "templates/test.sil",
["sile.packages.fontproof.templates.unichar"] = "templates/unichar.sil"
},
bin = {
fontproof = "src/fontproof.lua"
}
}
}

0 comments on commit 1b434b1

Please sign in to comment.