Fixing C17 and IMA icons to match official images, adding FNM and heart symbol on Phoenix Heart

This commit is contained in:
Andrew Gioia 2017-10-10 13:29:53 -04:00
parent 8871b8abbc
commit 748d4ac046
13 changed files with 24 additions and 11 deletions

View File

@ -1,4 +1,4 @@
# Keyrune v3.1.4
# Keyrune v3.1.5
## The Magic: the Gathering set symbol font!
@ -60,6 +60,7 @@ Attribution is **greatly appreciated** but not required!
## Changelog
* v3.1.5 - Updated IMA and C17 with official hi-res versions; added FNM as an unofficial symbol (pFNM) and the heart symbol on Phoenix Heart (pHEART)
* v3.1.4 - New icons for Iconic Masters (IMA), Commander 2017 (C17), and Merfolk vs. Goblins (DDT), based on low-res version from Coming Soon
* v3.1.3 - Correcting the set code for Dragon*Con
* v3.1.2 - Added Dragon*Con promo symbol for Nalathni Dragon

View File

@ -1,7 +1,7 @@
{
"name": "keyrune",
"homepage": "http://andrewgioia.github.io/Keyrune",
"version": "3.1.4",
"version": "3.1.5",
"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.1.4');
src: url('../fonts/keyrune.eot?#iefix&v=3.1.4') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=3.1.4') format('woff2'), url('../fonts/keyrune.woff?v=3.1.4') format('woff'), url('../fonts/keyrune.ttf?v=3.1.4') format('truetype'), url('../fonts/keyrune.svg?v=3.1.4#keyrune') format('svg');
src: url('../fonts/keyrune.eot?v=3.1.5');
src: url('../fonts/keyrune.eot?#iefix&v=3.1.5') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=3.1.5') format('woff2'), url('../fonts/keyrune.woff?v=3.1.5') format('woff'), url('../fonts/keyrune.ttf?v=3.1.5') format('truetype'), url('../fonts/keyrune.svg?v=3.1.5#keyrune') format('svg');
font-weight: normal;
font-style: normal;
}
@ -753,6 +753,9 @@
.ss-pdrc:before {
content: "\e932";
}
.ss-pheart:before {
content: "\e936";
}
/**
* Online */
.ss-med:before {
@ -822,6 +825,9 @@
.ss-peuro:before {
content: "\e92b";
}
.ss-pfnm:before {
content: "\e937";
}
.ss-border:after {
content: "";
position: absolute;

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: 354 KiB

After

Width:  |  Height:  |  Size: 373 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -254,6 +254,7 @@
.@{ss-prefix}-mp2:before { content: "\e922"; } // Amonkhet Invocations
.@{ss-prefix}-pidw:before { content: "\e92c"; } // IDW promo
.@{ss-prefix}-pdrc:before { content: "\e932"; } // Dragon*Con promo
.@{ss-prefix}-pheart:before { content: "\e936"; } // Phoenix Heart celebration
/**
* Online */
@ -291,3 +292,4 @@
.@{ss-prefix}-x4ea:before { content: "\e929"; } // Alternate 4th Edition
.@{ss-prefix}-papac:before { content: "\e92a"; } // APAC Lands
.@{ss-prefix}-peuro:before { content: "\e92b"; } // Euro Lands
.@{ss-prefix}-pfnm:before { content: "\e937"; } // Friday Night Magic

View File

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

View File

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

View File

@ -1,7 +1,7 @@
// _variables.scss
// #.
$keyrune_version: '3.1.4' !default;
$keyrune_version: '3.1.5' !default;
$keyrune_font_path: '../fonts' !default;
// #. Keyrune Font ==============================
@ -292,6 +292,7 @@ $mtg_setlist: (
("Amonkhet Invocations", 'mp2', "\e922"),
("IDW Promo", 'pidw', "\e92c"),
("Dragon*Con Promo", 'pdrc', "\e932"),
("Phoenix Heart Celebration", 'pheart', "\e936"),
// # Online Only
("Masters Edition", 'med', "\e68d"),
("Masters Edition II", 'me2', "\e68e"),
@ -317,5 +318,6 @@ $mtg_setlist: (
("Two Player Introductory Set", 'x2ps', "\e928"),
("Alternate 4th Edition", 'x4ea', "\e929"),
("APAC Lands", 'papac', "\e92a"),
("Euro Lands", 'peuro', "\e92b")
("Euro Lands", 'peuro', "\e92b"),
("Friday Night Magic", 'pfnm', "\e937")
) !default;