trmnl_preview 0.8.5 → 0.8.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/db/data/form_fields.yml +17 -7
- data/lib/trmnlp/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d9263986533b5d9aa8b6783bfa9a03e6fa3ac956ec2f54b4058737142c25df9a
|
|
4
|
+
data.tar.gz: d177e098958fba6ed1160b310034c9c64f32876f2f45c0b5d0bcb86c9d7fc3ec
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 042e4f7d5e20ff661d4231f761d97d8fc260daf21c4c7927592e9056e2ddd6cb8c6ea92c28eba47125fe37ae9b9ca42a9920d8ebede846fbe4b756d96589ad1d
|
|
7
|
+
data.tar.gz: c512a8cdb2256b4a1bd0c795cd4f1c2755e172974ca500cadac05331ad6cb791d2f51c4efddd86853f470760d0c1778deb7ee095a6c52a65c78651c3d5fc1a54
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
|
|
2
2
|
# Changelog
|
|
3
3
|
|
|
4
|
+
## 0.8.6
|
|
5
|
+
|
|
6
|
+
- Fix missing form fields `db/data/form_fields.yml`.
|
|
7
|
+
|
|
4
8
|
## 0.8.5
|
|
5
9
|
|
|
6
10
|
- Fixed `pluralize`, `number_with_delimiter`, and `number_to_currency` Liquid filters raising `Liquid error: internal`. `trmnl-liquid` 0.7 moved `RailsHelpers` behind an opt-in `load(:rails)`, but the filters still probed `RailsHelpers.respond_to?` against the now-undefined constant. Stubbing an empty module makes the probe return false so the bundled fallback implementations run. (#105)
|
data/db/data/form_fields.yml
CHANGED
|
@@ -12,13 +12,23 @@ required_keys:
|
|
|
12
12
|
- field_type
|
|
13
13
|
- name
|
|
14
14
|
field_types:
|
|
15
|
-
-
|
|
16
|
-
-
|
|
15
|
+
- author_bio
|
|
16
|
+
- boolean
|
|
17
|
+
- code
|
|
18
|
+
- copyable
|
|
19
|
+
- copyable_webhook_url
|
|
20
|
+
- date
|
|
21
|
+
- multi_string
|
|
17
22
|
- number
|
|
18
23
|
- password
|
|
19
|
-
-
|
|
20
|
-
- xhrString
|
|
21
|
-
- xhrSelect
|
|
22
|
-
- xhrFunction
|
|
24
|
+
- plugin_instance_select
|
|
23
25
|
- select
|
|
24
|
-
-
|
|
26
|
+
- string
|
|
27
|
+
- text
|
|
28
|
+
- time
|
|
29
|
+
- time_zone
|
|
30
|
+
- url
|
|
31
|
+
- xhrFunction
|
|
32
|
+
- xhrSelect
|
|
33
|
+
- xhrSelectSearch
|
|
34
|
+
- xhrString
|
data/lib/trmnlp/version.rb
CHANGED