Adds Kaladesh Remastered symbol (#151), fixes set codes for Kaldheim and Strixhaven (#149)

This commit is contained in:
Andrew Gioia 2020-12-11 15:17:57 -05:00
parent 4073ac89bb
commit e9b4e2ef73
14 changed files with 29 additions and 18 deletions

View File

@ -11,6 +11,11 @@ All notable changes to this project will be documented in this file.
## Versions ## Versions
### [3.7.1] 2020-12-11 Kaladesh Remastered
* **Added:** Kaladesh Remastered (KLR) ([#151](https://github.com/andrewgioia/keyrune/issues/151))
* **Fixed:** Set codes for Kaldheim (KHM) and Strixhaven (STX) are now official ([#149](https://github.com/andrewgioia/keyrune/issues/149))
### [3.7.0] 2020-09-02 2021 symbols and new dual-layered support! ### [3.7.0] 2020-09-02 2021 symbols and new dual-layered support!
This is a big update with all of the recently announced 2021 sets (major thanks to @csuhta and @scryfall). This also begins support for the dual-layered symbols (like M21, though that hasn't been fixed yet) where the border and fill are 2 separate layers. This is a big update with all of the recently announced 2021 sets (major thanks to @csuhta and @scryfall). This also begins support for the dual-layered symbols (like M21, though that hasn't been fixed yet) where the border and fill are 2 separate layers.

View File

@ -1,4 +1,4 @@
# Keyrune v3.7.0 # Keyrune v3.7.1
## The Magic: the Gathering set symbol font! ## The Magic: the Gathering set symbol font!
@ -54,4 +54,4 @@ All set symbol images are trademarks of Wizards of the Coast ([http://magicthega
## Changelog ## Changelog
The Changelog and todo items have been moved to a dedicated file, CHANGELOG.md. The Changelog and todo items have been moved to a dedicated file, CHANGELOG.md.

View File

@ -1,7 +1,7 @@
{ {
"name": "keyrune", "name": "keyrune",
"homepage": "http://keyrune.andrewgioia.com", "homepage": "http://keyrune.andrewgioia.com",
"version": "3.7.0", "version": "3.7.1",
"authors": [ "authors": [
"Andrew Gioia <andrew@gioia.email>" "Andrew Gioia <andrew@gioia.email>"
], ],

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.7.0'); src: url('../fonts/keyrune.eot?v=3.7.1');
src: url('../fonts/keyrune.eot?#iefix&v=3.7.0') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=3.7.0') format('woff2'), url('../fonts/keyrune.woff?v=3.7.0') format('woff'), url('../fonts/keyrune.ttf?v=3.7.0') format('truetype'), url('../fonts/keyrune.svg?v=3.7.0#keyrune') format('svg'); src: url('../fonts/keyrune.eot?#iefix&v=3.7.1') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=3.7.1') format('woff2'), url('../fonts/keyrune.woff?v=3.7.1') format('woff'), url('../fonts/keyrune.ttf?v=3.7.1') format('truetype'), url('../fonts/keyrune.svg?v=3.7.1#keyrune') format('svg');
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
} }
@ -553,10 +553,10 @@
content: "\e963"; content: "\e963";
} }
/* 2021 Sets */ /* 2021 Sets */
.ss-xkld:before { .ss-khm:before {
content: "\e974"; content: "\e974";
} }
.ss-xssm:before { .ss-stx:before {
content: "\e975"; content: "\e975";
} }
/** /**
@ -1053,6 +1053,9 @@
.ss-akr:before { .ss-akr:before {
content: "\e970"; content: "\e970";
} }
.ss-klr:before {
content: "\e97c";
}
/** /**
* Un-serious */ * Un-serious */
.ss-ugl:before { .ss-ugl: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: 607 KiB

After

Width:  |  Height:  |  Size: 613 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -155,8 +155,8 @@
.@{ss-prefix}-iko:before { content: "\e962"; } // Ikoria: Lair of Behemoths .@{ss-prefix}-iko:before { content: "\e962"; } // Ikoria: Lair of Behemoths
.@{ss-prefix}-znr:before { content: "\e963"; } // Zendikar Rising .@{ss-prefix}-znr:before { content: "\e963"; } // Zendikar Rising
/* 2021 Sets */ /* 2021 Sets */
.@{ss-prefix}-xkld:before { content: "\e974"; } // Kaldheim .@{ss-prefix}-khm:before { content: "\e974"; } // Kaldheim
.@{ss-prefix}-xssm:before { content: "\e975"; } // Strixhaven: School of Mages .@{ss-prefix}-stx:before { content: "\e975"; } // Strixhaven: School of Mages
/** /**
* Command Zone */ * Command Zone */
@ -372,6 +372,7 @@
.@{ss-prefix}-pz2:before { content: "\e91f"; } // Treasure Chests .@{ss-prefix}-pz2:before { content: "\e91f"; } // Treasure Chests
.@{ss-prefix}-ha1:before { content: "\e96b"; } // Historic Anthology 1 .@{ss-prefix}-ha1:before { content: "\e96b"; } // Historic Anthology 1
.@{ss-prefix}-akr:before { content: "\e970"; } // Amonkhet Remastered .@{ss-prefix}-akr:before { content: "\e970"; } // Amonkhet Remastered
.@{ss-prefix}-klr:before { content: "\e97c"; } // Kaladesh Remastered
/** /**

View File

@ -2,6 +2,6 @@
* Global */ * Global */
@ss-font-path: '../fonts'; @ss-font-path: '../fonts';
@ss-version: '3.7.0'; @ss-version: '3.7.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.7.0", "version": "3.7.1",
"author": { "author": {
"name": "Andrew Gioia", "name": "Andrew Gioia",
"email": "andrew@gioia.email", "email": "andrew@gioia.email",

View File

@ -1,7 +1,7 @@
/** /**
* Globals */ * Globals */
$keyrune_version: '3.7.0' !default; $keyrune_version: '3.7.1' !default;
$keyrune_font_path: '../fonts' !default; $keyrune_font_path: '../fonts' !default;
// font specific // font specific
@ -210,8 +210,8 @@ $keyrune_sets: (
("Ikoria: Lair of Behemoths", "iko", "\e962"), ("Ikoria: Lair of Behemoths", "iko", "\e962"),
("Zendikar Rising", "znr", "\e963"), ("Zendikar Rising", "znr", "\e963"),
// 2021 sets // 2021 sets
("Kaldheim", "xkld", "\e974"), ("Kaldheim", "khm", "\e974"),
("Strixhaven: School of Mages", "xssm", "\e975"), ("Strixhaven: School of Mages", "stx", "\e975"),
// //
// Command zone // Command zone
("Vanguard", "van", "\e655"), ("Vanguard", "van", "\e655"),
@ -400,6 +400,7 @@ $keyrune_sets: (
("Treasure Chests", "pz2", "\e91f"), ("Treasure Chests", "pz2", "\e91f"),
("Historic Anthology 1", "ha1", "\e96b"), ("Historic Anthology 1", "ha1", "\e96b"),
("Amonkhet Remastered", "akr", "\e970"), ("Amonkhet Remastered", "akr", "\e970"),
("Kaladesh Remastered", "klr", "\e97c"),
// //
// Unsets // Unsets
("Unglued", "ugl", "\e691"), ("Unglued", "ugl", "\e691"),