unicon 3.0.0 → 3.1.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 -0
- data/lib/unicon/icons/status.rb +1 -0
- 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: 5c9635070a63b840e20b7e51755198697296718e535e14edea34b74cb2d6bc8e
|
|
4
|
+
data.tar.gz: f35612aac948fbdb438db33c70e188896ff1800617bd678359d6c2c7cc98b502
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3f87101bc6811b27daec39c94b22e03874d8d30f738fbc6afbaf788cf58cf480e2aa053919baa228f713177bbcc161f0bceebb73060dad7a5595c1168c098f8b
|
|
7
|
+
data.tar.gz: 11980bc5228bb31e91ee1cc1ca1051aaef7eea0dd1e45f6cc0446cae2eecf83838e502a37a8abdae48e0cf2c1e13009733d4a7a99a4547e7a74ac08f4189587a
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
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
|
+
## [3.1.0] - 2026-08-19
|
|
7
|
+
|
|
8
|
+
- **Feature.** `:bookmarked` is the state beside `:bookmark`'s action, so a list can
|
|
9
|
+
draw a row somebody has kept apart from one they have not. A variant axis would have
|
|
10
|
+
made all 171 concepts answer whether they fill; two concepts answer only for
|
|
11
|
+
themselves. Android names it `bookmark_added` rather than a filled bookmark, Material
|
|
12
|
+
Symbols Outlined having no filled name to give — fill there is a font axis. 307 names
|
|
13
|
+
now resolve, 135 of them aliases.
|
|
14
|
+
|
|
6
15
|
## [3.0.0] - 2026-08-15
|
|
7
16
|
|
|
8
17
|
- **Breaking.** `Unicon.actions` is documented as the doing words, but a third of it
|
data/README.md
CHANGED
|
@@ -134,6 +134,7 @@ drawn out. `Unicon.actions` names them all.
|
|
|
134
134
|
| `:bolt` | |  |  |  |
|
|
135
135
|
| `:book` | |  |  |  |
|
|
136
136
|
| `:bookmark` | |  |  |  |
|
|
137
|
+
| `:bookmarked` | |  |  |  |
|
|
137
138
|
| `:box` | `:inventory` `:item` `:package` `:product` |  |  |  |
|
|
138
139
|
| `:brand` | |  |  |  |
|
|
139
140
|
| `:briefcase` | `:provider` |  |  |  |
|
data/lib/unicon/icons/status.rb
CHANGED
|
@@ -13,6 +13,7 @@ module Unicon
|
|
|
13
13
|
star: { bootstrap: 'star', ios: 'star', android: 'star' },
|
|
14
14
|
heart: { bootstrap: 'heart', ios: 'heart', android: 'favorite' },
|
|
15
15
|
bookmark: { bootstrap: 'bookmark', ios: 'bookmark', android: 'bookmark' },
|
|
16
|
+
bookmarked: { bootstrap: 'bookmark-fill', ios: 'bookmark.fill', android: 'bookmark_added' },
|
|
16
17
|
thumbs_up: { bootstrap: 'hand-thumbs-up', ios: 'hand.thumbsup', android: 'thumb_up' },
|
|
17
18
|
thumbs_down: { bootstrap: 'hand-thumbs-down', ios: 'hand.thumbsdown', android: 'thumb_down' },
|
|
18
19
|
trophy: { bootstrap: 'trophy', ios: 'trophy', android: 'trophy' },
|
data/lib/unicon/version.rb
CHANGED