Skip to content

Commit

Permalink
Release 5.3.0 (#13824)
Browse files Browse the repository at this point in the history
  • Loading branch information
robmadole committed Aug 27, 2018
1 parent bab41b2 commit 9fc64f7
Show file tree
Hide file tree
Showing 1,756 changed files with 13,377 additions and 3,676 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Expand Up @@ -8,6 +8,27 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
repository that is by invitation only. You will get a 404 - Not Found if you do
not have access**

## [5.3.0](https://github.com/FortAwesome/Font-Awesome/releases/tag/5.3.0) - 2018-08-27

### Added
* New Religion, and Marketing category
* New icons in the Mathematics, and Business category
* New stats for signal, volume, and wifi icons
* New brand icon for the-red-yeti and alipay

### Changed
* Adding ethereum to Currency category
* Adding bitcoin and btc to Payments & Shopping

### Fixed
* Incorrect name for layer-minus and layer-plus in sponsors.yml
* Reversing route-highway and route-interstate
* Correct version identifier in OTF and web font files
* CSS keyframe names are not minified (and renamed) to prevent conflict with user or app specific names
* Sass placeholder selector added for %fa-icon to fix CSS precendence issue with font-weight

---

## [5.2.0](https://github.com/FortAwesome/Font-Awesome-Pro/releases/tag/5.2.0) - 2018-07-23

### Added
Expand Down
4 changes: 2 additions & 2 deletions LICENSE.txt
Expand Up @@ -3,7 +3,7 @@ Font Awesome Free License

Font Awesome Free is free, open source, and GPL friendly. You can use it for
commercial projects, open source projects, or really almost whatever you want.
Full Font Awesome Free license: https://fontawesome.com/license.
Full Font Awesome Free license: https://fontawesome.com/license/free.

# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/)
In the Font Awesome Free download, the CC BY 4.0 license applies to all icons
Expand All @@ -24,7 +24,7 @@ attribution, so you shouldn't need to do anything additional when using these
files normally.

We've kept attribution comments terse, so we ask that you do not actively work
to remove them from files, especially code. They're a great way for folks to
to remove them from files, especially code. They're a great way for folks to
learn about Font Awesome.

# Brand Icons
Expand Down
34 changes: 34 additions & 0 deletions UPGRADING.md
Expand Up @@ -6,6 +6,40 @@ This guide is useful to figure out what you need to do between breaking changes.

As always, [submit issues](https://github.com/FortAwesome/Font-Awesome/issues/new) that you run into with this guide or with these upgrades to us.

## 5.x.x to 5.3.0

Sass mixin syntax has been updated to address a bug.

Use `@extend %fa-icon` to correctly maintain CSS order in output files.

~~Old way:~~

```
.twitter {
@include fa-icon; /* incorrect */
@extend .fab;
&:before {
content: fa-content($fa-var-twitter);
}
}
```

New way:

```
.twitter {
@extend %fa-icon; /* correct */
@extend .fab;
&:before {
content: fa-content($fa-var-twitter);
}
}
```

---

## 5.1.x to 5.2.x

There are no breaking changes in this version upgrade.
Expand Down
104 changes: 103 additions & 1 deletion advanced-options/metadata/categories.yml
Expand Up @@ -162,8 +162,11 @@ audio-video:
- undo
- undo-alt
- video
- volume
- volume-down
- volume-mute
- volume-off
- volume-slash
- volume-up
- youtube
label: Audio & Video
Expand Down Expand Up @@ -193,12 +196,18 @@ buildings:
icons:
- building
- church
- gopuram
- home
- hospital
- hospital-alt
- industry
- mosque
- place-of-worship
- school
- synagogue
- torii-gate
- university
- vihara
label: Buildings
business:
icons:
Expand All @@ -212,6 +221,7 @@ business:
- building
- bullhorn
- bullseye
- business-time
- calculator
- calendar
- calendar-alt
Expand All @@ -220,6 +230,7 @@ business:
- chart-bar
- chart-line
- chart-pie
- city
- clipboard
- coffee
- columns
Expand All @@ -236,11 +247,14 @@ business:
- file
- file-alt
- folder
- folder-minus
- folder-open
- folder-plus
- glasses
- globe
- highlighter
- industry
- landmark
- marker
- paperclip
- paste
Expand All @@ -255,13 +269,14 @@ business:
- phone-slash
- phone-square
- phone-volume
- print
- project-diagram
- registered
- save
- sitemap
- socks
- sticky-note
- stream
- suitcase
- table
- tag
- tags
Expand Down Expand Up @@ -416,6 +431,7 @@ currency:
- bitcoin
- btc
- dollar-sign
- ethereum
- euro-sign
- gg
- gg-circle
Expand Down Expand Up @@ -840,6 +856,9 @@ interfaces:
- sign-in-alt
- sign-out-alt
- signal
- signal-alt
- signal-alt-slash
- signal-slash
- sitemap
- sliders-h
- smile
Expand Down Expand Up @@ -871,7 +890,14 @@ interfaces:
- user
- user-alt
- user-circle
- volume
- volume-down
- volume-mute
- volume-off
- volume-slash
- volume-up
- wifi
- wifi-slash
- wrench
label: Interfaces
logistics:
Expand Down Expand Up @@ -938,6 +964,7 @@ maps:
- info
- info-circle
- key
- landmark
- layer-group
- leaf
- lemon
Expand Down Expand Up @@ -1005,21 +1032,56 @@ maps:
- wine-glass
- wrench
label: Maps
marketing:
icons:
- ad
- bullhorn
- bullseye
- comment-dollar
- comments-dollar
- envelope-open-text
- funnel-dollar
- lightbulb
- mail-bulk
- poll
- poll-h
- search-dollar
- search-location
label: Marketing
mathematics:
icons:
- abacus
- calculator
- calculator-alt
- divide
- empty-set
- equals
- function
- greater-than
- greater-than-equal
- infinity
- integral
- intersection
- lambda
- less-than
- less-than-equal
- minus
- not-equal
- omega
- percentage
- pi
- plus
- sigma
- square-root
- square-root-alt
- subscript
- superscript
- tally
- theta
- tilde
- times
- union
- value-absolute
label: Mathematics
medical:
icons:
Expand Down Expand Up @@ -1285,10 +1347,13 @@ objects:
label: Objects
payments-shopping:
icons:
- alipay
- amazon-pay
- apple-pay
- bell
- bitcoin
- bookmark
- btc
- bullhorn
- camera
- camera-retro
Expand Down Expand Up @@ -1328,6 +1393,39 @@ payments-shopping:
- thumbs-up
- trophy
label: Payments & Shopping
religion:
icons:
- ankh
- atom
- bible
- church
- cross
- dharmachakra
- dove
- gopuram
- hamsa
- haykal
- jedi
- journal-whills
- kaaba
- khanda
- menorah
- mosque
- om
- pastafarianism
- peace
- place-of-worship
- pray
- praying-hands
- quran
- star-and-crescent
- star-of-david
- synagogue
- torah
- torii-gate
- vihara
- yin-yang
label: Religion
shapes:
icons:
- bookmark
Expand Down Expand Up @@ -1418,6 +1516,10 @@ status:
- shopping-cart
- sign-in-alt
- sign-out-alt
- signal
- signal-alt
- signal-alt-slash
- signal-slash
- stream
- thermometer-empty
- thermometer-full
Expand Down

0 comments on commit 9fc64f7

Please sign in to comment.