glaemscribe 1.0.7 → 1.0.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -25,11 +25,12 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
25
25
  \** Changelog **\
26
26
  \** 0.0.2 : added χ for the word χarina, correcting ts/ps sequences to work better with eldamar **\
27
27
  \** 0.0.3 : added o/u curl option **\
28
+ \** 0.0.4 : added voiced plosived corner cases treatment and option to chose method **\
28
29
 
29
30
  \language "Quenya"
30
31
  \writing "Tengwar"
31
32
  \mode "Classical"
32
- \version "0.0.3"
33
+ \version "0.0.4"
33
34
  \authors "Talagan (Benjamin Babut)"
34
35
 
35
36
  \charset tengwar_ds true
@@ -41,6 +42,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
41
42
  \value O_UP_U_DOWN 1
42
43
  \value U_UP_O_DOWN 2
43
44
  \end
45
+ \beg option voiced_plosives_treatment VOICED_PLOSIVES_WITH_STROKE
46
+ \value VOICED_PLOSIVES_WITH_STROKE 1
47
+ \value VOICED_PLOSIVES_WITH_XTD 2
48
+ \end
44
49
  \option reverse_numbers true
45
50
  \beg option numbers_base BASE_12
46
51
  \value BASE_10 10
@@ -78,7 +83,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
78
83
  \beg rules litteral
79
84
 
80
85
  {K} === (c,k)
81
- {MB} === (b,mb)
82
86
  {SS} === (z,ss)
83
87
 
84
88
  {VOWELS} === a * e * i * o * u
@@ -142,10 +146,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
142
146
  \** ===================== **\
143
147
  \** 1ST LINE RULES **\
144
148
  \** ===================== **\
145
- {L1_KER_1} === t * p
146
- {L1_IMG_1} === TINCO * PARMA
149
+ {L1_KER_1} === t * p
150
+ {L1_IMG_1} === TINCO * PARMA
147
151
  {L1_KER_2} === {K} * q
148
- {L1_IMG_2} === CALMA * QUESSE
152
+ {L1_IMG_2} === CALMA * QUESSE
149
153
  {L1_KER_1_GEMS} === tt * pp
150
154
  {L1_IMG_1_GEMS} === TINCO DASH_INF_S * PARMA DASH_INF_S
151
155
 
@@ -168,13 +172,23 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
168
172
  \** ===================== **\
169
173
  \** 2ND LINE RULES **\
170
174
  \** ===================== **\
171
- {L2_KER} === nd * {MB} * ng * ngw
172
- {L2_IMG} === ANDO * UMBAR * ANGA * UNGWE
173
-
175
+ {L2_KER} === nd * mb * ng * ngw
176
+ {L2_IMG} === ANDO * UMBAR * ANGA * UNGWE
177
+
174
178
  \** STANDARD **\
175
179
  [{L2_KER}]{V_D_KER_WN} --> [{L2_IMG}]{V_D_IMG_XL_WN}
176
- \** OTHERS **\
180
+
181
+ \** Palatalized **\
177
182
  ndy{V_D_KER_WN} --> ANDO THINF_DDOT_XL {V_D_IMG_XL_WN}
183
+
184
+ \** Have some rules for d,b,g,gw although there are not theoritically possible, alduudenie e.g needs it **\
185
+ {L2_KER_UN} === d * b * g * gw
186
+ \if "voiced_plosives_treatment == VOICED_PLOSIVES_WITH_STROKE"
187
+ [{L2_KER_UN}]{V_D_KER_WN} --> [{L2_IMG}] THINF_STROKE_XL {V_D_IMG_XL_WN}
188
+ \else
189
+ {L2_IMG_UN} === TW_EXT_21 * TW_EXT_22 * TW_EXT_23 * TW_EXT_24
190
+ [{L2_KER_UN}]{V_D_KER_WN} --> [{L2_IMG_UN}] {V_D_IMG_XL_WN}
191
+ \endif
178
192
 
179
193
  \** ===================== **\
180
194
  \** 3RD LINE RULES **\
@@ -22,12 +22,20 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
22
22
 
23
23
  **\
24
24
 
25
- \** Sindarin Beleriand mode 0.5 for jrrtranscribe (MAY BE INCOMPLETE) **\
25
+ \** Sindarin Beleriand mode for glaemscribe (MAY BE INCOMPLETE) **\
26
+
27
+ \** Changelog **\
28
+ \**
29
+
30
+ 0.0.2 : Added lw
31
+
32
+ **\
33
+
26
34
 
27
35
  \language "Sindarin"
28
36
  \writing "Tengwar"
29
37
  \mode "Beleriand"
30
- \version "0.0.1"
38
+ \version "0.0.2"
31
39
  \authors "Talagan (Benjamin Babut)"
32
40
 
33
41
  \charset tengwar_ds true
@@ -213,10 +221,13 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
213
221
  h --> HYARMEN
214
222
 
215
223
  hw --> HWESTA_SINDARINWA
216
- gw --> ANGA THSUP_SEV_XL
224
+
217
225
  dw --> ANDO THSUP_SEV_XL
226
+ gw --> ANGA THSUP_SEV_XL
227
+ lw --> LAMBE THSUP_SEV_L
218
228
  nw --> ORE THSUP_SEV_L
219
229
  rw --> ROMEN THSUP_SEV_L
230
+
220
231
  \end
221
232
 
222
233
  \beg rules punctuation
@@ -30,6 +30,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
30
30
  0.0.2 : Fixed some tehtar versions which did not look quite nice for ch, dh, v, mb
31
31
  Reworked the problem of labialized consonnants (+w), adding an option for treating the u-curl + tehta combination.
32
32
  0.0.3 : Extended the labialized consonnants option.
33
+ 0.0.4 : Fixed nw (BUG : was using ORE from the beleriand mode), added lw
33
34
 
34
35
  **\
35
36
 
@@ -37,7 +38,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
37
38
  \language "Sindarin"
38
39
  \writing "Tengwar"
39
40
  \mode "Classical"
40
- \version "0.0.3"
41
+ \version "0.0.4"
41
42
  \authors "Talagan (Benjamin Babut)"
42
43
 
43
44
  \charset tengwar_ds true
@@ -238,16 +239,18 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
238
239
  **\
239
240
 
240
241
  \if "labialized_consonants_u_curl == LABIALIZED_U_CURL_NO_TEHTAR || labialized_consonants_u_curl == LABIALIZED_U_CURL_ALWAYS"
241
- gw --> UNGWE THSUP_SEV_XL
242
242
  dw --> ANDO THSUP_SEV_XS
243
- nw --> ORE THSUP_SEV_L
243
+ gw --> UNGWE THSUP_SEV_XL
244
+ lw --> LAMBE THSUP_SEV_L
245
+ nw --> NUMEN THSUP_SEV_L
244
246
  rw --> ROMEN THSUP_SEV_L
245
247
  \endif
246
248
 
247
249
  \if "labialized_consonants_u_curl == LABIALIZED_U_CURL_ALWAYS"
248
- {V_D_KER}gw --> UNGWE THSUP_SEV_XS {V_D_IMG_XL}
249
250
  {V_D_KER}dw --> ANDO THSUP_SEV_XS {V_D_IMG_XL}
250
- {V_D_KER}nw --> ORE THSUP_SEV_XS {V_D_IMG_XL}
251
+ {V_D_KER}gw --> UNGWE THSUP_SEV_XS {V_D_IMG_XL}
252
+ {V_D_KER}lw --> LAMBE THSUP_SEV_XS {V_D_IMG_XL}
253
+ {V_D_KER}nw --> NUMEN THSUP_SEV_XS {V_D_IMG_XL}
251
254
  {V_D_KER}rw --> ROMEN THSUP_SEV_XS {V_D_IMG_XL}
252
255
  \endif
253
256
  \end
metadata CHANGED
@@ -1,18 +1,20 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: glaemscribe
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.7
4
+ version: 1.0.8
5
+ prerelease:
5
6
  platform: ruby
6
7
  authors:
7
8
  - Benjamin 'Talagan' Babut
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2016-03-31 00:00:00.000000000 Z
12
+ date: 2016-04-02 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: commander
15
16
  requirement: !ruby/object:Gem::Requirement
17
+ none: false
16
18
  requirements:
17
19
  - - ~>
18
20
  - !ruby/object:Gem::Version
@@ -20,6 +22,7 @@ dependencies:
20
22
  type: :runtime
21
23
  prerelease: false
22
24
  version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
23
26
  requirements:
24
27
  - - ~>
25
28
  - !ruby/object:Gem::Version
@@ -34,29 +37,6 @@ executables:
34
37
  extensions: []
35
38
  extra_rdoc_files: []
36
39
  files:
37
- - LICENSE.txt
38
- - bin/glaemscribe
39
- - glaemresources/charsets/cirth_ds.cst
40
- - glaemresources/charsets/sarati_eldamar.cst
41
- - glaemresources/charsets/tengwar_ds.cst
42
- - glaemresources/charsets/unicode_gothic.cst
43
- - glaemresources/charsets/unicode_runes.cst
44
- - glaemresources/modes/adunaic.glaem
45
- - glaemresources/modes/blackspeech-annatar.glaem
46
- - glaemresources/modes/blackspeech.glaem
47
- - glaemresources/modes/gothic.glaem
48
- - glaemresources/modes/khuzdul.glaem
49
- - glaemresources/modes/mercian.glaem
50
- - glaemresources/modes/oldnorse-medieval.glaem
51
- - glaemresources/modes/quenya-sarati.glaem
52
- - glaemresources/modes/quenya.glaem
53
- - glaemresources/modes/sindarin-beleriand.glaem
54
- - glaemresources/modes/sindarin-classical.glaem
55
- - glaemresources/modes/sindarin-daeron.glaem
56
- - glaemresources/modes/telerin.glaem
57
- - glaemresources/modes/valarin-sarati.glaem
58
- - glaemresources/modes/westron.glaem
59
- - glaemresources/modes/westsaxon.glaem
60
40
  - lib/api/charset.rb
61
41
  - lib/api/charset_parser.rb
62
42
  - lib/api/constants.rb
@@ -85,28 +65,52 @@ files:
85
65
  - lib/api/transcription_processor.rb
86
66
  - lib/api/transcription_tree_node.rb
87
67
  - lib/glaemscribe.rb
68
+ - glaemresources/charsets/cirth_ds.cst
69
+ - glaemresources/charsets/sarati_eldamar.cst
70
+ - glaemresources/charsets/tengwar_ds.cst
71
+ - glaemresources/charsets/unicode_gothic.cst
72
+ - glaemresources/charsets/unicode_runes.cst
73
+ - glaemresources/modes/adunaic.glaem
74
+ - glaemresources/modes/blackspeech-annatar.glaem
75
+ - glaemresources/modes/blackspeech.glaem
76
+ - glaemresources/modes/gothic.glaem
77
+ - glaemresources/modes/khuzdul.glaem
78
+ - glaemresources/modes/mercian.glaem
79
+ - glaemresources/modes/oldnorse-medieval.glaem
80
+ - glaemresources/modes/quenya-sarati.glaem
81
+ - glaemresources/modes/quenya.glaem
82
+ - glaemresources/modes/sindarin-beleriand.glaem
83
+ - glaemresources/modes/sindarin-classical.glaem
84
+ - glaemresources/modes/sindarin-daeron.glaem
85
+ - glaemresources/modes/telerin.glaem
86
+ - glaemresources/modes/valarin-sarati.glaem
87
+ - glaemresources/modes/westron.glaem
88
+ - glaemresources/modes/westsaxon.glaem
89
+ - LICENSE.txt
90
+ - bin/glaemscribe
88
91
  homepage: http://jrrvf.com/~glaemscrafu/english/glaemscribe.html
89
92
  licenses:
90
93
  - AGPLv3
91
- metadata: {}
92
94
  post_install_message:
93
95
  rdoc_options: []
94
96
  require_paths:
95
97
  - lib
96
98
  required_ruby_version: !ruby/object:Gem::Requirement
99
+ none: false
97
100
  requirements:
98
- - - '>='
101
+ - - ! '>='
99
102
  - !ruby/object:Gem::Version
100
103
  version: '0'
101
104
  required_rubygems_version: !ruby/object:Gem::Requirement
105
+ none: false
102
106
  requirements:
103
- - - '>='
107
+ - - ! '>='
104
108
  - !ruby/object:Gem::Version
105
109
  version: '0'
106
110
  requirements: []
107
111
  rubyforge_project:
108
- rubygems_version: 2.4.8
112
+ rubygems_version: 1.8.24
109
113
  signing_key:
110
- specification_version: 4
114
+ specification_version: 3
111
115
  summary: Glǽmscribe
112
116
  test_files: []
checksums.yaml DELETED
@@ -1,7 +0,0 @@
1
- ---
2
- SHA1:
3
- metadata.gz: e1493c2453d45a4ce4ee64b1887cb96491329da0
4
- data.tar.gz: 3dae5178cb8cb2b965a193ca35f050459ef91bbb
5
- SHA512:
6
- metadata.gz: 688686f24acfb7c9b7eb5b5e82a24bb667a128b0d19c855ea94afa90aa39a6757f3a304a6fb32d6128c47eec915aed0617a9970830bf29f52d14a0dd76115e4c
7
- data.tar.gz: df50957d826d5d3612d381805c202c1160385680fdc9ac7e3e8ba5216fec80ac11eca3267fc69f7834cf8b449c6fe05df300a256ef85206ad402facee4589b06