unmagic-icon 0.2.1 → 0.3.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 -1
- data/README.md +1 -0
- data/lib/unmagic/icon/library/source/lobe_icons.rb +24 -0
- data/lib/unmagic/icon/library/source.rb +1 -0
- data/lib/unmagic/icon/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 66fe0a90a06ca3989154088d6e1d8cda87f6f1055d9b0ddf368ee2e9a054fd2f
|
|
4
|
+
data.tar.gz: fb7ad24d2a2c4d56a9dc4246751ff12542424ebc392bddba9be78f8f3420bc47
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c5e2c6186cb26a61779090c520930a9941725db13d2807df6a61ecad308debecaf86c928ca9e4b5bc6ca3dd3768b16fa1456ae42802a34bd6a90ab8963db3b71
|
|
7
|
+
data.tar.gz: 65e389aa2b586335518e70919aa560601a8157cc8ef21bab78ed8ab52fdce9dc0ba35add14410a737d4fbc9690fafe673cc7d5a1ec9ec14aa31dd64e2649a694
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.3.0] - 2026-07-31
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- New downloadable icon library: `lobe-icons` (AI/LLM brand logos from
|
|
14
|
+
LobeHub, with `-color` and `-text` variants alongside each bare mark)
|
|
15
|
+
|
|
10
16
|
## [0.2.1] - 2026-07-14
|
|
11
17
|
|
|
12
18
|
### Changed
|
|
@@ -53,7 +59,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
53
59
|
hooks into `assets:precompile`) and `unmagic:icons:download[library]`
|
|
54
60
|
- `Unmagic::Icon::Web`, a Rack app for browsing the configured icon libraries
|
|
55
61
|
|
|
56
|
-
[Unreleased]: https://github.com/unreasonable-magic/unmagic-icon/compare/v0.
|
|
62
|
+
[Unreleased]: https://github.com/unreasonable-magic/unmagic-icon/compare/v0.3.0...HEAD
|
|
63
|
+
[0.3.0]: https://github.com/unreasonable-magic/unmagic-icon/compare/v0.2.1...v0.3.0
|
|
57
64
|
[0.2.1]: https://github.com/unreasonable-magic/unmagic-icon/compare/v0.2.0...v0.2.1
|
|
58
65
|
[0.2.0]: https://github.com/unreasonable-magic/unmagic-icon/compare/v0.1.0...v0.2.0
|
|
59
66
|
[0.1.0]: https://github.com/unreasonable-magic/unmagic-icon/releases/tag/v0.1.0
|
data/README.md
CHANGED
|
@@ -133,6 +133,7 @@ Available libraries:
|
|
|
133
133
|
| `iconoir` | Iconoir | Free open source icons designed on a 24x24 grid |
|
|
134
134
|
| `material-design-icons` | Material Design Icons | 7400+ Material Design icons (Pictogrammers @mdi) |
|
|
135
135
|
| `phosphor` | Phosphor Icons | Flexible icon family with six weights (thin to fill, plus duotone) |
|
|
136
|
+
| `lobe-icons` | Lobe Icons | Popular AI / LLM model brand logos and icons |
|
|
136
137
|
|
|
137
138
|
### Browsing icons
|
|
138
139
|
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Unmagic
|
|
4
|
+
class Icon
|
|
5
|
+
class Library
|
|
6
|
+
class Source
|
|
7
|
+
# LobeHub's AI/LLM brand logos, sourced from the static-svg npm package
|
|
8
|
+
# rather than the repo (the repo only ships React components). Each brand
|
|
9
|
+
# comes in up to three variants, distinguished by filename suffix: the
|
|
10
|
+
# bare mark (openai), the full-colour mark (openai-color), and the
|
|
11
|
+
# wordmark (openai-text).
|
|
12
|
+
class LobeIcons < Source
|
|
13
|
+
key :"lobe-icons"
|
|
14
|
+
title "Lobe Icons"
|
|
15
|
+
description "Popular AI / LLM model brand logos and icons"
|
|
16
|
+
url "https://registry.npmjs.org/@lobehub/icons-static-svg/-/icons-static-svg-1.94.0.tgz"
|
|
17
|
+
archive :tgz
|
|
18
|
+
dir "lobe-icons"
|
|
19
|
+
extract "package/icons/*.svg"
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
data/lib/unmagic/icon/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: unmagic-icon
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Keith Pitt
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-07-
|
|
11
|
+
date: 2026-07-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -121,6 +121,7 @@ files:
|
|
|
121
121
|
- lib/unmagic/icon/library/source/feather.rb
|
|
122
122
|
- lib/unmagic/icon/library/source/heroicons.rb
|
|
123
123
|
- lib/unmagic/icon/library/source/iconoir.rb
|
|
124
|
+
- lib/unmagic/icon/library/source/lobe_icons.rb
|
|
124
125
|
- lib/unmagic/icon/library/source/lucide.rb
|
|
125
126
|
- lib/unmagic/icon/library/source/material_design_icons.rb
|
|
126
127
|
- lib/unmagic/icon/library/source/material_file_icons.rb
|