unicon 0.1.1 → 1.0.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -0
- data/README.md +2 -2
- data/lib/unicon/icons/aliases.rb +2 -2
- 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: 61f3430f2c4b8788ed5b38940fabed93c956d0c342cdcd5e81fa10884d621d0e
|
|
4
|
+
data.tar.gz: 43b0bebb2a39b6907c7c40a5ac943c8cc8d9a5b01049828ec920f12e12e34c4d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ad979552c848c480ae0689b8444b4e162e0b563c1042c8539697f3a1fdf5a13bc3e2f5c9735104dfa8038bb8cc135e24e1e1b1db414102c8434a8b18d13f31ac
|
|
7
|
+
data.tar.gz: ad9432a27cdab1a8ed18e96650b223fe542057b56a8133cc56fdebd62ef33a144c9725cd3c11d4a1ea916f0793bef4a48e7f8536c5ab58c7e07f7520a52032c9
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,19 @@
|
|
|
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.1] - 2026-08-14
|
|
7
|
+
|
|
8
|
+
- **Feature.** `:post` resolves to `:document`, beside `:page` and `:form`: a post is
|
|
9
|
+
a piece of writing. 305 names now resolve, 136 of them aliases.
|
|
10
|
+
|
|
11
|
+
## [1.0.0] - 2026-08-14
|
|
12
|
+
|
|
13
|
+
- **Feature.** `:author` resolves to `:account`, beside `:avatar` and `:profile`: the
|
|
14
|
+
person behind a byline is drawn as a person. 304 names now resolve, 135 of them
|
|
15
|
+
aliases.
|
|
16
|
+
- The API — `fetch`, `[]`, `icons`, `names`, `actions` — is unchanged and now stable,
|
|
17
|
+
which is what the major version says.
|
|
18
|
+
|
|
6
19
|
## [0.1.1] - 2026-08-09
|
|
7
20
|
|
|
8
21
|
- **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` | |  |  |  |
|
|
@@ -146,7 +146,7 @@ drawn out. `Unicon.actions` names them all.
|
|
|
146
146
|
| `:contact` | |  |  |  |
|
|
147
147
|
| `:credit_card` | `:charge` `:payment` `:transaction` |  |  |  |
|
|
148
148
|
| `:display` | `:screen` |  |  |  |
|
|
149
|
-
| `:document` | `:file` `:form` `:page` `:summary` |  |  |  |
|
|
149
|
+
| `:document` | `:file` `:form` `:page` `:post` `:summary` |  |  |  |
|
|
150
150
|
| `:droplet` | |  |  |  |
|
|
151
151
|
| `:envelope` | `:email` |  |  |  |
|
|
152
152
|
| `:eye` | `:view` |  |  |  |
|
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,
|
|
@@ -24,7 +24,7 @@ module Unicon
|
|
|
24
24
|
order: :cart, organization: :building, package: :box, page: :document,
|
|
25
25
|
password: :lock, payment: :credit_card, permission: :key, photo: :image,
|
|
26
26
|
picture: :image, plan: :calendar, platform: :puzzle, plugin: :puzzle,
|
|
27
|
-
preference: :sliders, price: :tag, product: :box, profile: :account,
|
|
27
|
+
post: :document, preference: :sliders, price: :tag, product: :box, profile: :account,
|
|
28
28
|
project: :folder, prompt: :terminal, provider: :briefcase, purchase: :cart,
|
|
29
29
|
rating: :star, recording: :microphone, region: :map, reminder: :bell,
|
|
30
30
|
review: :star, ride: :car, role: :badge, route: :signpost,
|
data/lib/unicon/version.rb
CHANGED