unicon 0.1.1 → 1.0.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 +8 -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: 4a9ffba80efd2f5bb76b9b46e280d009f1fd4e4ff33aa6a95ef6c09de5637e2c
|
|
4
|
+
data.tar.gz: e555d386547d296794e575a4fab0bb4f21741a1f70d63c16cb197754606ae3f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9b5bd3b6d7c99768292cd29774e57b8d668b02a74046bb9f3f78f0d5e2d6f4e444fbd88fa8b46e3f8155e4e83b1a473f27e98d699478992830ee8efe603ea70b
|
|
7
|
+
data.tar.gz: 14ec217b79d5fb9d40000230538f6e8711bcb7150d1293307f784f43f553659331fe6e0d2d20ba3cc63966df459039e6846b2a58b8ca61509a75bff54f90627c
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
Every entry says whether it is a fix, a feature or a breaking change, since that is
|
|
4
4
|
what decides both whether a reader can take it and what the next version number is.
|
|
5
5
|
|
|
6
|
+
## [1.0.0] - 2026-08-14
|
|
7
|
+
|
|
8
|
+
- **Feature.** `:author` resolves to `:account`, beside `:avatar` and `:profile`: the
|
|
9
|
+
person behind a byline is drawn as a person. 304 names now resolve, 135 of them
|
|
10
|
+
aliases.
|
|
11
|
+
- The API — `fetch`, `[]`, `icons`, `names`, `actions` — is unchanged and now stable,
|
|
12
|
+
which is what the major version says.
|
|
13
|
+
|
|
6
14
|
## [0.1.1] - 2026-08-09
|
|
7
15
|
|
|
8
16
|
- **Fix.** `:franchise` resolves to `:building` rather than `:shop`, and `:market` to
|
data/README.md
CHANGED
|
@@ -108,7 +108,7 @@ drawn out. `Unicon.actions` names them all.
|
|
|
108
108
|
<!-- concepts:start -->
|
|
109
109
|
| Icon | Aliases | Bootstrap | iOS | Android |
|
|
110
110
|
| --- | --- | --- | --- | --- |
|
|
111
|
-
| `:account` | `:avatar` `:profile` |  |  |  |
|
|
111
|
+
| `:account` | `:author` `:avatar` `:profile` |  |  |  |
|
|
112
112
|
| `:airplane` | |  |  |  |
|
|
113
113
|
| `:alarm` | `:deadline` |  |  |  |
|
|
114
114
|
| `:archive` | |  |  |  |
|
data/lib/unicon/icons/aliases.rb
CHANGED
|
@@ -4,7 +4,7 @@ module Unicon
|
|
|
4
4
|
address: :pin, agent: :badge, alert: :warning, announcement: :megaphone,
|
|
5
5
|
answer: :question, api: :terminal, app: :window, appointment: :calendar_check,
|
|
6
6
|
area: :map, assessment: :clipboard, attachment: :paperclip, audio: :waveform,
|
|
7
|
-
avatar: :account, backup: :cloud, banner: :image, bill: :invoice,
|
|
7
|
+
author: :account, avatar: :account, backup: :cloud, banner: :image, bill: :invoice,
|
|
8
8
|
booking: :calendar_check, brand: :building, business: :building, call: :phone,
|
|
9
9
|
campaign: :megaphone, category: :tag, charge: :credit_card, city: :building,
|
|
10
10
|
client: :person, comment: :chat, company: :building, configuration: :gear,
|
data/lib/unicon/version.rb
CHANGED