A fork of the iconic font and CSS toolkit

Doug 148618a9c4 update broken composer.json 3 anni fa
.github 7a0461f290 Redefining use cases 6 anni fa
css 71121c6e28 Version bump to 1.2 5 anni fa
fonts 71121c6e28 Version bump to 1.2 5 anni fa
less 71121c6e28 Version bump to 1.2 5 anni fa
scss 71121c6e28 Version bump to 1.2 5 anni fa
src 71121c6e28 Version bump to 1.2 5 anni fa
.all-contributorsrc 2271112ef5 docs: update .all-contributorsrc [skip ci] 5 anni fa
.gitignore 99a389b2ef add swap and backup files to .gitignore 7 anni fa
.npmignore 22d1b36260 .npmignore: add .github/ 6 anni fa
.travis.yml 5a2ca8e6ea Should deploy also to NPM on tags 6 anni fa
CHANGELOG.md c14e361ccb Bumping the version number for release of 1.1.6 6 anni fa
CONTRIBUTING.md de0289499c add note about linking pull requests to issues 3 anni fa
CONTRIBUTORS.md ff0755e4fe docs: update CONTRIBUTORS.md [skip ci] 5 anni fa
Dockerfile 4a07e09b94 Add a dockerfile, document its usage in the readme (#260) 4 anni fa
Gemfile 11f664e762 Revert to a version of Jekyll that works 6 anni fa
Gemfile.lock 11f664e762 Revert to a version of Jekyll that works 6 anni fa
LICENSES b8f88fce7f Adds the full license text at root of project for all 3 licenses 6 anni fa
README.md 14bab3353d Add links, mention SVG use, add build warning/workaround 3 anni fa
_config-deploy.yml 7b5eb3856f Adds the official domain name 6 anni fa
_config.yml 71121c6e28 Version bump to 1.2 5 anni fa
bower.json fc81f003b1 Updating bower 7 anni fa
component.json 71121c6e28 Version bump to 1.2 5 anni fa
composer.json 148618a9c4 update broken composer.json 3 anni fa
package-lock.json 66b346f2a9 Updates less-plugin-clean-css for security reasons 5 anni fa
package.json 71121c6e28 Version bump to 1.2 5 anni fa

README.md

Fork Awesome

A fork of the iconic font and CSS toolkit

npm-badge all-contrib jsdeliver-badge cdnjs-badge build-status-badge matrix-badge

Fork Awesome is a suite of 796 pictographic and brand icons for easy, scalable vector graphics on websites and beyond.

This project, as the name suggests, began as a fork of Font Awesome. Font Awesome was originally created by Dave Gandy and ran as a community project. However, as Font Awesome developed, pull requests from the community stopped being accepted (October 2016) and as of version 5.0 the build system became private (February 2018).

With gratitude to Dave Gandy and the Font Awesome team, Julien Deswaef forked Font Awesome 4.7 (v4.7.0 source) into Fork Awesome 1.0 in February 2018, to continue building the amazing resource in a fully free, libre and open-source fashion, with and for the wider community. After a period of extended inactivity (i.e. no release since February 2019), several Fork Awesome users got together to try and revive the project 🌱

We are now catching up with backlogged issues and pull requests, updating technology and documentation — even reevaluating the project aims, as icon fonts gradually become deprecated. Come say hi in the #forkawesome:matrix.org matrix room 🙂

How to use

There is a full page in our documentation website that explains how to use Fork Awesome in your web project. It ranges from just pointing to a CSS file on a CDN, hosting it on your own server or even adapting the LESS and SCSS files to your own liking.

It is also possible to use the icons directly as SVG. They are located in src/icons/svg. We don't have accompanying documentation for this usage yet.

Licenses

Contributing

Please read through our contributing guidelines. Included are directions for opening issues, coding standards, and notes on development.

We also take great pride in recognizing any contributions made to this project. Whether you've written a blogpost about it, fixed a typo in the documentation or submitted new icons or code patches, we will happily list you in our contributors list.

Versioning

Fork Awesome will be maintained under the Semantic Versioning guidelines as far as possible. Releases will be numbered with the following format:

<major>.<minor>.<patch>

And constructed with the following guidelines:

  • Breaking backward compatibility bumps the major (and resets the minor and patch)
  • Big changes, without breaking backward compatibility, bumps the minor (and resets the patch)
  • Bug fixes, small adaptations, adding a few icons and misc changes bumps the patch
  • The fork started from FontAwesome 4.7 (last commit by Dave is bdfa9823).
  • The project starts at version 1.0.0. All references to versions before the fork are named 0.4.7

Component

To include as a component, just run

$ component install ForkAwesome/Fork-Awesome

Or add

"ForkAwesome/Fork-Awesome": "*"

to the dependencies in your component.json.

Building Fork Awesome

⚠️ The Fork Awesome build process has been neglected for some time. The instructions below seem to work for modern Linux installations as far as building the fonts, but not building the site. One repeatable workaround is to follow the instructions using Ubuntu 18.04, optionally within a VirtualBox Virtual Machine. We're working on it... ⚠️

Before you can build the project, you must first have the following installed:

  • Ruby
  • Ruby Development Headers
    • Ubuntu: sudo apt-get install ruby-dev (Only if you're NOT using rbenv or rvm)
    • Windows: DevKit
    • macOS: no extra step required
  • Bundler (Run gem install bundler to install).
  • Node Package Manager (aka. npm)
  • Tools required to build the font:
    • Ubuntu: sudo apt-get install fontforge woff-tools woff2

From the root of the repository, install the tools used to develop.

$ bundle install
$ npm ci

Build the font:

$ make -C src/icons

Build the web documentation:

$ npm run build

Or serve it on a local server on http://localhost:7998:

$ npm run dev

Build the font in a Docker container

Another possibility is to build the font using the Dockerfile provided.

First, build the Docker image:

$ docker build -t fa-builder .

Then, run the Docker container:

$ docker run --rm -it \
    -u $(id -u):$(id -g) \
    -v $(pwd):$(pwd) \
    -w $(pwd) \
    fa-builder

Within the container, build the font:

$ bundle install --path vendor/bundle
$ npm ci
$ make -C src/icons