unicon 3.7.0 → 3.8.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 +9 -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: 1cca250191ec2f3b4eb47c036f99d0552fb6d001ab5dd91b68a742b99ecbcab2
|
|
4
|
+
data.tar.gz: 52a71c9fa3542aea3f882dab9fffe77c8477dcb08cad79c2f049bfad425b08ec
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf3e89db8c2b5d90a613f89d6dea606afcd4d0160fe51a47b596c87502b0226010ee7de5639c55dc064b259803e246aef7f2f2c3c275ba2f80388331a92a8175
|
|
7
|
+
data.tar.gz: 12676c797cdd1bb25f4b364cd38e4694117651eb4e5418debedcba5b569bf723bacc96e2b0315b81ff163bff85503c95316a794f966d0b651220dabddb547fe2
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,15 @@ what decides both whether a reader can take it and what the next version number
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [3.8.0] - 2026-09-18
|
|
9
|
+
|
|
10
|
+
- **Feature.** `:technician` is the person a trade sends out to do the work, drawn as the
|
|
11
|
+
`:toolbox` already is — Bootstrap's `tools`, SF Symbols' `wrench.and.screwdriver`, Material's
|
|
12
|
+
`handyman`. An alias rather than a concept of its own, since a technician is known by what
|
|
13
|
+
they carry: `:person` and `:badge` are already spoken for by a customer and an agent, and a
|
|
14
|
+
briefcase belongs to the business that employs them rather than to whoever turns up. 320
|
|
15
|
+
names now resolve, 141 of them aliases.
|
|
16
|
+
|
|
8
17
|
## [3.7.0] - 2026-09-17
|
|
9
18
|
|
|
10
19
|
- **Feature.** `:sort_asc` and `:sort_desc` are the order a column is sorted in, beside the
|
data/README.md
CHANGED
|
@@ -235,7 +235,7 @@ drawn out. `Unicon.actions` names them all.
|
|
|
235
235
|
| `:thumbs_down` | |  |  |  |
|
|
236
236
|
| `:thumbs_up` | |  |  |  |
|
|
237
237
|
| `:ticket` | |  |  |  |
|
|
238
|
-
| `:toolbox` |
|
|
238
|
+
| `:toolbox` | `:technician` |  |  |  |
|
|
239
239
|
| `:train` | |  |  |  |
|
|
240
240
|
| `:tree` | |  |  |  |
|
|
241
241
|
| `:trending_up` | |  |  |  |
|
data/lib/unicon/icons/aliases.rb
CHANGED
|
@@ -32,7 +32,7 @@ module Unicon
|
|
|
32
32
|
shift: :clock, shipment: :truck, site: :globe, source: :signpost,
|
|
33
33
|
specialty: :award, staff: :people, state: :map, subscription: :repeat,
|
|
34
34
|
summary: :document, supplier: :truck, survey: :clipboard, sync: :refresh,
|
|
35
|
-
team: :people, territory: :map, todo: :task, token: :key,
|
|
35
|
+
team: :people, technician: :toolbox, territory: :map, todo: :task, token: :key,
|
|
36
36
|
track: :music, transaction: :credit_card, trip: :map, user: :person,
|
|
37
37
|
vehicle: :car, vendor: :shop, vertical: :bar_chart, view: :eye,
|
|
38
38
|
zip: :pin,
|
data/lib/unicon/version.rb
CHANGED