mirror of
https://github.com/andrewgioia/keyrune.git
synced 2025-04-07 09:41:22 +00:00
Adding Commander 2018, updating DDT based on official source image
This commit is contained in:
parent
797004535a
commit
a5f94a2857
@ -1,4 +1,4 @@
|
|||||||
# Keyrune v3.2.2
|
# Keyrune v3.2.3
|
||||||
|
|
||||||
## The Magic: the Gathering set symbol font!
|
## The Magic: the Gathering set symbol font!
|
||||||
|
|
||||||
@ -60,6 +60,7 @@ Attribution is **greatly appreciated** but not required!
|
|||||||
|
|
||||||
## Changelog
|
## 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.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.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
|
* 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
|
## 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
|
* Update C18 with officially released source image
|
||||||
* Figure out what the Legendary Cube official set code is; currently using `xLCU`
|
* Validate all class names to handle official set codes, MODO codes, and MTGJson/community fallbacks
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "keyrune",
|
"name": "keyrune",
|
||||||
"homepage": "http://andrewgioia.github.io/Keyrune",
|
"homepage": "http://andrewgioia.github.io/Keyrune",
|
||||||
"version": "3.2.2",
|
"version": "3.2.3",
|
||||||
"authors": [
|
"authors": [
|
||||||
"Andrew Gioia <andrewgioia@gmail.com>"
|
"Andrew Gioia <andrewgioia@gmail.com>"
|
||||||
],
|
],
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
* Global */
|
* Global */
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Keyrune';
|
font-family: 'Keyrune';
|
||||||
src: url('../fonts/keyrune.eot?v=3.2.2');
|
src: url('../fonts/keyrune.eot?v=3.2.3');
|
||||||
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?#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-weight: normal;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
@ -530,6 +530,9 @@
|
|||||||
.ss-bbd:before {
|
.ss-bbd:before {
|
||||||
content: "\e942";
|
content: "\e942";
|
||||||
}
|
}
|
||||||
|
.ss-c18:before {
|
||||||
|
content: "\e946";
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Reprint */
|
* Reprint */
|
||||||
.ss-chr:before {
|
.ss-chr:before {
|
||||||
|
2
css/keyrune.min.css
vendored
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 (image error) Size: 398 KiB After (image error) Size: 399 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -159,6 +159,7 @@
|
|||||||
.@{ss-prefix}-c17:before { content: "\e934"; } // Commander 2017
|
.@{ss-prefix}-c17:before { content: "\e934"; } // Commander 2017
|
||||||
.@{ss-prefix}-cm2:before { content: "\e940"; } // Commander Anthology 2
|
.@{ss-prefix}-cm2:before { content: "\e940"; } // Commander Anthology 2
|
||||||
.@{ss-prefix}-bbd:before { content: "\e942"; } // Battlebond
|
.@{ss-prefix}-bbd:before { content: "\e942"; } // Battlebond
|
||||||
|
.@{ss-prefix}-c18:before { content: "\e946"; } // Commander 2018
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Reprint */
|
* Reprint */
|
||||||
|
@ -2,6 +2,6 @@
|
|||||||
* Global */
|
* Global */
|
||||||
|
|
||||||
@ss-font-path: '../fonts';
|
@ss-font-path: '../fonts';
|
||||||
@ss-version: '3.2.2';
|
@ss-version: '3.2.3';
|
||||||
@ss-font-size-base: 14px;
|
@ss-font-size-base: 14px;
|
||||||
@ss-prefix: ss;
|
@ss-prefix: ss;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "keyrune",
|
"name": "keyrune",
|
||||||
"description": "Keyrune",
|
"description": "Keyrune",
|
||||||
"version": "3.2.2",
|
"version": "3.2.3",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Andrew Gioia",
|
"name": "Andrew Gioia",
|
||||||
"email": "andrewgioia@gmail.com",
|
"email": "andrewgioia@gmail.com",
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
// _variables.scss
|
// _variables.scss
|
||||||
|
|
||||||
// #.
|
// #.
|
||||||
$keyrune_version: '3.2.2' !default;
|
$keyrune_version: '3.2.3' !default;
|
||||||
$keyrune_font_path: '../fonts' !default;
|
$keyrune_font_path: '../fonts' !default;
|
||||||
|
|
||||||
// #. Keyrune Font ==============================
|
// #. Keyrune Font ==============================
|
||||||
@ -215,6 +215,7 @@ $mtg_setlist: (
|
|||||||
("Commander 2017", 'c17', "\e934"),
|
("Commander 2017", 'c17', "\e934"),
|
||||||
("Commander Anthology 2", 'cm2', "\e940"),
|
("Commander Anthology 2", 'cm2', "\e940"),
|
||||||
("Battlebond", 'bbd', "\e942"),
|
("Battlebond", 'bbd', "\e942"),
|
||||||
|
("Commander 2018", 'c18', "\e946"),
|
||||||
// # Reprint Sets
|
// # Reprint Sets
|
||||||
("Chronicles", 'chr', "\e65e"),
|
("Chronicles", 'chr', "\e65e"),
|
||||||
("Anthologies", 'ath', "\e65f"),
|
("Anthologies", 'ath', "\e65f"),
|
||||||
|
Loading…
Reference in New Issue
Block a user