2018-02-05 02:05:42 +08:00
# Fork Awesome
2018-02-05 03:53:02 +08:00
### A fork of the iconic font and CSS toolkit
2012-03-07 11:36:13 +08:00
2018-02-21 07:31:36 +08:00
Fork Awesome is a full suite of 685 pictographic icons for easy scalable vector graphics on websites, originally created by [Dave Gandy ](https://twitter.com/davegandy ) and now maintained by a community.
2013-05-11 06:43:34 +08:00
2018-02-05 02:05:42 +08:00
Following concerns regarding [the development of Font Awesome ](https://github.com/FortAwesome/Font-Awesome/issues/12199#issuecomment-362919956 ), the PR Freeze since Oct 2016 and the direction Fort Awesome is taking with the version 5.0 of their project, we are forking Font Awesome (4.7), in order to build on this incredible tool Dave Gandy has given us, while at the same time allowing this project to be run by a distributed community of contributors.
2018-02-08 06:55:50 +08:00
A tremendous gratitude is given to the whole team behind [Font Awesome ](https://fontawesome.com ), and you are encouraged to support them and buy Font Awesome Pro for your project.
2018-02-05 02:05:42 +08:00
2018-02-19 09:00:45 +08:00
Though If you believe in distributed open source design and wish to be part of this new adventure, please start submitting patches and suggestions of improvement.
2012-03-07 11:36:13 +08:00
2015-12-12 06:01:25 +08:00
## License
2018-02-18 07:57:16 +08:00
- The Fork Awesome font is licensed under the SIL OFL 1.1:
2013-05-11 06:29:45 +08:00
- http://scripts.sil.org/OFL
2018-02-18 07:57:16 +08:00
- Fork Awesome CSS, LESS, and Sass files are licensed under the MIT License:
2016-02-16 02:20:22 +08:00
- https://opensource.org/licenses/mit-license.html
2018-02-18 07:57:16 +08:00
- The Fork Awesome documentation is licensed under the CC BY 3.0 License:
2017-12-08 01:07:36 +08:00
- https://creativecommons.org/licenses/by/3.0/
2013-01-02 10:37:41 +08:00
2013-11-28 00:02:09 +08:00
## Contributing
2018-02-05 03:53:02 +08:00
Please read through our [contributing guidelines ](https://github.com/ForkAwesome/Fork-Awesome/blob/master/CONTRIBUTING.md ).
2014-08-20 23:31:43 +08:00
Included are directions for opening issues, coding standards, and notes on development.
2013-05-09 11:28:34 +08:00
2015-12-12 06:01:25 +08:00
## Versioning
2013-05-09 11:28:34 +08:00
2018-02-05 03:53:02 +08:00
Fork Awesome will be maintained under the Semantic Versioning guidelines as much as possible. Releases will be numbered
2014-08-20 23:31:43 +08:00
with the following format:
2013-05-09 11:28:34 +08:00
`<major>.<minor>.<patch>`
And constructed with the following guidelines:
* Breaking backward compatibility bumps the major (and resets the minor and patch)
* New additions, including new icons, without breaking backward compatibility bumps the minor (and resets the patch)
2016-05-04 22:06:59 +08:00
* Bug fixes, changes to brand logos, and misc changes bumps the patch
2018-02-19 09:00:45 +08:00
* The fork started from FontAwesome 4.7 (last commit by Dave is [bdfa9823 ](https://github.com/ForkAwesome/Fork-Awesome/commits/master?after=b0bc8f6fb74e05c987ef7ce1525cd3ab8390a1c3+69 )).
* The project starts at version 1.0.0. All references to versions before the fork are named 0.4.7
2013-05-09 11:28:34 +08:00
2013-05-11 06:53:39 +08:00
For more information on SemVer, please visit http://semver.org.
2013-05-11 06:43:34 +08:00
2018-02-05 14:06:19 +08:00
## Original author of Font Awesome:
- [Dave Gandy ](https://github.com/davegandy )
2013-05-11 06:43:34 +08:00
2015-12-12 06:01:25 +08:00
## Component
2016-02-16 02:20:22 +08:00
To include as a [component ](https://github.com/componentjs/component ), just run
2013-06-22 07:05:06 +08:00
2018-02-05 02:05:42 +08:00
$ component install ForkAwesome/Fork-Awesome
2013-06-22 07:05:06 +08:00
Or add
2018-02-05 02:05:42 +08:00
"ForkAwesome/Fork-Awesome": "*"
2013-06-22 07:05:06 +08:00
to the `dependencies` in your `component.json` .
2018-02-05 14:06:19 +08:00
## Building on Fork Awesome
2013-05-23 21:04:02 +08:00
2015-06-12 02:32:35 +08:00
**Before you can build the project**, you must first have the following installed:
- [Ruby ](https://www.ruby-lang.org/en/ )
- Ruby Development Headers
- **Ubuntu:** `sudo apt-get install ruby-dev` *(Only if you're __NOT__ using `rbenv` or `rvm`)*
- **Windows:** [DevKit ](http://rubyinstaller.org/ )
- [Bundler ](http://bundler.io/ ) (Run `gem install bundler` to install).
- [Node Package Manager (AKA NPM) ](https://docs.npmjs.com/getting-started/installing-node )
- [Less ](http://lesscss.org/ ) (Run `npm install -g less` to install).
- [Less Plugin: Clean CSS ](https://github.com/less/less-plugin-clean-css ) (Run `npm install -g less-plugin-clean-css` to install).
2018-02-19 09:00:45 +08:00
- [FontCustom ](https://github.com/FontCustom/fontcustom ) (requires FontForge to be installed)
2015-06-12 02:32:35 +08:00
2013-05-23 21:04:02 +08:00
From the root of the repository, install the tools used to develop.
$ bundle install
$ npm install
2018-02-19 09:00:45 +08:00
Build the font:
$:/src/icons make
Build the web documentation:
2013-05-23 21:04:02 +08:00
2018-02-06 07:10:39 +08:00
$ npm run build
2013-05-23 21:04:02 +08:00
2018-02-08 06:55:50 +08:00
Or serve it on a local server on http://localhost:7998/Fork-Awesome/:
2013-05-23 21:04:02 +08:00
2018-02-06 07:10:39 +08:00
$ npm run dev
2018-02-06 10:57:05 +08:00
To deploy the project and documentation on GH pages:
$ jgd -n