optolith-database-schema 0.15.0 → 0.15.1
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.
- package/CHANGELOG.md +7 -0
- package/lib/types/UI.d.ts +9 -8
- package/package.json +1 -1
- package/schema/UI.schema.json +14 -10
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.15.1](https://github.com/elyukai/optolith-database-schema/compare/v0.15.0...v0.15.1) (2024-01-06)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* group abbreviated and full adventure points translations with and without preceding value ([b0e0bdd](https://github.com/elyukai/optolith-database-schema/commit/b0e0bddf32326bd3529f7ed15e7a416ba6da21ea))
|
|
11
|
+
|
|
5
12
|
## [0.15.0](https://github.com/elyukai/optolith-database-schema/compare/v0.14.0...v0.15.0) (2023-12-29)
|
|
6
13
|
|
|
7
14
|
|
package/lib/types/UI.d.ts
CHANGED
|
@@ -101,6 +101,15 @@ export type UI = {
|
|
|
101
101
|
"Show Settings": NonEmptyString;
|
|
102
102
|
"Toggle DevTools": NonEmptyString;
|
|
103
103
|
"Adventure Points": NonEmptyString;
|
|
104
|
+
"AP": NonEmptyString;
|
|
105
|
+
/**
|
|
106
|
+
* - `0`: AP value
|
|
107
|
+
*/
|
|
108
|
+
"{0} Adventure Points": PluralizationCategories;
|
|
109
|
+
/**
|
|
110
|
+
* - `0`: AP value
|
|
111
|
+
*/
|
|
112
|
+
"{0} AP": NonEmptyString;
|
|
104
113
|
/**
|
|
105
114
|
* - `0`: AP Total
|
|
106
115
|
*/
|
|
@@ -211,14 +220,6 @@ export type UI = {
|
|
|
211
220
|
"general.emptylistplaceholder": NonEmptyString;
|
|
212
221
|
"general.emptylistnoresultsplaceholder": NonEmptyString;
|
|
213
222
|
"No Results": NonEmptyString;
|
|
214
|
-
/**
|
|
215
|
-
* - `0`: AP value
|
|
216
|
-
*/
|
|
217
|
-
"{0} Adventure Points": PluralizationCategories;
|
|
218
|
-
/**
|
|
219
|
-
* - `0`: AP value
|
|
220
|
-
*/
|
|
221
|
-
"{0} AP": NonEmptyString;
|
|
222
223
|
/**
|
|
223
224
|
* - `0`: Name of element
|
|
224
225
|
* - `1`: AP value
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "optolith-database-schema",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.1",
|
|
4
4
|
"description": "Definitions and utilities for the flat-file database of Optolith, a character creation tool for the Pen and Paper RPG “The Dark Eye 5”, and its external integrations into other software.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"tde",
|
package/schema/UI.schema.json
CHANGED
|
@@ -277,6 +277,17 @@
|
|
|
277
277
|
"Adventure Points": {
|
|
278
278
|
"$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
|
|
279
279
|
},
|
|
280
|
+
"AP": {
|
|
281
|
+
"$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
|
|
282
|
+
},
|
|
283
|
+
"{0} Adventure Points": {
|
|
284
|
+
"description": "- `0`: AP value",
|
|
285
|
+
"$ref": "./_I18n.schema.json#/$defs/PluralizationCategories"
|
|
286
|
+
},
|
|
287
|
+
"{0} AP": {
|
|
288
|
+
"description": "- `0`: AP value",
|
|
289
|
+
"$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
|
|
290
|
+
},
|
|
280
291
|
"{0} Total AP": {
|
|
281
292
|
"description": "- `0`: AP Total",
|
|
282
293
|
"$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
|
|
@@ -413,14 +424,6 @@
|
|
|
413
424
|
"No Results": {
|
|
414
425
|
"$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
|
|
415
426
|
},
|
|
416
|
-
"{0} Adventure Points": {
|
|
417
|
-
"description": "- `0`: AP value",
|
|
418
|
-
"$ref": "./_I18n.schema.json#/$defs/PluralizationCategories"
|
|
419
|
-
},
|
|
420
|
-
"{0} AP": {
|
|
421
|
-
"description": "- `0`: AP value",
|
|
422
|
-
"$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
|
|
423
|
-
},
|
|
424
427
|
"general.withapvalue": {
|
|
425
428
|
"description": "- `0`: Name of element\n- `1`: AP value",
|
|
426
429
|
"$ref": "./_NonEmptyString.schema.json#/$defs/NonEmptyString"
|
|
@@ -2835,6 +2838,9 @@
|
|
|
2835
2838
|
"Show Settings",
|
|
2836
2839
|
"Toggle DevTools",
|
|
2837
2840
|
"Adventure Points",
|
|
2841
|
+
"AP",
|
|
2842
|
+
"{0} Adventure Points",
|
|
2843
|
+
"{0} AP",
|
|
2838
2844
|
"{0} Total AP",
|
|
2839
2845
|
"{0} AP Spent",
|
|
2840
2846
|
"{0}/{1} AP spent on advantages",
|
|
@@ -2873,8 +2879,6 @@
|
|
|
2873
2879
|
"general.emptylistplaceholder",
|
|
2874
2880
|
"general.emptylistnoresultsplaceholder",
|
|
2875
2881
|
"No Results",
|
|
2876
|
-
"{0} Adventure Points",
|
|
2877
|
-
"{0} AP",
|
|
2878
2882
|
"general.withapvalue",
|
|
2879
2883
|
"Search",
|
|
2880
2884
|
"Sort By",
|