Skip to content

Commit ccfe709

Browse files
Releasing focheck 0.7.13.
1 parent decbaab commit ccfe709

17 files changed

+2307
-1319
lines changed

ChangeLog.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# focheck 0.7.13
2+
3+
- `axs.rnc` updated to match ahfsettings 7.2.8.
4+
- `width` as 'shorthand' for `min-width` and `max-width`.
5+
- `height` as 'shorthand' for `min-height` and `max-height`.
6+
- Added missing 'axf:field-readonly'. (#45)
7+
- Made Japanese more readable. (#44, @hidaruma)
8+
- Unique ID for Japanese add-on file so both can be active (though only one will take effect at any one time).
9+
- Remove `-o` from 'AHFormatter' alternative of `fo-format`.
10+
111
# focheck 0.7.12
212

313
- Updated to 'axs' schema module to 'ahfsettings 7.2.4' schema.

add-on-ja.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://www.oxygenxml.com/ns/extension http://www.oxygenxml.com/ns/extension/extensions.xsd">
55
<xt:extension id="focheck-ja">
6-
<xt:location href="https://github.com/AntennaHouse/focheck/releases/download/v0.7.12/focheck-framework-ja-0.7.12.zip"/>
7-
<xt:version>0.7.12</xt:version>
6+
<xt:location href="https://github.com/AntennaHouse/focheck/releases/download/v0.7.13/focheck-framework-ja-0.7.13.zip"/>
7+
<xt:version>0.7.13</xt:version>
88
<xt:oxy_version>14.0+</xt:oxy_version>
99
<xt:type>framework</xt:type>
1010
<xt:author>Antenna House, Inc.</xt:author>

add-on.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://www.oxygenxml.com/ns/extension http://www.oxygenxml.com/ns/extension/extensions.xsd">
55
<xt:extension id="focheck">
6-
<xt:location href="https://github.com/AntennaHouse/focheck/releases/download/v0.7.12/focheck-framework-0.7.12.zip"/>
7-
<xt:version>0.7.12</xt:version>
6+
<xt:location href="https://github.com/AntennaHouse/focheck/releases/download/v0.7.13/focheck-framework-0.7.13.zip"/>
7+
<xt:version>0.7.13</xt:version>
88
<xt:oxy_version>14.0+</xt:oxy_version>
99
<xt:type>framework</xt:type>
1010
<xt:author>Antenna House, Inc.</xt:author>

build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Version of current code base. Included in generated files.
22
# See instructions in 'build.xml'.
3-
version=0.7.12
3+
version=0.7.13
44

55
# Location of .jar for Saxon XSLT 2.0 (or later) processor
66
saxon.jar.windows=C:/saxon/saxon9he.jar

schema-ja/rng/axf.rng

+22
Original file line numberDiff line numberDiff line change
@@ -584,6 +584,7 @@
584584
<ref name="axf_field-multiple"/>
585585
<ref name="axf_field-name"/>
586586
<ref name="axf_field-name-suffix-page-number"/>
587+
<ref name="axf_field-readonly"/>
587588
<ref name="axf_field-scroll"/>
588589
<ref name="axf_field-text-align"/>
589590
<ref name="axf_field-top-index"/>
@@ -2750,6 +2751,27 @@
27502751
</attribute>
27512752
</optional>
27522753
</define>
2754+
<!--
2755+
@axf:field-readonly
2756+
@field-readonly
2757+
2758+
https://www.antenna.co.jp/AHF/help/ja/ahf-ext.html#axf.field-readonly
2759+
-->
2760+
<define name="axf_field-readonly">
2761+
<optional>
2762+
<attribute>
2763+
<a:documentation>Whether the field is read-only: true | false</a:documentation>
2764+
<choice>
2765+
<name>axf:field-readonly</name>
2766+
<name>field-readonly</name>
2767+
</choice>
2768+
<choice>
2769+
<value>true</value>
2770+
<value>false</value>
2771+
</choice>
2772+
</attribute>
2773+
</optional>
2774+
</define>
27532775
<!--
27542776
@axf:field-scroll
27552777
@field-scroll

0 commit comments

Comments
 (0)