Incrementing the version and recompiling assets after final sass merge

This commit is contained in:
Andrew Gioia 2016-12-14 18:32:23 -05:00
parent 6346b34903
commit 1c12df7060
8 changed files with 11 additions and 9 deletions

1
.gitignore vendored
View File

@ -1,4 +1,5 @@
.DS_Store
.orig
node_modules/
npm-debug.log
push_instructions.txt

View File

@ -1,4 +1,4 @@
# Keyrune v1.8.0
# Keyrune v2.0.0
## The Magic: the Gathering set symbol font!
@ -34,6 +34,7 @@ Attribution is **greatly appreciated** but not required!
## Changelog
* v2.0.0 - Keyrune, now with sass! Thanks to @jordanbrauer
* v1.8.0 - Amonkhet icon added; re-organized Readme with new updates at top
* v1.7.2 - Added Kaladesh Inventions icon (labeled as MP1)
* v1.7.1 - Cleaned up icon files to remove any with multiple paths; fixed UNH icon

View File

@ -1,7 +1,7 @@
{
"name": "keyrune",
"homepage": "http://andrewgioia.github.io/Keyrune",
"version": "1.8.0",
"version": "2.0.0",
"authors": [
"Andrew Gioia <andrewgioia@gmail.com>"
],

View File

@ -2,8 +2,8 @@
* Global */
@font-face {
font-family: 'Keyrune';
src: url('../fonts/keyrune.eot?v=1.8.0');
src: url('../fonts/keyrune.eot?#iefix&v=1.8.0') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=1.8.0') format('woff2'), url('../fonts/keyrune.woff?v=1.8.0') format('woff'), url('../fonts/keyrune.ttf?v=1.8.0') format('truetype'), url('../fonts/keyrune.svg?v=1.8.0#keyrune') format('svg');
src: url('../fonts/keyrune.eot?v=2.0.0');
src: url('../fonts/keyrune.eot?#iefix&v=2.0.0') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=2.0.0') format('woff2'), url('../fonts/keyrune.woff?v=2.0.0') format('woff'), url('../fonts/keyrune.ttf?v=2.0.0') format('truetype'), url('../fonts/keyrune.svg?v=2.0.0#keyrune') format('svg');
font-weight: normal;
font-style: normal;
}
@ -101,7 +101,7 @@
/**
* Fixed width */
.ss-fw {
width: 1.2857142857142858em;
width: 1.28571429em;
text-align: center;
}
/**

2
css/keyrune.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -2,6 +2,6 @@
* Global */
@ss-font-path: '../fonts';
@ss-version: '1.8.0';
@ss-version: '2.0.0';
@ss-font-size-base: 14px;
@ss-prefix: ss;

View File

@ -1,7 +1,7 @@
{
"name": "keyrune",
"description": "Keyrune",
"version": "1.8.0",
"version": "2.0.0",
"author": {
"name": "Andrew Gioia",
"email": "andrewgioia@gmail.com",

View File

@ -1,7 +1,7 @@
// _variables.scss
// #.
$keyrune_version: '1.8.0' !default;
$keyrune_version: '2.0.0' !default;
$keyrune_font_path: '../fonts' !default;
// #. Keyrune Font ==============================