Skip to content

Commit 158928b

Browse files
committed
chore: Release 2.2.2
1 parent 40cd83e commit 158928b

File tree

2 files changed

+49
-1
lines changed

2 files changed

+49
-1
lines changed

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ inputs:
77
default: -t test
88
runs:
99
using: docker
10-
image: docker://ghcr.io/sile-typesetter/fontproof:v2.2.1
10+
image: docker://ghcr.io/sile-typesetter/fontproof:v2.2.2
1111
entrypoint: sh
1212
args:
1313
- -c

rockspecs/fontproof-2.2.2-1.rockspec

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
rockspec_format = "1.0"
2+
package = "fontproof"
3+
version = "2.2.2-1"
4+
5+
source = {
6+
url = "git+https://github.com/sile-typesetter/fontproof.git",
7+
dir = "fontproof",
8+
tag = "v2.2.2"
9+
}
10+
11+
description = {
12+
summary = "A font design testing class for SILE",
13+
detailed = [[FontProof enables you to produce PDF font test documents without
14+
fiddling with InDesign or other manual page layout or word
15+
processing programs. You can apply one of the predesigned test
16+
documents (to be added later) or use FontProof to build your own
17+
custom font test document.]],
18+
license = "MIT",
19+
homepage = "https://github.com/sile-typesetter/fontproof",
20+
}
21+
22+
dependencies = {
23+
"lua >= 5.1",
24+
"lua_cliargs == 3.0-2"
25+
}
26+
27+
build = {
28+
type = "builtin",
29+
modules = {
30+
["sile.classes.fontproof"] = "classes/fontproof/init.lua",
31+
["sile.packages.fontproof"] = "packages/fontproof/init.lua",
32+
["sile.packages.fontproof.groups"] = "packages/fontproof/groups.lua",
33+
["sile.packages.fontproof.gutenberg"] = "packages/fontproof/gutenberg.lua",
34+
["sile.packages.fontproof.texts"] = "packages/fontproof/texts.lua",
35+
["sile.packages.fontproof.templates.locator"] = "templates/locator.lua"
36+
},
37+
install = {
38+
lua = {
39+
["sile.packages.fontproof.templates.full"] = "templates/full.sil",
40+
["sile.packages.fontproof.templates.gutenberg"] = "templates/gutenberg.sil",
41+
["sile.packages.fontproof.templates.test"] = "templates/test.sil",
42+
["sile.packages.fontproof.templates.unichar"] = "templates/unichar.sil"
43+
},
44+
bin = {
45+
fontproof = "src/fontproof.lua"
46+
}
47+
}
48+
}

0 commit comments

Comments
 (0)