unicon 3.8.0 → 3.9.0
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 +7 -0
- data/README.md +1 -1
- data/lib/unicon/icons/aliases.rb +1 -1
- data/lib/unicon/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: 75620efb09072b4c0f9ed679573ffa43b53419e42a05d43654b04942f81bd579
|
|
4
|
+
data.tar.gz: 737820574c430e7736305b1582a20fff731e4904714e29a20bca49017e7a704b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cf680817659919e785a65980bdf7cb0c3fa1e273f3c95df2efa90ed426e3fbe3d9aced7b5cd599ca25f6ccf9c8cc357c062a03dd2c52669d5f614ddadd77276c
|
|
7
|
+
data.tar.gz: 516d2b984d4a70a7f88ede5b78d574732295604416c08972c205fd4b3f0d34421c75471396290b057a49ca58983fa716687e9e0f46f72e68c30ebfe58148bc9a
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ what decides both whether a reader can take it and what the next version number
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [3.9.0] - 2026-09-18
|
|
9
|
+
|
|
10
|
+
- **Feature.** `:visit` is a call somebody pays at an appointed time, drawn as the `:clock`
|
|
11
|
+
already is — Bootstrap's `clock`, SF Symbols' `clock`, Material's `schedule`. An alias
|
|
12
|
+
rather than a concept: what a visit is known by is when it is, and the calendar faces are
|
|
13
|
+
spoken for by a booking and an appointment. 321 names now resolve, 142 of them aliases.
|
|
14
|
+
|
|
8
15
|
## [3.8.0] - 2026-09-18
|
|
9
16
|
|
|
10
17
|
- **Feature.** `:technician` is the person a trade sends out to do the work, drawn as the
|
data/README.md
CHANGED
|
@@ -152,7 +152,7 @@ drawn out. `Unicon.actions` names them all.
|
|
|
152
152
|
| `:checklist` | `:pick` |  |  |  |
|
|
153
153
|
| `:circle` | |  |  |  |
|
|
154
154
|
| `:clipboard` | `:assessment` `:survey` |  |  |  |
|
|
155
|
-
| `:clock` | `:history` `:session` `:shift` |  |  |  |
|
|
155
|
+
| `:clock` | `:history` `:session` `:shift` `:visit` |  |  |  |
|
|
156
156
|
| `:close_circle` | |  |  |  |
|
|
157
157
|
| `:cloud` | `:backup` |  |  |  |
|
|
158
158
|
| `:compass` | |  |  |  |
|
data/lib/unicon/icons/aliases.rb
CHANGED
|
@@ -34,7 +34,7 @@ module Unicon
|
|
|
34
34
|
summary: :document, supplier: :truck, survey: :clipboard, sync: :refresh,
|
|
35
35
|
team: :people, technician: :toolbox, territory: :map, todo: :task, token: :key,
|
|
36
36
|
track: :music, transaction: :credit_card, trip: :map, user: :person,
|
|
37
|
-
vehicle: :car, vendor: :shop, vertical: :bar_chart, view: :eye,
|
|
37
|
+
vehicle: :car, vendor: :shop, vertical: :bar_chart, view: :eye, visit: :clock,
|
|
38
38
|
zip: :pin,
|
|
39
39
|
}.freeze
|
|
40
40
|
end
|
data/lib/unicon/version.rb
CHANGED