glaemscribe 1.1.5 → 1.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 17fb0a1671fd1b025d7f85368bb92118b31527ae
4
- data.tar.gz: ba869f5cb567447edd4330b6c6bafaf8863cbff9
3
+ metadata.gz: 8178806c5b176be33631414292bdc6d6e891b151
4
+ data.tar.gz: 368e7cb7ac04d618b75fcf0067a32b592300df6b
5
5
  SHA512:
6
- metadata.gz: ce21043a3bccbe2b25d5707bfc0541b0772c398ff0e39dd5dcd4e0b4172dd8d17d4ebaa5036a2086e7b127263584072d5edb11dfd9a6e1782f787f556d7691d9
7
- data.tar.gz: 403b5b2cef40dc74e50d3d9f12ce061b1944a1ee181e24fa23cc44cc64eafd28e718eb934803f6564ee7827ea5705efbc238a94a91ca1e1e83fc9224ca2b9994
6
+ metadata.gz: e1ca714089ef8958ed0f3e5cc212881dd6d5c46f3b7f382d8706f2084054d51cde9c0575e4ade174a0295e39f0026c0cdf84d4c7f65e6b6d6a0a715c0420fae3
7
+ data.tar.gz: 395769330a56a0f80054a338ff0edd37a94495c104b808c7c862c42673ee8cb8a1679109afe3b46f2c4309574b6f1d570d7eb88763f03ea9afe4c1512c3b5b43
@@ -68,6 +68,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
68
68
  \substitute "qu" "q"
69
69
 
70
70
  \** Dis-ambiguate old qenya diphthongs **\
71
+ \** AT: The Quenya diphthongs are iu, eu, au, ai, oi, ui.
72
+ In the Quenya Usage, u is treated as w, and i is treated as y,
73
+ when they are the second element in diphthongs.
74
+ Other than that, the standard conventions of each document apply. **\
71
75
  \substitute "iu" "iw"
72
76
  \substitute "eu" "ew"
73
77
  \substitute "au" "aw"
@@ -31,12 +31,13 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
31
31
  \entry "0.0.6" "Added support for the FreeMonoTengwar font"
32
32
  \entry "0.1.0" "Added support for the Tengwar Elfica font"
33
33
  \entry "0.1.1" "Added support for inlined raw tengwar"
34
+ \entry "0.1.2" "Fine tuning handling of the aw diphthong"
34
35
  \end
35
36
 
36
37
  \language "Sindarin"
37
38
  \writing "Tengwar"
38
39
  \mode "Beleriand"
39
- \version "0.1.1"
40
+ \version "0.1.2"
40
41
  \authors "J.R.R. Tolkien, impl. Talagan (Benjamin Babut)"
41
42
 
42
43
  \raw_mode "raw-tengwar"
@@ -50,16 +51,24 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
50
51
 
51
52
  \beg options
52
53
 
54
+ \beg option beleriand_aw_diphthong AW_VILYA_AT_ENDINGS_CURL_ELSE
55
+ \value AW_VILYA_AT_ENDINGS_CURL_ELSE 0
56
+ \value AW_ALWAYS_VILYA 1
57
+ \value AW_ALWAYS_CURL 2
58
+ \end
59
+
53
60
  \beg option consonant_modification_style CONSONANT_MODIFICATION_STYLE_BAR
54
61
  \value CONSONANT_MODIFICATION_STYLE_WAVE 0
55
62
  \value CONSONANT_MODIFICATION_STYLE_BAR 1
56
63
  \end
57
64
 
58
65
  \option reverse_numbers true
66
+
59
67
  \beg option numbers_base BASE_12
60
68
  \value BASE_10 10
61
69
  \value BASE_12 12
62
70
  \end
71
+
63
72
  \end
64
73
 
65
74
  \beg preprocessor
@@ -88,6 +97,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
88
97
  \** Special case of starting 'i' before vowels, replace i by j **\
89
98
  \rxsubstitute "\\bi([aeouyáāâéēêíīîóōôúūûýȳŷ])" "j\\1"
90
99
 
100
+ \** Special case of diphtong aw. Before vowels, do not treat 'aw' as diphthong,
101
+ since it seems more logical that aw would behave as a semi vowel **\
102
+ \rxsubstitute "aw([aeouyáāâéēêíīîóōôúūûýȳŷ])" "a|w\\1"
103
+
91
104
  \** Preprocess numbers **\
92
105
  \elvish_numbers "\\eval numbers_base" "\\eval reverse_numbers"
93
106
  \end
@@ -146,7 +159,16 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
146
159
  {AE} --> OSSE YANTA \** Should chose between OSSE YANTA and OSSE THSUP_TICK_INV_L. Old tengscribe had second one, amanye tenceli has first one. **\
147
160
  {AI} --> OSSE Y_TEHTA
148
161
  {AU} --> OSSE SEV_TEHTA
149
- {AW} --> OSSE SEV_TEHTA
162
+
163
+ \if "beleriand_aw_diphthong == AW_VILYA_AT_ENDINGS_CURL_ELSE"
164
+ {AW} --> OSSE SEV_TEHTA
165
+ {AW}_ --> OSSE VILYA
166
+ \elsif "beleriand_aw_diphthong == AW_ALWAYS_VILYA"
167
+ {AW} --> OSSE VILYA
168
+ \elsif "beleriand_aw_diphthong == AW_ALWAYS_CURL"
169
+ {AW} --> OSSE SEV_TEHTA
170
+ \endif
171
+
150
172
  {EI} --> YANTA Y_TEHTA
151
173
  {UI} --> URE Y_TEHTA
152
174
  {OE} --> ANNA YANTA
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: glaemscribe
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.5
4
+ version: 1.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Benjamin 'Talagan' Babut
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-06-14 00:00:00.000000000 Z
11
+ date: 2017-07-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: commander