prawn-icon 3.0.0 → 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8c9cf8d2f79db2e2732626f6b46ebb9f0a019243b29e68379ccc95e63a604dbd
4
- data.tar.gz: a3f67c49dd586f4c45ec9ebcf846514d38f08b6aadd031ca60028fa464a09633
3
+ metadata.gz: d57a618536d834a1bd0152e30fb00c47d676fe191c59cf951c615b51ac50eb23
4
+ data.tar.gz: 1e9d4b34b75ebef98c0cbca35547f3f49a909670461d5e9b85d4baaab3299acf
5
5
  SHA512:
6
- metadata.gz: 1bf95fa8ae5852d32880167fa6d0fcbc24498b43d0a3db8b5ea4eba6358f403fa4c08ceb68e9a7581a9e637e73a9b6d8774446f09d72c517f4f1098a5cd56230
7
- data.tar.gz: ce1dce62f8eabb83c543a8f596848d0417cc2520f706bc6cb2e420850410f7889020d2ed33e231f82181988ae9532ec3d9c9ffa1f2fb12018479e6f94b3ffeb4
6
+ metadata.gz: f1ba430c458287e398baf22c25d524036b9f77ad7f9c2d2bec39ce1557000bce273f604e77ef2b9581a8dd7fc08be77dee895017b6d2143cf3672115d0b81c09
7
+ data.tar.gz: 4f1912f735e51d02758f971c6dc3ea6ea3162b4ec2c8dc358daed23344027ba8ae6fb220cae5c8ecb78f4f5140975038c16fb73892e6ebe25589d033532201e4
data/CHANGELOG.md CHANGED
@@ -1,3 +1,26 @@
1
+ # 4.0.0 - November 25, 2024
2
+
3
+ * **breaking change** - Update from FontAwesom 5.11.2 to 6.7.1. Please see the notes [here](https://fontawesome.com/changelog#v6-0-0) for information related to changed or removed icons in the set. Thanks @pepijnve! [https://github.com/jessedoyle/prawn-icon/pull/62](Pull Request)
4
+
5
+ # 3.1.0 - September 1, 2022
6
+
7
+ * Update our CI matrix to include recent versions of Prawn and Ruby! Thanks @petergoldstein! (#55)
8
+ * Resolve a few code smells that were flagged by Rubocop.
9
+ * [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).
10
+ * Memoize calls to `Prawn::Icon::FontData#path` to improve performance.
11
+
12
+ #### Material Design Icons
13
+
14
+ All Material Design Icons use the font prefix of `mdi`. That means that you're able to reference an icon as follows:
15
+
16
+ ```ruby
17
+ require 'prawn/icon'
18
+
19
+ Prawn::Document.generate('icons.pdf') do |pdf|
20
+ pdf.icon 'mdi-beer', size: 60
21
+ end
22
+ ```
23
+
1
24
  # 3.0.0 - November 10, 2020
2
25
 
3
26
  * **breaking change** - Fix incorrect layout and line-wrapping logic for inline-formatted icons. Please see [Inline Format Changes](#inline-format-changes) for more details.
data/Gemfile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source 'https://rubygems.org'
2
4
 
3
5
  gemspec
data/README.md CHANGED
@@ -1,14 +1,14 @@
1
1
  # Prawn::Icon
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/prawn-icon.svg)](http://badge.fury.io/rb/prawn-icon)
4
- [![Build Status](https://api.travis-ci.org/jessedoyle/prawn-icon.svg?branch=master)](http://travis-ci.org/jessedoyle/prawn-icon)
5
- [![Code Climate](https://codeclimate.com/github/jessedoyle/prawn-icon/badges/gpa.svg)](https://codeclimate.com/github/jessedoyle/prawn-icon)
4
+ ![Build Status](https://github.com/jessedoyle/prawn-icon/actions/workflows/ci.yml/badge.svg?branch=master)
6
5
 
7
6
  Prawn::Icon provides a simple mechanism for rendering icons and icon fonts from within [Prawn](https://github.com/prawnpdf/prawn).
8
7
 
9
8
  The following icon fonts ship with Prawn::Icon:
10
9
 
11
10
  * FontAwesome (http://fontawesome.io/icons/)
11
+ * Material Design Icons (https://materialdesignicons.com/)
12
12
  * Foundation Icons (http://zurb.com/playground/foundation-icon-fonts-3)
13
13
  * PaymentFont (https://paymentfont.com)
14
14
 
@@ -87,6 +87,7 @@ Currently supported prefixes include:
87
87
  * `fab` - [FontAwesome Brands](https://fontawesome.com/icons?d=gallery&s=brands&m=free) (eg. `fab-amazon`).
88
88
  * `far` - [FontAwesome Regular](https://fontawesome.com/icons?d=gallery&s=regular&m=free) (eg. `far-address-book`).
89
89
  * `fas` - [FontAwesome Solid](https://fontawesome.com/icons?d=gallery&s=solid&m=free) (eg. `fas-location-arrow`).
90
+ * `mdi` - [Material Design Icons](https://materialdesignicons.com/) (eg. `mdi-beer`),
90
91
  * `fi` - [Foundation Icons](https://zurb.com/playground/foundation-icon-fonts-3) (eg. `fi-compass`).
91
92
  * `pf` - [PaymentFont](https://paymentfont.com/#icons) (eg. `pf-cash`).
92
93
 
@@ -1,24 +1,152 @@
1
+ Fonticons, Inc. (https://fontawesome.com)
2
+
3
+ --------------------------------------------------------------------------------
4
+
1
5
  Font Awesome Free License
2
- -------------------------
3
6
 
4
7
  Font Awesome Free is free, open source, and GPL friendly. You can use it for
5
8
  commercial projects, open source projects, or really almost whatever you want.
6
9
  Full Font Awesome Free license: https://fontawesome.com/license/free.
7
10
 
11
+ --------------------------------------------------------------------------------
12
+
8
13
  # Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/)
9
- In the Font Awesome Free download, the CC BY 4.0 license applies to all icons
10
- packaged as SVG and JS file types.
11
14
 
12
- # Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL)
13
- In the Font Awesome Free download, the SIL OLF license applies to all icons
15
+ The Font Awesome Free download is licensed under a Creative Commons
16
+ Attribution 4.0 International License and applies to all icons packaged
17
+ as SVG and JS file types.
18
+
19
+ --------------------------------------------------------------------------------
20
+
21
+ # Fonts: SIL OFL 1.1 License
22
+
23
+ In the Font Awesome Free download, the SIL OFL license applies to all icons
14
24
  packaged as web and desktop font files.
15
25
 
26
+ Copyright (c) 2024 Fonticons, Inc. (https://fontawesome.com)
27
+ with Reserved Font Name: "Font Awesome".
28
+
29
+ This Font Software is licensed under the SIL Open Font License, Version 1.1.
30
+ This license is copied below, and is also available with a FAQ at:
31
+ http://scripts.sil.org/OFL
32
+
33
+ SIL OPEN FONT LICENSE
34
+ Version 1.1 - 26 February 2007
35
+
36
+ PREAMBLE
37
+ The goals of the Open Font License (OFL) are to stimulate worldwide
38
+ development of collaborative font projects, to support the font creation
39
+ efforts of academic and linguistic communities, and to provide a free and
40
+ open framework in which fonts may be shared and improved in partnership
41
+ with others.
42
+
43
+ The OFL allows the licensed fonts to be used, studied, modified and
44
+ redistributed freely as long as they are not sold by themselves. The
45
+ fonts, including any derivative works, can be bundled, embedded,
46
+ redistributed and/or sold with any software provided that any reserved
47
+ names are not used by derivative works. The fonts and derivatives,
48
+ however, cannot be released under any other type of license. The
49
+ requirement for fonts to remain under this license does not apply
50
+ to any document created using the fonts or their derivatives.
51
+
52
+ DEFINITIONS
53
+ "Font Software" refers to the set of files released by the Copyright
54
+ Holder(s) under this license and clearly marked as such. This may
55
+ include source files, build scripts and documentation.
56
+
57
+ "Reserved Font Name" refers to any names specified as such after the
58
+ copyright statement(s).
59
+
60
+ "Original Version" refers to the collection of Font Software components as
61
+ distributed by the Copyright Holder(s).
62
+
63
+ "Modified Version" refers to any derivative made by adding to, deleting,
64
+ or substituting — in part or in whole — any of the components of the
65
+ Original Version, by changing formats or by porting the Font Software to a
66
+ new environment.
67
+
68
+ "Author" refers to any designer, engineer, programmer, technical
69
+ writer or other person who contributed to the Font Software.
70
+
71
+ PERMISSION & CONDITIONS
72
+ Permission is hereby granted, free of charge, to any person obtaining
73
+ a copy of the Font Software, to use, study, copy, merge, embed, modify,
74
+ redistribute, and sell modified and unmodified copies of the Font
75
+ Software, subject to the following conditions:
76
+
77
+ 1) Neither the Font Software nor any of its individual components,
78
+ in Original or Modified Versions, may be sold by itself.
79
+
80
+ 2) Original or Modified Versions of the Font Software may be bundled,
81
+ redistributed and/or sold with any software, provided that each copy
82
+ contains the above copyright notice and this license. These can be
83
+ included either as stand-alone text files, human-readable headers or
84
+ in the appropriate machine-readable metadata fields within text or
85
+ binary files as long as those fields can be easily viewed by the user.
86
+
87
+ 3) No Modified Version of the Font Software may use the Reserved Font
88
+ Name(s) unless explicit written permission is granted by the corresponding
89
+ Copyright Holder. This restriction only applies to the primary font name as
90
+ presented to the users.
91
+
92
+ 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
93
+ Software shall not be used to promote, endorse or advertise any
94
+ Modified Version, except to acknowledge the contribution(s) of the
95
+ Copyright Holder(s) and the Author(s) or with their explicit written
96
+ permission.
97
+
98
+ 5) The Font Software, modified or unmodified, in part or in whole,
99
+ must be distributed entirely under this license, and must not be
100
+ distributed under any other license. The requirement for fonts to
101
+ remain under this license does not apply to any document created
102
+ using the Font Software.
103
+
104
+ TERMINATION
105
+ This license becomes null and void if any of the above conditions are
106
+ not met.
107
+
108
+ DISCLAIMER
109
+ THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
110
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
111
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
112
+ OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
113
+ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
114
+ INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
115
+ DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
116
+ FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
117
+ OTHER DEALINGS IN THE FONT SOFTWARE.
118
+
119
+ --------------------------------------------------------------------------------
120
+
16
121
  # Code: MIT License (https://opensource.org/licenses/MIT)
122
+
17
123
  In the Font Awesome Free download, the MIT license applies to all non-font and
18
124
  non-icon files.
19
125
 
126
+ Copyright 2024 Fonticons, Inc.
127
+
128
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
129
+ this software and associated documentation files (the "Software"), to deal in the
130
+ Software without restriction, including without limitation the rights to use, copy,
131
+ modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
132
+ and to permit persons to whom the Software is furnished to do so, subject to the
133
+ following conditions:
134
+
135
+ The above copyright notice and this permission notice shall be included in all
136
+ copies or substantial portions of the Software.
137
+
138
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
139
+ INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
140
+ PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
141
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
142
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
143
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
144
+
145
+ --------------------------------------------------------------------------------
146
+
20
147
  # Attribution
21
- Attribution is required by MIT, SIL OLF, and CC BY licenses. Downloaded Font
148
+
149
+ Attribution is required by MIT, SIL OFL, and CC BY licenses. Downloaded Font
22
150
  Awesome Free files already contain embedded comments with sufficient
23
151
  attribution, so you shouldn't need to do anything additional when using these
24
152
  files normally.
@@ -27,7 +155,10 @@ We've kept attribution comments terse, so we ask that you do not actively work
27
155
  to remove them from files, especially code. They're a great way for folks to
28
156
  learn about Font Awesome.
29
157
 
158
+ --------------------------------------------------------------------------------
159
+
30
160
  # Brand Icons
161
+
31
162
  All brand icons are trademarks of their respective owners. The use of these
32
163
  trademarks does not indicate endorsement of the trademark holder by Font
33
164
  Awesome, nor vice versa. **Please do not use brand logos for any purpose except
Binary file
@@ -1,10 +1,10 @@
1
1
  ---
2
2
  fab:
3
- __font_version__: 5.15.1
3
+ __font_version__: 6.7.1
4
+ 42-group: ""
4
5
  500px: ""
5
6
  accessible-icon: ""
6
7
  accusoft: ""
7
- acquisitions-incorporated: ""
8
8
  adn: ""
9
9
  adversal: ""
10
10
  affiliatetheme: ""
@@ -35,6 +35,7 @@ fab:
35
35
  battle-net: ""
36
36
  behance: ""
37
37
  behance-square: ""
38
+ bilibili: ""
38
39
  bimobject: ""
39
40
  bitbucket: ""
40
41
  bitcoin: ""
@@ -43,9 +44,13 @@ fab:
43
44
  blackberry: ""
44
45
  blogger: ""
45
46
  blogger-b: ""
47
+ bluesky: ""
46
48
  bluetooth: ""
47
49
  bluetooth-b: ""
48
50
  bootstrap: ""
51
+ bots: ""
52
+ brave: ""
53
+ brave-reverse: ""
49
54
  btc: ""
50
55
  buffer: ""
51
56
  buromobelexperte: ""
@@ -70,6 +75,7 @@ fab:
70
75
  cloudscale: ""
71
76
  cloudsmith: ""
72
77
  cloudversify: ""
78
+ cmplid: ""
73
79
  codepen: ""
74
80
  codiepie: ""
75
81
  confluence: ""
@@ -92,13 +98,16 @@ fab:
92
98
  creative-commons-share: ""
93
99
  creative-commons-zero: ""
94
100
  critical-role: ""
101
+ css: ""
95
102
  css3: ""
96
103
  css3-alt: ""
97
104
  cuttlefish: ""
98
105
  d-and-d: ""
99
106
  d-and-d-beyond: ""
100
107
  dailymotion: ""
108
+ dart-lang: ""
101
109
  dashcube: ""
110
+ debian: ""
102
111
  deezer: ""
103
112
  delicious: ""
104
113
  deploydog: ""
@@ -141,6 +150,7 @@ fab:
141
150
  fedex: ""
142
151
  fedora: ""
143
152
  figma: ""
153
+ files-pinwheel: ""
144
154
  firefox: ""
145
155
  firefox-browser: ""
146
156
  first-order: ""
@@ -148,11 +158,12 @@ fab:
148
158
  firstdraft: ""
149
159
  flickr: ""
150
160
  flipboard: ""
161
+ flutter: ""
151
162
  fly: ""
152
163
  font-awesome: ""
153
164
  font-awesome-alt: ""
154
- font-awesome-flag: ""
155
- font-awesome-logo-full: ""
165
+ font-awesome-flag: ""
166
+ font-awesome-logo-full: ""
156
167
  fonticons: ""
157
168
  fonticons-fi: ""
158
169
  fort-awesome: ""
@@ -175,10 +186,12 @@ fab:
175
186
  github-square: ""
176
187
  gitkraken: ""
177
188
  gitlab: ""
189
+ gitlab-square: ""
178
190
  gitter: ""
179
191
  glide: ""
180
192
  glide-g: ""
181
193
  gofore: ""
194
+ golang: ""
182
195
  goodreads: ""
183
196
  goodreads-g: ""
184
197
  google: ""
@@ -188,6 +201,7 @@ fab:
188
201
  google-plus: ""
189
202
  google-plus-g: ""
190
203
  google-plus-square: ""
204
+ google-scholar: ""
191
205
  google-wallet: ""
192
206
  gratipay: ""
193
207
  grav: ""
@@ -198,6 +212,7 @@ fab:
198
212
  hacker-news: ""
199
213
  hacker-news-square: ""
200
214
  hackerrank: ""
215
+ hashnode: ""
201
216
  hips: ""
202
217
  hire-a-helper: ""
203
218
  hive: ""
@@ -229,6 +244,7 @@ fab:
229
244
  js: ""
230
245
  js-square: ""
231
246
  jsfiddle: ""
247
+ jxl: ""
232
248
  kaggle: ""
233
249
  keybase: ""
234
250
  keycdn: ""
@@ -240,6 +256,7 @@ fab:
240
256
  lastfm-square: ""
241
257
  leanpub: ""
242
258
  less: ""
259
+ letterboxd: ""
243
260
  line: ""
244
261
  linkedin: ""
245
262
  linkedin-in: ""
@@ -255,13 +272,15 @@ fab:
255
272
  mdb: ""
256
273
  medapps: ""
257
274
  medium: ""
258
- medium-m: ""
275
+ medium-m: ""
259
276
  medrt: ""
260
277
  meetup: ""
261
278
  megaport: ""
262
279
  mendeley: ""
280
+ meta: ""
263
281
  microblog: ""
264
282
  microsoft: ""
283
+ mintbit: ""
265
284
  mix: ""
266
285
  mixcloud: ""
267
286
  mixer: ""
@@ -270,6 +289,8 @@ fab:
270
289
  monero: ""
271
290
  napster: ""
272
291
  neos: ""
292
+ nfc-directional: ""
293
+ nfc-symbol: ""
273
294
  nimblr: ""
274
295
  node: ""
275
296
  node-js: ""
@@ -279,19 +300,21 @@ fab:
279
300
  octopus-deploy: ""
280
301
  odnoklassniki: ""
281
302
  odnoklassniki-square: ""
303
+ odysee: ""
282
304
  old-republic: ""
283
305
  opencart: ""
284
306
  openid: ""
307
+ opensuse: ""
285
308
  opera: ""
286
309
  optin-monster: ""
287
310
  orcid: ""
288
311
  osi: ""
312
+ padlet: ""
289
313
  page4: ""
290
314
  pagelines: ""
291
315
  palfed: ""
292
316
  patreon: ""
293
317
  paypal: ""
294
- penny-arcade: ""
295
318
  perbyte: ""
296
319
  periscope: ""
297
320
  phabricator: ""
@@ -306,6 +329,8 @@ fab:
306
329
  pinterest: ""
307
330
  pinterest-p: ""
308
331
  pinterest-square: ""
332
+ pix: ""
333
+ pixiv: ""
309
334
  playstation: ""
310
335
  product-hunt: ""
311
336
  pushed: ""
@@ -325,6 +350,7 @@ fab:
325
350
  reddit-alien: ""
326
351
  reddit-square: ""
327
352
  redhat: ""
353
+ rendact: ""
328
354
  renren: ""
329
355
  replyd: ""
330
356
  researchgate: ""
@@ -337,31 +363,70 @@ fab:
337
363
  salesforce: ""
338
364
  sass: ""
339
365
  schlix: ""
366
+ screenpal: ""
340
367
  scribd: ""
341
368
  searchengin: ""
342
369
  sellcast: ""
343
370
  sellsy: ""
344
371
  servicestack: ""
345
372
  shirtsinbulk: ""
373
+ shoelace: ""
346
374
  shopify: ""
347
375
  shopware: ""
376
+ signal-messenger: ""
348
377
  simplybuilt: ""
349
378
  sistrix: ""
350
379
  sith: ""
380
+ sitrox: ""
351
381
  sketch: ""
352
382
  skyatlas: ""
353
383
  skype: ""
354
384
  slack: ""
355
- slack-hash: ""
385
+ slack-hash: ""
356
386
  slideshare: ""
357
387
  snapchat: ""
358
- snapchat-ghost: ""
388
+ snapchat-ghost: ""
359
389
  snapchat-square: ""
360
390
  soundcloud: ""
361
391
  sourcetree: ""
392
+ space-awesome: ""
362
393
  speakap: ""
363
394
  speaker-deck: ""
364
395
  spotify: ""
396
+ square-behance: ""
397
+ square-bluesky: ""
398
+ square-dribbble: ""
399
+ square-facebook: ""
400
+ square-font-awesome: ""
401
+ square-font-awesome-stroke: ""
402
+ square-git: ""
403
+ square-github: ""
404
+ square-gitlab: ""
405
+ square-google-plus: ""
406
+ square-hacker-news: ""
407
+ square-instagram: ""
408
+ square-js: ""
409
+ square-kickstarter: ""
410
+ square-lastfm: ""
411
+ square-letterboxd: ""
412
+ square-odnoklassniki: ""
413
+ square-pied-piper: ""
414
+ square-pinterest: ""
415
+ square-reddit: ""
416
+ square-snapchat: ""
417
+ square-steam: ""
418
+ square-threads: ""
419
+ square-tumblr: ""
420
+ square-twitter: ""
421
+ square-upwork: ""
422
+ square-viadeo: ""
423
+ square-vimeo: ""
424
+ square-web-awesome: ""
425
+ square-web-awesome-stroke: ""
426
+ square-whatsapp: ""
427
+ square-x-twitter: ""
428
+ square-xing: ""
429
+ square-youtube: ""
365
430
  squarespace: ""
366
431
  stack-exchange: ""
367
432
  stack-overflow: ""
@@ -374,6 +439,7 @@ fab:
374
439
  strava: ""
375
440
  stripe: ""
376
441
  stripe-s: ""
442
+ stubber: ""
377
443
  studiovinari: ""
378
444
  stumbleupon: ""
379
445
  stumbleupon-circle: ""
@@ -384,16 +450,16 @@ fab:
384
450
  symfony: ""
385
451
  teamspeak: ""
386
452
  telegram: ""
387
- telegram-plane: ""
453
+ telegram-plane: ""
388
454
  tencent-weibo: ""
389
455
  the-red-yeti: ""
390
456
  themeco: ""
391
457
  themeisle: ""
392
458
  think-peaks: ""
459
+ threads: ""
393
460
  tiktok: ""
394
461
  trade-federation: ""
395
462
  trello: ""
396
- tripadvisor: ""
397
463
  tumblr: ""
398
464
  tumblr-square: ""
399
465
  twitch: ""
@@ -410,6 +476,7 @@ fab:
410
476
  unsplash: ""
411
477
  untappd: ""
412
478
  ups: ""
479
+ upwork: ""
413
480
  usb: ""
414
481
  usps: ""
415
482
  ussunnah: ""
@@ -427,6 +494,8 @@ fab:
427
494
  vuejs: ""
428
495
  watchman-monitoring: ""
429
496
  waze: ""
497
+ web-awesome: ""
498
+ webflow: ""
430
499
  weebly: ""
431
500
  weibo: ""
432
501
  weixin: ""
@@ -435,6 +504,7 @@ fab:
435
504
  whmcs: ""
436
505
  wikipedia-w: ""
437
506
  windows: ""
507
+ wirsindhandwerk: ""
438
508
  wix: ""
439
509
  wizards-of-the-coast: ""
440
510
  wodu: ""
@@ -445,6 +515,8 @@ fab:
445
515
  wpexplorer: ""
446
516
  wpforms: ""
447
517
  wpressr: ""
518
+ wsh: ""
519
+ x-twitter: ""
448
520
  xbox: ""
449
521
  xing: ""
450
522
  xing-square: ""