prawn-icon 2.4.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 +57 -0
- data/Gemfile +2 -0
- data/README.md +12 -0
- data/Rakefile +0 -1
- data/data/fonts/fab/fa-brands.ttf +0 -0
- data/data/fonts/fab/fab.yml +32 -3
- data/data/fonts/far/fa-regular.ttf +0 -0
- data/data/fonts/far/far.yml +1 -1
- data/data/fonts/fas/fa-solid.ttf +0 -0
- data/data/fonts/fas/fas.yml +67 -2
- data/data/fonts/mdi/LICENSE +20 -0
- data/data/fonts/mdi/materialdesignicons-webfont.ttf +0 -0
- data/data/fonts/mdi/mdi.yml +7099 -0
- data/examples/fontawesome.rb +3 -2
- data/examples/foundation_icons.rb +3 -2
- data/examples/mdi.rb +36 -0
- data/examples/paymentfont.rb +3 -2
- data/lib/prawn/icon/base.rb +16 -4
- data/lib/prawn/icon/compatibility.rb +25 -20
- data/lib/prawn/icon/configuration.rb +40 -0
- data/lib/prawn/icon/errors.rb +2 -2
- data/lib/prawn/icon/font_data.rb +13 -9
- data/lib/prawn/icon/interface.rb +38 -13
- data/lib/prawn/icon/parser.rb +14 -12
- data/lib/prawn/icon/version.rb +3 -3
- data/lib/prawn/icon.rb +4 -2
- data/prawn-icon.gemspec +12 -10
- data/spec/integration/icon_spec.rb +76 -15
- data/spec/unit/base_spec.rb +25 -6
- data/spec/unit/configuration_spec.rb +21 -0
- data/spec/unit/errors/icon_key_empty_spec.rb +1 -3
- data/spec/unit/errors/icon_not_found_spec.rb +1 -3
- data/spec/unit/font_data_spec.rb +9 -9
- data/spec/unit/icon_spec.rb +15 -15
- data/spec/unit/parser_spec.rb +6 -4
- metadata +31 -25
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9e7ca84b49c7dec787359183a4463564c18a8c19d3f63102b993158cb6255c3c
|
4
|
+
data.tar.gz: a8c108c9a784f9a4099c3a45c4c28da31f52c18c750ea345202f7d45f3b77edc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c942f64df65a7323b09878afb2edf3c2f1e925a6bafa2ba64b9b90389ecd87421c777f583d71fe561691d5085a452f594c2f2c5fa816fe700ffe161ca5e0ef9
|
7
|
+
data.tar.gz: a1280d20c8962daaf8d8a110d784b2ae2cc1bb8c763e1aaae76593b274c9af0084debb3967740bf4a309ef7634f2d1d1a4d8421ab125c371e412b340d48feee1
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,60 @@
|
|
1
|
+
# 3.1.0 - September 1, 2022
|
2
|
+
|
3
|
+
* Update our CI matrix to include recent versions of Prawn and Ruby! Thanks @petergoldstein! (#55)
|
4
|
+
* Resolve a few code smells that were flagged by Rubocop.
|
5
|
+
* [Material Design Icons](https://materialdesignicons.com) are now supported! Currently version `7.0.96` is included. Thanks @maneex! [https://github.com/jessedoyle/prawn-icon/pull/59](Pull Request).
|
6
|
+
* Memoize calls to `Prawn::Icon::FontData#path` to improve performance.
|
7
|
+
|
8
|
+
#### Material Design Icons
|
9
|
+
|
10
|
+
All Material Design Icons use the font prefix of `mdi`. That means that you're able to reference an icon as follows:
|
11
|
+
|
12
|
+
```ruby
|
13
|
+
require 'prawn/icon'
|
14
|
+
|
15
|
+
Prawn::Document.generate('icons.pdf') do |pdf|
|
16
|
+
pdf.icon 'mdi-beer', size: 60
|
17
|
+
end
|
18
|
+
```
|
19
|
+
|
20
|
+
# 3.0.0 - November 10, 2020
|
21
|
+
|
22
|
+
* **breaking change** - Fix incorrect layout and line-wrapping logic for inline-formatted icons. Please see [Inline Format Changes](#inline-format-changes) for more details.
|
23
|
+
* Add a `#formatted_icon_box` method to retain the previous inline icon behaviour.
|
24
|
+
* Allow `#formatted_icon_box` to accept absolute positioning parameters (`x`, `y`, and `at`). Thanks @navinspm!
|
25
|
+
* Update fontawesome from version `5.11.2` to `5.15.1`.
|
26
|
+
* See FontAwesome's [upgrade guide](https://github.com/FortAwesome/Font-Awesome/blob/57005cea6da7d1c67f3466974aecd25485f60452/UPGRADING.md) for more details.
|
27
|
+
* Introduce a configuration mechanism so that the font directory can be customized as follows:
|
28
|
+
|
29
|
+
```ruby
|
30
|
+
Prawn::Icon.configure do |config|
|
31
|
+
config.font_directory = '/path/to/fonts'
|
32
|
+
end
|
33
|
+
```
|
34
|
+
|
35
|
+
* Deprecate the global variables of `Prawn::Icon::Base::FONTDIR` and `Prawn::Icon::Compatibility::SHIMS`. Use `Prawn::Icon.configuration.font_directory` and `Prawn::Icon::Compatibility.shims` instead.
|
36
|
+
* Use `Gem::Specification#full_gem_path` to get the root path of the gem directory to resolve https://github.com/jessedoyle/prawn-icon/issues/45.
|
37
|
+
|
38
|
+
#### Inline Format Changes
|
39
|
+
|
40
|
+
As noted in https://github.com/jessedoyle/prawn-icon/issues/49, `Prawn::Icon` did not correctly respect page boundaries for inline-formatted icons.
|
41
|
+
|
42
|
+
The fix for the issue requires `Prawn::Icon` to use the inline layout and formatting logic implemented in `Prawn`.
|
43
|
+
|
44
|
+
This change has ramifications to the `#icon` and `#inline_icon` method return values, but most applications should not require changes.
|
45
|
+
|
46
|
+
Changes are listed below:
|
47
|
+
|
48
|
+
* `#icon` - returns `nil` with the `inline_format: true` parameter.
|
49
|
+
* `#inline_icon` - returns `nil` (instead of a `Prawn::Text::Formatted::Box` instance).
|
50
|
+
|
51
|
+
You can call `#formatted_icon_box` to retain the previous inline icon functionality.
|
52
|
+
|
53
|
+
# 2.5.0 - October 4, 2019
|
54
|
+
|
55
|
+
* Update FontAwesome from `5.8.2` to `5.11.2`.
|
56
|
+
* See FontAwesome's [upgrade guide](https://github.com/FortAwesome/Font-Awesome/blob/master/UPGRADING.md) for more details.
|
57
|
+
|
1
58
|
# 2.4.0 - May 26, 2019
|
2
59
|
|
3
60
|
* Update FontAwesome from `5.4.0` to `5.8.2`.
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -9,6 +9,7 @@ Prawn::Icon provides a simple mechanism for rendering icons and icon fonts from
|
|
9
9
|
The following icon fonts ship with Prawn::Icon:
|
10
10
|
|
11
11
|
* FontAwesome (http://fontawesome.io/icons/)
|
12
|
+
* Material Design Icons (https://materialdesignicons.com/)
|
12
13
|
* Foundation Icons (http://zurb.com/playground/foundation-icon-fonts-3)
|
13
14
|
* PaymentFont (https://paymentfont.com)
|
14
15
|
|
@@ -87,6 +88,7 @@ Currently supported prefixes include:
|
|
87
88
|
* `fab` - [FontAwesome Brands](https://fontawesome.com/icons?d=gallery&s=brands&m=free) (eg. `fab-amazon`).
|
88
89
|
* `far` - [FontAwesome Regular](https://fontawesome.com/icons?d=gallery&s=regular&m=free) (eg. `far-address-book`).
|
89
90
|
* `fas` - [FontAwesome Solid](https://fontawesome.com/icons?d=gallery&s=solid&m=free) (eg. `fas-location-arrow`).
|
91
|
+
* `mdi` - [Material Design Icons](https://materialdesignicons.com/) (eg. `mdi-beer`),
|
90
92
|
* `fi` - [Foundation Icons](https://zurb.com/playground/foundation-icon-fonts-3) (eg. `fi-compass`).
|
91
93
|
* `pf` - [PaymentFont](https://paymentfont.com/#icons) (eg. `pf-cash`).
|
92
94
|
|
@@ -110,6 +112,16 @@ rake legend
|
|
110
112
|
|
111
113
|
should generate these files when run from Prawn::Icon's gem directory.
|
112
114
|
|
115
|
+
## Configuration
|
116
|
+
|
117
|
+
You can optionally configure Prawn::Icon to use an alternate data directory for font files.
|
118
|
+
|
119
|
+
```ruby
|
120
|
+
Prawn::Icon.configure do |config|
|
121
|
+
config.font_directory = '/path/to/my/fonts'
|
122
|
+
end
|
123
|
+
```
|
124
|
+
|
113
125
|
## Contributing
|
114
126
|
|
115
127
|
I'll gladly accept pull requests that are well tested for any bug found in Prawn::Icon.
|
data/Rakefile
CHANGED
Binary file
|
data/data/fonts/fab/fab.yml
CHANGED
@@ -1,12 +1,11 @@
|
|
1
1
|
---
|
2
2
|
fab:
|
3
|
-
__font_version__: 5.
|
3
|
+
__font_version__: 5.15.1
|
4
4
|
500px: ""
|
5
5
|
accessible-icon: ""
|
6
6
|
accusoft: ""
|
7
7
|
acquisitions-incorporated: ""
|
8
8
|
adn: ""
|
9
|
-
adobe: ""
|
10
9
|
adversal: ""
|
11
10
|
affiliatetheme: ""
|
12
11
|
airbnb: ""
|
@@ -50,6 +49,7 @@ fab:
|
|
50
49
|
btc: ""
|
51
50
|
buffer: ""
|
52
51
|
buromobelexperte: ""
|
52
|
+
buy-n-large: ""
|
53
53
|
buysellads: ""
|
54
54
|
canadian-maple-leaf: ""
|
55
55
|
cc-amazon-pay: ""
|
@@ -66,6 +66,7 @@ fab:
|
|
66
66
|
centos: ""
|
67
67
|
chrome: ""
|
68
68
|
chromecast: ""
|
69
|
+
cloudflare: ""
|
69
70
|
cloudscale: ""
|
70
71
|
cloudsmith: ""
|
71
72
|
cloudversify: ""
|
@@ -74,6 +75,7 @@ fab:
|
|
74
75
|
confluence: ""
|
75
76
|
connectdevelop: ""
|
76
77
|
contao: ""
|
78
|
+
cotton-bureau: ""
|
77
79
|
cpanel: ""
|
78
80
|
creative-commons: ""
|
79
81
|
creative-commons-by: ""
|
@@ -95,7 +97,9 @@ fab:
|
|
95
97
|
cuttlefish: ""
|
96
98
|
d-and-d: ""
|
97
99
|
d-and-d-beyond: ""
|
100
|
+
dailymotion: ""
|
98
101
|
dashcube: ""
|
102
|
+
deezer: ""
|
99
103
|
delicious: ""
|
100
104
|
deploydog: ""
|
101
105
|
deskpro: ""
|
@@ -118,6 +122,7 @@ fab:
|
|
118
122
|
earlybirds: ""
|
119
123
|
ebay: ""
|
120
124
|
edge: ""
|
125
|
+
edge-legacy: ""
|
121
126
|
elementor: ""
|
122
127
|
ello: ""
|
123
128
|
ember: ""
|
@@ -137,6 +142,7 @@ fab:
|
|
137
142
|
fedora: ""
|
138
143
|
figma: ""
|
139
144
|
firefox: ""
|
145
|
+
firefox-browser: ""
|
140
146
|
first-order: ""
|
141
147
|
first-order-alt: ""
|
142
148
|
firstdraft: ""
|
@@ -177,6 +183,7 @@ fab:
|
|
177
183
|
goodreads-g: ""
|
178
184
|
google: ""
|
179
185
|
google-drive: ""
|
186
|
+
google-pay: ""
|
180
187
|
google-play: ""
|
181
188
|
google-plus: ""
|
182
189
|
google-plus-g: ""
|
@@ -186,20 +193,26 @@ fab:
|
|
186
193
|
grav: ""
|
187
194
|
gripfire: ""
|
188
195
|
grunt: ""
|
196
|
+
guilded: ""
|
189
197
|
gulp: ""
|
190
198
|
hacker-news: ""
|
191
199
|
hacker-news-square: ""
|
192
200
|
hackerrank: ""
|
193
201
|
hips: ""
|
194
202
|
hire-a-helper: ""
|
203
|
+
hive: ""
|
195
204
|
hooli: ""
|
196
205
|
hornbill: ""
|
197
206
|
hotjar: ""
|
198
207
|
houzz: ""
|
199
208
|
html5: ""
|
200
209
|
hubspot: ""
|
210
|
+
ideal: ""
|
201
211
|
imdb: ""
|
212
|
+
innosoft: ""
|
202
213
|
instagram: ""
|
214
|
+
instagram-square: ""
|
215
|
+
instalod: ""
|
203
216
|
intercom: ""
|
204
217
|
internet-explorer: ""
|
205
218
|
invision: ""
|
@@ -239,6 +252,7 @@ fab:
|
|
239
252
|
markdown: ""
|
240
253
|
mastodon: ""
|
241
254
|
maxcdn: ""
|
255
|
+
mdb: ""
|
242
256
|
medapps: ""
|
243
257
|
medium: ""
|
244
258
|
medium-m: ""
|
@@ -246,21 +260,23 @@ fab:
|
|
246
260
|
meetup: ""
|
247
261
|
megaport: ""
|
248
262
|
mendeley: ""
|
263
|
+
microblog: ""
|
249
264
|
microsoft: ""
|
250
265
|
mix: ""
|
251
266
|
mixcloud: ""
|
267
|
+
mixer: ""
|
252
268
|
mizuni: ""
|
253
269
|
modx: ""
|
254
270
|
monero: ""
|
255
271
|
napster: ""
|
256
272
|
neos: ""
|
257
273
|
nimblr: ""
|
258
|
-
nintendo-switch: ""
|
259
274
|
node: ""
|
260
275
|
node-js: ""
|
261
276
|
npm: ""
|
262
277
|
ns8: ""
|
263
278
|
nutritionix: ""
|
279
|
+
octopus-deploy: ""
|
264
280
|
odnoklassniki: ""
|
265
281
|
odnoklassniki-square: ""
|
266
282
|
old-republic: ""
|
@@ -268,6 +284,7 @@ fab:
|
|
268
284
|
openid: ""
|
269
285
|
opera: ""
|
270
286
|
optin-monster: ""
|
287
|
+
orcid: ""
|
271
288
|
osi: ""
|
272
289
|
page4: ""
|
273
290
|
pagelines: ""
|
@@ -275,6 +292,7 @@ fab:
|
|
275
292
|
patreon: ""
|
276
293
|
paypal: ""
|
277
294
|
penny-arcade: ""
|
295
|
+
perbyte: ""
|
278
296
|
periscope: ""
|
279
297
|
phabricator: ""
|
280
298
|
phoenix-framework: ""
|
@@ -284,6 +302,7 @@ fab:
|
|
284
302
|
pied-piper-alt: ""
|
285
303
|
pied-piper-hat: ""
|
286
304
|
pied-piper-pp: ""
|
305
|
+
pied-piper-square: ""
|
287
306
|
pinterest: ""
|
288
307
|
pinterest-p: ""
|
289
308
|
pinterest-square: ""
|
@@ -313,6 +332,7 @@ fab:
|
|
313
332
|
rev: ""
|
314
333
|
rocketchat: ""
|
315
334
|
rockrms: ""
|
335
|
+
rust: ""
|
316
336
|
safari: ""
|
317
337
|
salesforce: ""
|
318
338
|
sass: ""
|
@@ -323,6 +343,7 @@ fab:
|
|
323
343
|
sellsy: ""
|
324
344
|
servicestack: ""
|
325
345
|
shirtsinbulk: ""
|
346
|
+
shopify: ""
|
326
347
|
shopware: ""
|
327
348
|
simplybuilt: ""
|
328
349
|
sistrix: ""
|
@@ -359,6 +380,7 @@ fab:
|
|
359
380
|
superpowers: ""
|
360
381
|
supple: ""
|
361
382
|
suse: ""
|
383
|
+
swift: ""
|
362
384
|
symfony: ""
|
363
385
|
teamspeak: ""
|
364
386
|
telegram: ""
|
@@ -368,6 +390,7 @@ fab:
|
|
368
390
|
themeco: ""
|
369
391
|
themeisle: ""
|
370
392
|
think-peaks: ""
|
393
|
+
tiktok: ""
|
371
394
|
trade-federation: ""
|
372
395
|
trello: ""
|
373
396
|
tripadvisor: ""
|
@@ -380,7 +403,11 @@ fab:
|
|
380
403
|
uber: ""
|
381
404
|
ubuntu: ""
|
382
405
|
uikit: ""
|
406
|
+
umbraco: ""
|
407
|
+
uncharted: ""
|
383
408
|
uniregistry: ""
|
409
|
+
unity: ""
|
410
|
+
unsplash: ""
|
384
411
|
untappd: ""
|
385
412
|
ups: ""
|
386
413
|
usb: ""
|
@@ -398,6 +425,7 @@ fab:
|
|
398
425
|
vk: ""
|
399
426
|
vnv: ""
|
400
427
|
vuejs: ""
|
428
|
+
watchman-monitoring: ""
|
401
429
|
waze: ""
|
402
430
|
weebly: ""
|
403
431
|
weibo: ""
|
@@ -409,6 +437,7 @@ fab:
|
|
409
437
|
windows: ""
|
410
438
|
wix: ""
|
411
439
|
wizards-of-the-coast: ""
|
440
|
+
wodu: ""
|
412
441
|
wolf-pack-battalion: ""
|
413
442
|
wordpress: ""
|
414
443
|
wordpress-simple: ""
|
Binary file
|
data/data/fonts/far/far.yml
CHANGED
data/data/fonts/fas/fa-solid.ttf
CHANGED
Binary file
|
data/data/fonts/fas/fas.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
---
|
2
2
|
fas:
|
3
|
-
__font_version__: 5.
|
3
|
+
__font_version__: 5.15.1
|
4
4
|
ad: ""
|
5
5
|
address-book: ""
|
6
6
|
address-card: ""
|
@@ -54,7 +54,12 @@ fas:
|
|
54
54
|
backspace: ""
|
55
55
|
backward: ""
|
56
56
|
bacon: ""
|
57
|
+
bacteria: ""
|
58
|
+
bacterium: ""
|
59
|
+
bahai: ""
|
57
60
|
balance-scale: ""
|
61
|
+
balance-scale-left: ""
|
62
|
+
balance-scale-right: ""
|
58
63
|
ban: ""
|
59
64
|
band-aid: ""
|
60
65
|
barcode: ""
|
@@ -74,6 +79,7 @@ fas:
|
|
74
79
|
bezier-curve: ""
|
75
80
|
bible: ""
|
76
81
|
bicycle: ""
|
82
|
+
biking: ""
|
77
83
|
binoculars: ""
|
78
84
|
biohazard: ""
|
79
85
|
birthday-cake: ""
|
@@ -92,9 +98,13 @@ fas:
|
|
92
98
|
book-open: ""
|
93
99
|
book-reader: ""
|
94
100
|
bookmark: ""
|
101
|
+
border-all: ""
|
102
|
+
border-none: ""
|
103
|
+
border-style: ""
|
95
104
|
bowling-ball: ""
|
96
105
|
box: ""
|
97
106
|
box-open: ""
|
107
|
+
box-tissue: ""
|
98
108
|
boxes: ""
|
99
109
|
braille: ""
|
100
110
|
brain: ""
|
@@ -132,6 +142,7 @@ fas:
|
|
132
142
|
car-battery: ""
|
133
143
|
car-crash: ""
|
134
144
|
car-side: ""
|
145
|
+
caravan: ""
|
135
146
|
caret-down: ""
|
136
147
|
caret-left: ""
|
137
148
|
caret-right: ""
|
@@ -216,6 +227,7 @@ fas:
|
|
216
227
|
compact-disc: ""
|
217
228
|
compass: ""
|
218
229
|
compress: ""
|
230
|
+
compress-alt: ""
|
219
231
|
compress-arrows-alt: ""
|
220
232
|
concierge-bell: ""
|
221
233
|
cookie: ""
|
@@ -251,6 +263,7 @@ fas:
|
|
251
263
|
dice-two: ""
|
252
264
|
digital-tachograph: ""
|
253
265
|
directions: ""
|
266
|
+
disease: ""
|
254
267
|
divide: ""
|
255
268
|
dizzy: ""
|
256
269
|
dna: ""
|
@@ -292,14 +305,17 @@ fas:
|
|
292
305
|
exclamation-circle: ""
|
293
306
|
exclamation-triangle: ""
|
294
307
|
expand: ""
|
308
|
+
expand-alt: ""
|
295
309
|
expand-arrows-alt: ""
|
296
310
|
external-link-alt: ""
|
297
311
|
external-link-square-alt: ""
|
298
312
|
eye: ""
|
299
313
|
eye-dropper: ""
|
300
314
|
eye-slash: ""
|
315
|
+
fan: ""
|
301
316
|
fast-backward: ""
|
302
317
|
fast-forward: ""
|
318
|
+
faucet: ""
|
303
319
|
fax: ""
|
304
320
|
feather: ""
|
305
321
|
feather-alt: ""
|
@@ -405,7 +421,9 @@ fas:
|
|
405
421
|
hamsa: ""
|
406
422
|
hand-holding: ""
|
407
423
|
hand-holding-heart: ""
|
424
|
+
hand-holding-medical: ""
|
408
425
|
hand-holding-usd: ""
|
426
|
+
hand-holding-water: ""
|
409
427
|
hand-lizard: ""
|
410
428
|
hand-middle-finger: ""
|
411
429
|
hand-paper: ""
|
@@ -417,16 +435,25 @@ fas:
|
|
417
435
|
hand-pointer: ""
|
418
436
|
hand-rock: ""
|
419
437
|
hand-scissors: ""
|
438
|
+
hand-sparkles: ""
|
420
439
|
hand-spock: ""
|
421
440
|
hands: ""
|
422
441
|
hands-helping: ""
|
442
|
+
hands-wash: ""
|
423
443
|
handshake: ""
|
444
|
+
handshake-alt-slash: ""
|
445
|
+
handshake-slash: ""
|
424
446
|
hanukiah: ""
|
425
447
|
hard-hat: ""
|
426
448
|
hashtag: ""
|
449
|
+
hat-cowboy: ""
|
450
|
+
hat-cowboy-side: ""
|
427
451
|
hat-wizard: ""
|
428
|
-
haykal: ""
|
429
452
|
hdd: ""
|
453
|
+
head-side-cough: ""
|
454
|
+
head-side-cough-slash: ""
|
455
|
+
head-side-mask: ""
|
456
|
+
head-side-virus: ""
|
430
457
|
heading: ""
|
431
458
|
headphones: ""
|
432
459
|
headphones-alt: ""
|
@@ -447,6 +474,7 @@ fas:
|
|
447
474
|
hospital: ""
|
448
475
|
hospital-alt: ""
|
449
476
|
hospital-symbol: ""
|
477
|
+
hospital-user: ""
|
450
478
|
hot-tub: ""
|
451
479
|
hotdog: ""
|
452
480
|
hotel: ""
|
@@ -455,10 +483,12 @@ fas:
|
|
455
483
|
hourglass-half: ""
|
456
484
|
hourglass-start: ""
|
457
485
|
house-damage: ""
|
486
|
+
house-user: ""
|
458
487
|
hryvnia: ""
|
459
488
|
i-cursor: ""
|
460
489
|
ice-cream: ""
|
461
490
|
icicles: ""
|
491
|
+
icons: ""
|
462
492
|
id-badge: ""
|
463
493
|
id-card: ""
|
464
494
|
id-card-alt: ""
|
@@ -487,6 +517,7 @@ fas:
|
|
487
517
|
language: ""
|
488
518
|
laptop: ""
|
489
519
|
laptop-code: ""
|
520
|
+
laptop-house: ""
|
490
521
|
laptop-medical: ""
|
491
522
|
laugh: ""
|
492
523
|
laugh-beam: ""
|
@@ -516,6 +547,8 @@ fas:
|
|
516
547
|
long-arrow-alt-up: ""
|
517
548
|
low-vision: ""
|
518
549
|
luggage-cart: ""
|
550
|
+
lungs: ""
|
551
|
+
lungs-virus: ""
|
519
552
|
magic: ""
|
520
553
|
magnet: ""
|
521
554
|
mail-bulk: ""
|
@@ -567,6 +600,7 @@ fas:
|
|
567
600
|
mosque: ""
|
568
601
|
motorcycle: ""
|
569
602
|
mountain: ""
|
603
|
+
mouse: ""
|
570
604
|
mouse-pointer: ""
|
571
605
|
mug-hot: ""
|
572
606
|
music: ""
|
@@ -605,15 +639,19 @@ fas:
|
|
605
639
|
pen-square: ""
|
606
640
|
pencil-alt: ""
|
607
641
|
pencil-ruler: ""
|
642
|
+
people-arrows: ""
|
608
643
|
people-carry: ""
|
609
644
|
pepper-hot: ""
|
610
645
|
percent: ""
|
611
646
|
percentage: ""
|
612
647
|
person-booth: ""
|
613
648
|
phone: ""
|
649
|
+
phone-alt: ""
|
614
650
|
phone-slash: ""
|
615
651
|
phone-square: ""
|
652
|
+
phone-square-alt: ""
|
616
653
|
phone-volume: ""
|
654
|
+
photo-video: ""
|
617
655
|
piggy-bank: ""
|
618
656
|
pills: ""
|
619
657
|
pizza-slice: ""
|
@@ -621,6 +659,7 @@ fas:
|
|
621
659
|
plane: ""
|
622
660
|
plane-arrival: ""
|
623
661
|
plane-departure: ""
|
662
|
+
plane-slash: ""
|
624
663
|
play: ""
|
625
664
|
play-circle: ""
|
626
665
|
plug: ""
|
@@ -644,6 +683,8 @@ fas:
|
|
644
683
|
print: ""
|
645
684
|
procedures: ""
|
646
685
|
project-diagram: ""
|
686
|
+
pump-medical: ""
|
687
|
+
pump-soap: ""
|
647
688
|
puzzle-piece: ""
|
648
689
|
qrcode: ""
|
649
690
|
question: ""
|
@@ -657,10 +698,12 @@ fas:
|
|
657
698
|
rainbow: ""
|
658
699
|
random: ""
|
659
700
|
receipt: ""
|
701
|
+
record-vinyl: ""
|
660
702
|
recycle: ""
|
661
703
|
redo: ""
|
662
704
|
redo-alt: ""
|
663
705
|
registered: ""
|
706
|
+
remove-format: ""
|
664
707
|
reply: ""
|
665
708
|
reply-all: ""
|
666
709
|
republican: ""
|
@@ -704,6 +747,7 @@ fas:
|
|
704
747
|
share-square: ""
|
705
748
|
shekel-sign: ""
|
706
749
|
shield-alt: ""
|
750
|
+
shield-virus: ""
|
707
751
|
ship: ""
|
708
752
|
shipping-fast: ""
|
709
753
|
shoe-prints: ""
|
@@ -719,6 +763,7 @@ fas:
|
|
719
763
|
signal: ""
|
720
764
|
signature: ""
|
721
765
|
sim-card: ""
|
766
|
+
sink: ""
|
722
767
|
sitemap: ""
|
723
768
|
skating: ""
|
724
769
|
skiing: ""
|
@@ -739,19 +784,27 @@ fas:
|
|
739
784
|
snowflake: ""
|
740
785
|
snowman: ""
|
741
786
|
snowplow: ""
|
787
|
+
soap: ""
|
742
788
|
socks: ""
|
743
789
|
solar-panel: ""
|
744
790
|
sort: ""
|
745
791
|
sort-alpha-down: ""
|
792
|
+
sort-alpha-down-alt: ""
|
746
793
|
sort-alpha-up: ""
|
794
|
+
sort-alpha-up-alt: ""
|
747
795
|
sort-amount-down: ""
|
796
|
+
sort-amount-down-alt: ""
|
748
797
|
sort-amount-up: ""
|
798
|
+
sort-amount-up-alt: ""
|
749
799
|
sort-down: ""
|
750
800
|
sort-numeric-down: ""
|
801
|
+
sort-numeric-down-alt: ""
|
751
802
|
sort-numeric-up: ""
|
803
|
+
sort-numeric-up-alt: ""
|
752
804
|
sort-up: ""
|
753
805
|
spa: ""
|
754
806
|
space-shuttle: ""
|
807
|
+
spell-check: ""
|
755
808
|
spider: ""
|
756
809
|
spinner: ""
|
757
810
|
splotch: ""
|
@@ -773,8 +826,11 @@ fas:
|
|
773
826
|
stop: ""
|
774
827
|
stop-circle: ""
|
775
828
|
stopwatch: ""
|
829
|
+
stopwatch-20: ""
|
776
830
|
store: ""
|
777
831
|
store-alt: ""
|
832
|
+
store-alt-slash: ""
|
833
|
+
store-slash: ""
|
778
834
|
stream: ""
|
779
835
|
street-view: ""
|
780
836
|
strikethrough: ""
|
@@ -835,6 +891,7 @@ fas:
|
|
835
891
|
toggle-on: ""
|
836
892
|
toilet: ""
|
837
893
|
toilet-paper: ""
|
894
|
+
toilet-paper-slash: ""
|
838
895
|
toolbox: ""
|
839
896
|
tools: ""
|
840
897
|
tooth: ""
|
@@ -843,6 +900,7 @@ fas:
|
|
843
900
|
tractor: ""
|
844
901
|
trademark: ""
|
845
902
|
traffic-light: ""
|
903
|
+
trailer: ""
|
846
904
|
train: ""
|
847
905
|
tram: ""
|
848
906
|
transgender: ""
|
@@ -898,17 +956,24 @@ fas:
|
|
898
956
|
user-times: ""
|
899
957
|
users: ""
|
900
958
|
users-cog: ""
|
959
|
+
users-slash: ""
|
901
960
|
utensil-spoon: ""
|
902
961
|
utensils: ""
|
903
962
|
vector-square: ""
|
904
963
|
venus: ""
|
905
964
|
venus-double: ""
|
906
965
|
venus-mars: ""
|
966
|
+
vest: ""
|
967
|
+
vest-patches: ""
|
907
968
|
vial: ""
|
908
969
|
vials: ""
|
909
970
|
video: ""
|
910
971
|
video-slash: ""
|
911
972
|
vihara: ""
|
973
|
+
virus: ""
|
974
|
+
virus-slash: ""
|
975
|
+
viruses: ""
|
976
|
+
voicemail: ""
|
912
977
|
volleyball-ball: ""
|
913
978
|
volume-down: ""
|
914
979
|
volume-mute: ""
|
@@ -0,0 +1,20 @@
|
|
1
|
+
Pictogrammers Free License
|
2
|
+
--------------------------
|
3
|
+
|
4
|
+
This icon collection is released as free, open source, and GPL friendly by
|
5
|
+
the [Pictogrammers](http://pictogrammers.com/) icon group. You may use it
|
6
|
+
for commercial projects, open source projects, or anything really.
|
7
|
+
|
8
|
+
# Icons: Apache 2.0 (https://www.apache.org/licenses/LICENSE-2.0)
|
9
|
+
Some of the icons are redistributed under the Apache 2.0 license. All other
|
10
|
+
icons are either redistributed under their respective licenses or are
|
11
|
+
distributed under the Apache 2.0 license.
|
12
|
+
|
13
|
+
# Fonts: Apache 2.0 (https://www.apache.org/licenses/LICENSE-2.0)
|
14
|
+
All web and desktop fonts are distributed under the Apache 2.0 license. Web
|
15
|
+
and desktop fonts contain some icons that are redistributed under the Apache
|
16
|
+
2.0 license. All other icons are either redistributed under their respective
|
17
|
+
licenses or are distributed under the Apache 2.0 license.
|
18
|
+
|
19
|
+
# Code: MIT (https://opensource.org/licenses/MIT)
|
20
|
+
The MIT license applies to all non-font and non-icon files.
|
Binary file
|