Skip to content

Commit

Permalink
chore: Release 2.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
alerque committed Sep 26, 2024
1 parent 4eaee44 commit 63ac006
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 1 deletion.
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: -t test
runs:
using: docker
image: docker://ghcr.io/sile-typesetter/fontproof:v2.2.1
image: docker://ghcr.io/sile-typesetter/fontproof:v2.2.2
entrypoint: sh
args:
- -c
Expand Down
52 changes: 52 additions & 0 deletions rockspecs/fontproof-2.2.2-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
rockspec_format = "1.0"
package = "fontproof"
version = "2.2.2-1"

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

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"
}

deploy = {
wrap_bin_scripts = true,
}

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 63ac006

Please sign in to comment.