Adding Ixalan, Rivals of Ixalan, Explorers of Ixalan, and Unstable; official icon for Hour of Devastation

This commit is contained in:
Andrew Gioia 2017-06-17 09:08:32 -04:00
parent 14fdc59766
commit 869809bfaa
13 changed files with 39 additions and 10 deletions

View File

@ -1,4 +1,4 @@
# Keyrune v3.0.3
# Keyrune v3.1.1
## The Magic: the Gathering set symbol font!
@ -60,6 +60,8 @@ Attribution is **greatly appreciated** but not required!
## Changelog
* v3.1.1 - Minor corrections for versioning
* v3.1.0 - Slew of new icons for Ixalan, Rivals of Ixalan, Explorers of Ixalan, and Unstable; corrected Hour of Devastation icon based on official release
* v3.0.3 - Adding new (correct) Archenemy: Nicol Bolas symbol with confirmed set code (e01)
* v3.0.2 - Fixing BRB path issue
* v3.0.1 - Adding IDW Promo icon and clenaing up some core set icons

View File

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

View File

@ -2,8 +2,8 @@
* Global */
@font-face {
font-family: 'Keyrune';
src: url('../fonts/keyrune.eot?v=3.0.3');
src: url('../fonts/keyrune.eot?#iefix&v=3.0.3') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=3.0.3') format('woff2'), url('../fonts/keyrune.woff?v=3.0.3') format('woff'), url('../fonts/keyrune.ttf?v=3.0.3') format('truetype'), url('../fonts/keyrune.svg?v=3.0.3#keyrune') format('svg');
src: url('../fonts/keyrune.eot?v=3.1.1');
src: url('../fonts/keyrune.eot?#iefix&v=3.1.1') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=3.1.1') format('woff2'), url('../fonts/keyrune.woff?v=3.1.1') format('woff'), url('../fonts/keyrune.ttf?v=3.1.1') format('truetype'), url('../fonts/keyrune.svg?v=3.1.1#keyrune') format('svg');
font-weight: normal;
font-style: normal;
}
@ -456,6 +456,13 @@
.ss-hou:before {
content: "\e924";
}
/* Ixalan Block */
.ss-xln:before {
content: "\e92e";
}
.ss-rix:before {
content: "\e92f";
}
/**
* Command Zone */
.ss-van:before {
@ -504,6 +511,9 @@
.ss-ann:before {
content: "\e92d";
}
.ss-e02:before {
content: "\e931";
}
/**
* Reprint */
.ss-chr:before {
@ -777,6 +787,9 @@
.ss-unh:before {
content: "\e692";
}
.ss-ust:before {
content: "\e930";
}
/**
* Unofficial */
.ss-xcle:before {

2
css/keyrune.min.css vendored

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 334 KiB

After

Width:  |  Height:  |  Size: 345 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -129,6 +129,9 @@
/* Amonkhet Block */
.@{ss-prefix}-akh:before { content: "\e914"; } // Amonkhet
.@{ss-prefix}-hou:before { content: "\e924"; } // Hour of Devastation
/* Ixalan Block */
.@{ss-prefix}-xln:before { content: "\e92e"; } // Amonkhet
.@{ss-prefix}-rix:before { content: "\e92f"; } // Hour of Devastation
/**
* Command Zone */
@ -149,6 +152,7 @@
.@{ss-prefix}-cma:before { content: "\e916"; } // Commander Anthology
.@{ss-prefix}-e01:before,
.@{ss-prefix}-ann:before { content: "\e92d"; } // Archenemy: Nicol Bolas
.@{ss-prefix}-e02:before { content: "\e931"; } // Explorers of Ixalan
/**
* Reprint */
@ -271,6 +275,7 @@
.@{ss-prefix}-ugl:before { content: "\e691"; } // Unglued
.@{ss-prefix}-unh:before { content: "\e692"; } // Unhinged
.@{ss-prefix}-ust:before { content: "\e930"; } // Unstable
/**

View File

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

View File

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

View File

@ -1,7 +1,7 @@
// _variables.scss
// #.
$keyrune_version: '3.0.3' !default;
$keyrune_version: '3.1.1' !default;
$keyrune_font_path: '../fonts' !default;
// #. Keyrune Font ==============================
@ -189,6 +189,9 @@ $mtg_setlist: (
// Amonkhet block
("Amonkhet", "akh", "\e914"),
("Hour of Devastation", "hou", "\e924"),
// Ixalan block
("Ixalan", "xln", "\e92e"),
("Rivals of Ixalan", "rix", "\e92f"),
// # Commander Sets
("Vanguard", 'van', "\e655"),
("Planechase 2009", 'hop', "\e656"),
@ -206,6 +209,7 @@ $mtg_setlist: (
("Commander Anthology", 'cma', "\e916"),
("Archenemy: Nicol Bolas", 'e01', "\e92d"),
("Archenemy: Nicol Bolas", 'ann', "\e92d"),
("Explorers of Ixalan", 'e02', "\e931"),
// # Reprint Sets
("Chronicles", 'chr', "\e65e"),
("Anthologies", 'ath', "\e65f"),
@ -291,7 +295,7 @@ $mtg_setlist: (
("Masters Edition IV", 'me4', "\e690"),
("Tempest Remastered", 'tpr', "\e694"),
("Vintage Masters", 'vma', "\e696"),
//("Legendary Cube", 'xlcu', "\e90c"), not sure if we can include dupes here
("Legendary Cube", 'xlcu', "\e90c"),
("Legendary Cube", 'pz1', "\e90c"),
("Magic Online", 'modo', "\e91b"),
("Magic Online", 'pmodo', "\e91b"),
@ -302,6 +306,7 @@ $mtg_setlist: (
// # The Unsets
("Unglued", 'ugl', "\e691"),
("Unhinged", 'unh', "\e692"),
("Unstable", 'ust', "\e930"),
// # Unofficial
("Collector's Edition", 'xcle', "\e926"),
("International Collector's Edition", 'xice', "\e927"),