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! ## The Magic: the Gathering set symbol font!
@ -60,6 +60,8 @@ Attribution is **greatly appreciated** but not required!
## Changelog ## 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.3 - Adding new (correct) Archenemy: Nicol Bolas symbol with confirmed set code (e01)
* v3.0.2 - Fixing BRB path issue * v3.0.2 - Fixing BRB path issue
* v3.0.1 - Adding IDW Promo icon and clenaing up some core set icons * v3.0.1 - Adding IDW Promo icon and clenaing up some core set icons

View File

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

View File

@ -2,8 +2,8 @@
* Global */ * Global */
@font-face { @font-face {
font-family: 'Keyrune'; font-family: 'Keyrune';
src: url('../fonts/keyrune.eot?v=3.0.3'); src: url('../fonts/keyrune.eot?v=3.1.1');
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?#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-weight: normal;
font-style: normal; font-style: normal;
} }
@ -456,6 +456,13 @@
.ss-hou:before { .ss-hou:before {
content: "\e924"; content: "\e924";
} }
/* Ixalan Block */
.ss-xln:before {
content: "\e92e";
}
.ss-rix:before {
content: "\e92f";
}
/** /**
* Command Zone */ * Command Zone */
.ss-van:before { .ss-van:before {
@ -504,6 +511,9 @@
.ss-ann:before { .ss-ann:before {
content: "\e92d"; content: "\e92d";
} }
.ss-e02:before {
content: "\e931";
}
/** /**
* Reprint */ * Reprint */
.ss-chr:before { .ss-chr:before {
@ -777,6 +787,9 @@
.ss-unh:before { .ss-unh:before {
content: "\e692"; content: "\e692";
} }
.ss-ust:before {
content: "\e930";
}
/** /**
* Unofficial */ * Unofficial */
.ss-xcle:before { .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 */ /* Amonkhet Block */
.@{ss-prefix}-akh:before { content: "\e914"; } // Amonkhet .@{ss-prefix}-akh:before { content: "\e914"; } // Amonkhet
.@{ss-prefix}-hou:before { content: "\e924"; } // Hour of Devastation .@{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 */ * Command Zone */
@ -149,6 +152,7 @@
.@{ss-prefix}-cma:before { content: "\e916"; } // Commander Anthology .@{ss-prefix}-cma:before { content: "\e916"; } // Commander Anthology
.@{ss-prefix}-e01:before, .@{ss-prefix}-e01:before,
.@{ss-prefix}-ann:before { content: "\e92d"; } // Archenemy: Nicol Bolas .@{ss-prefix}-ann:before { content: "\e92d"; } // Archenemy: Nicol Bolas
.@{ss-prefix}-e02:before { content: "\e931"; } // Explorers of Ixalan
/** /**
* Reprint */ * Reprint */
@ -271,6 +275,7 @@
.@{ss-prefix}-ugl:before { content: "\e691"; } // Unglued .@{ss-prefix}-ugl:before { content: "\e691"; } // Unglued
.@{ss-prefix}-unh:before { content: "\e692"; } // Unhinged .@{ss-prefix}-unh:before { content: "\e692"; } // Unhinged
.@{ss-prefix}-ust:before { content: "\e930"; } // Unstable
/** /**

View File

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

View File

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

View File

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