Adding Commander 2018, updating DDT based on official source image

This commit is contained in:
Andrew Gioia 2018-07-24 16:14:13 -04:00
parent 797004535a
commit a5f94a2857
13 changed files with 18 additions and 11 deletions

View File

@ -1,4 +1,4 @@
# Keyrune v3.2.2
# Keyrune v3.2.3
## The Magic: the Gathering set symbol font!
@ -60,6 +60,7 @@ Attribution is **greatly appreciated** but not required!
## Changelog
* v3.2.3 - Commander 2018 added, replaced DDT with official source image
* v3.2.2 - New MTGO Arena, Signature Series: Jace, and Global Series: Jiang Yanggu & Mu Yanling symbols added
* v3.2.1 - Official Dominaria symbol replaced for DOM, drawn BBD and M19 symbols added, fixed mixing DDS in scss version
* v3.2.0 - Dominaria and Commander Anthology 2 icons drawn from low-resolution versions
@ -122,5 +123,5 @@ Attribution is **greatly appreciated** but not required!
## Todo
* Update IMA, C17, and DDT from [Coming Soon](http://magic.wizards.com/en/game-info/products/coming-soon) product page after official high-res versions are released
* Figure out what the Legendary Cube official set code is; currently using `xLCU`
* Update C18 with officially released source image
* Validate all class names to handle official set codes, MODO codes, and MTGJson/community fallbacks

View File

@ -1,7 +1,7 @@
{
"name": "keyrune",
"homepage": "http://andrewgioia.github.io/Keyrune",
"version": "3.2.2",
"version": "3.2.3",
"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.2.2');
src: url('../fonts/keyrune.eot?#iefix&v=3.2.2') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=3.2.2') format('woff2'), url('../fonts/keyrune.woff?v=3.2.2') format('woff'), url('../fonts/keyrune.ttf?v=3.2.2') format('truetype'), url('../fonts/keyrune.svg?v=3.2.2#keyrune') format('svg');
src: url('../fonts/keyrune.eot?v=3.2.3');
src: url('../fonts/keyrune.eot?#iefix&v=3.2.3') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=3.2.3') format('woff2'), url('../fonts/keyrune.woff?v=3.2.3') format('woff'), url('../fonts/keyrune.ttf?v=3.2.3') format('truetype'), url('../fonts/keyrune.svg?v=3.2.3#keyrune') format('svg');
font-weight: normal;
font-style: normal;
}
@ -530,6 +530,9 @@
.ss-bbd:before {
content: "\e942";
}
.ss-c18:before {
content: "\e946";
}
/**
* Reprint */
.ss-chr: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: 398 KiB

After

Width:  |  Height:  |  Size: 399 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -159,6 +159,7 @@
.@{ss-prefix}-c17:before { content: "\e934"; } // Commander 2017
.@{ss-prefix}-cm2:before { content: "\e940"; } // Commander Anthology 2
.@{ss-prefix}-bbd:before { content: "\e942"; } // Battlebond
.@{ss-prefix}-c18:before { content: "\e946"; } // Commander 2018
/**
* Reprint */

View File

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

View File

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

View File

@ -1,7 +1,7 @@
// _variables.scss
// #.
$keyrune_version: '3.2.2' !default;
$keyrune_version: '3.2.3' !default;
$keyrune_font_path: '../fonts' !default;
// #. Keyrune Font ==============================
@ -215,6 +215,7 @@ $mtg_setlist: (
("Commander 2017", 'c17', "\e934"),
("Commander Anthology 2", 'cm2', "\e940"),
("Battlebond", 'bbd', "\e942"),
("Commander 2018", 'c18', "\e946"),
// # Reprint Sets
("Chronicles", 'chr', "\e65e"),
("Anthologies", 'ath', "\e65f"),