mirror of
https://github.com/andrewgioia/keyrune.git
synced 2024-11-10 17:44:47 +00:00
This commit is contained in:
parent
4073ac89bb
commit
e9b4e2ef73
@ -11,6 +11,11 @@ All notable changes to this project will be documented in this file.
|
||||
|
||||
## 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!
|
||||
|
||||
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.
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Keyrune v3.7.0
|
||||
# Keyrune v3.7.1
|
||||
|
||||
## 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
|
||||
|
||||
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.
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "keyrune",
|
||||
"homepage": "http://keyrune.andrewgioia.com",
|
||||
"version": "3.7.0",
|
||||
"version": "3.7.1",
|
||||
"authors": [
|
||||
"Andrew Gioia <andrew@gioia.email>"
|
||||
],
|
||||
|
@ -2,8 +2,8 @@
|
||||
* Global */
|
||||
@font-face {
|
||||
font-family: 'Keyrune';
|
||||
src: url('../fonts/keyrune.eot?v=3.7.0');
|
||||
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?v=3.7.1');
|
||||
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-style: normal;
|
||||
}
|
||||
@ -553,10 +553,10 @@
|
||||
content: "\e963";
|
||||
}
|
||||
/* 2021 Sets */
|
||||
.ss-xkld:before {
|
||||
.ss-khm:before {
|
||||
content: "\e974";
|
||||
}
|
||||
.ss-xssm:before {
|
||||
.ss-stx:before {
|
||||
content: "\e975";
|
||||
}
|
||||
/**
|
||||
@ -1053,6 +1053,9 @@
|
||||
.ss-akr:before {
|
||||
content: "\e970";
|
||||
}
|
||||
.ss-klr:before {
|
||||
content: "\e97c";
|
||||
}
|
||||
/**
|
||||
* Un-serious */
|
||||
.ss-ugl: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 Width: | Height: | Size: 607 KiB After Width: | Height: | Size: 613 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -155,8 +155,8 @@
|
||||
.@{ss-prefix}-iko:before { content: "\e962"; } // Ikoria: Lair of Behemoths
|
||||
.@{ss-prefix}-znr:before { content: "\e963"; } // Zendikar Rising
|
||||
/* 2021 Sets */
|
||||
.@{ss-prefix}-xkld:before { content: "\e974"; } // Kaldheim
|
||||
.@{ss-prefix}-xssm:before { content: "\e975"; } // Strixhaven: School of Mages
|
||||
.@{ss-prefix}-khm:before { content: "\e974"; } // Kaldheim
|
||||
.@{ss-prefix}-stx:before { content: "\e975"; } // Strixhaven: School of Mages
|
||||
|
||||
/**
|
||||
* Command Zone */
|
||||
@ -372,6 +372,7 @@
|
||||
.@{ss-prefix}-pz2:before { content: "\e91f"; } // Treasure Chests
|
||||
.@{ss-prefix}-ha1:before { content: "\e96b"; } // Historic Anthology 1
|
||||
.@{ss-prefix}-akr:before { content: "\e970"; } // Amonkhet Remastered
|
||||
.@{ss-prefix}-klr:before { content: "\e97c"; } // Kaladesh Remastered
|
||||
|
||||
|
||||
/**
|
||||
|
@ -2,6 +2,6 @@
|
||||
* Global */
|
||||
|
||||
@ss-font-path: '../fonts';
|
||||
@ss-version: '3.7.0';
|
||||
@ss-version: '3.7.1';
|
||||
@ss-font-size-base: 14px;
|
||||
@ss-prefix: ss;
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "keyrune",
|
||||
"description": "Keyrune",
|
||||
"version": "3.7.0",
|
||||
"version": "3.7.1",
|
||||
"author": {
|
||||
"name": "Andrew Gioia",
|
||||
"email": "andrew@gioia.email",
|
||||
|
@ -1,7 +1,7 @@
|
||||
/**
|
||||
* Globals */
|
||||
|
||||
$keyrune_version: '3.7.0' !default;
|
||||
$keyrune_version: '3.7.1' !default;
|
||||
$keyrune_font_path: '../fonts' !default;
|
||||
|
||||
// font specific
|
||||
@ -210,8 +210,8 @@ $keyrune_sets: (
|
||||
("Ikoria: Lair of Behemoths", "iko", "\e962"),
|
||||
("Zendikar Rising", "znr", "\e963"),
|
||||
// 2021 sets
|
||||
("Kaldheim", "xkld", "\e974"),
|
||||
("Strixhaven: School of Mages", "xssm", "\e975"),
|
||||
("Kaldheim", "khm", "\e974"),
|
||||
("Strixhaven: School of Mages", "stx", "\e975"),
|
||||
//
|
||||
// Command zone
|
||||
("Vanguard", "van", "\e655"),
|
||||
@ -400,6 +400,7 @@ $keyrune_sets: (
|
||||
("Treasure Chests", "pz2", "\e91f"),
|
||||
("Historic Anthology 1", "ha1", "\e96b"),
|
||||
("Amonkhet Remastered", "akr", "\e970"),
|
||||
("Kaladesh Remastered", "klr", "\e97c"),
|
||||
//
|
||||
// Unsets
|
||||
("Unglued", "ugl", "\e691"),
|
||||
|
Loading…
Reference in New Issue
Block a user