mirror of
https://github.com/andrewgioia/keyrune.git
synced 2024-10-31 23:04:46 +00:00
Assigning existing promo icon to now-added Heroes 2016 promo set
This commit is contained in:
parent
8b11bb8a9a
commit
bbe598270d
@ -1,4 +1,4 @@
|
|||||||
# Keyrune v3.2.4
|
# Keyrune v3.2.5
|
||||||
|
|
||||||
## The Magic: the Gathering set symbol font!
|
## The Magic: the Gathering set symbol font!
|
||||||
|
|
||||||
@ -54,6 +54,7 @@ All set symbol images are trademarks of Wizards of the Coast ([http://magicthega
|
|||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
* v3.2.4 - Assigning pMEI to now added 2016 Heroes promo set
|
||||||
* v3.2.4 - Gatherer-style ABUR symbols added
|
* v3.2.4 - Gatherer-style ABUR symbols added
|
||||||
* v3.2.3 - Commander 2018 added, replaced DDT with official source image
|
* 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
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "keyrune",
|
"name": "keyrune",
|
||||||
"homepage": "http://andrewgioia.github.io/Keyrune",
|
"homepage": "http://andrewgioia.github.io/Keyrune",
|
||||||
"version": "3.2.4",
|
"version": "3.2.5",
|
||||||
"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.4');
|
src: url('../fonts/keyrune.eot?v=3.2.5');
|
||||||
src: url('../fonts/keyrune.eot?#iefix&v=3.2.4') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=3.2.4') format('woff2'), url('../fonts/keyrune.woff?v=3.2.4') format('woff'), url('../fonts/keyrune.ttf?v=3.2.4') format('truetype'), url('../fonts/keyrune.svg?v=3.2.4#keyrune') format('svg');
|
src: url('../fonts/keyrune.eot?#iefix&v=3.2.5') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=3.2.5') format('woff2'), url('../fonts/keyrune.woff?v=3.2.5') format('woff'), url('../fonts/keyrune.ttf?v=3.2.5') format('truetype'), url('../fonts/keyrune.svg?v=3.2.5#keyrune') format('svg');
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
@ -818,6 +818,9 @@
|
|||||||
.ss-parl3:before {
|
.ss-parl3:before {
|
||||||
content: "\e943";
|
content: "\e943";
|
||||||
}
|
}
|
||||||
|
.ss-htr:before {
|
||||||
|
content: "\e687";
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Online */
|
* Online */
|
||||||
.ss-med:before {
|
.ss-med:before {
|
||||||
|
2
css/keyrune.min.css
vendored
2
css/keyrune.min.css
vendored
File diff suppressed because one or more lines are too long
@ -283,6 +283,7 @@
|
|||||||
.@{ss-prefix}-psega:before { content: "\e93b"; } // Sega Dreamcast
|
.@{ss-prefix}-psega:before { content: "\e93b"; } // Sega Dreamcast
|
||||||
.@{ss-prefix}-ptsa:before { content: "\e93c"; } // The Sorcerer's Apprentice
|
.@{ss-prefix}-ptsa:before { content: "\e93c"; } // The Sorcerer's Apprentice
|
||||||
.@{ss-prefix}-parl3:before { content: "\e943"; } // MTGO Arena
|
.@{ss-prefix}-parl3:before { content: "\e943"; } // MTGO Arena
|
||||||
|
.@{ss-prefix}-htr:before { content: "\e687"; } // 2016 Heroes of the Realm
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Online */
|
* Online */
|
||||||
|
@ -2,6 +2,6 @@
|
|||||||
* Global */
|
* Global */
|
||||||
|
|
||||||
@ss-font-path: '../fonts';
|
@ss-font-path: '../fonts';
|
||||||
@ss-version: '3.2.4';
|
@ss-version: '3.2.5';
|
||||||
@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.4",
|
"version": "3.2.5",
|
||||||
"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.4' !default;
|
$keyrune_version: '3.2.5' !default;
|
||||||
$keyrune_font_path: '../fonts' !default;
|
$keyrune_font_path: '../fonts' !default;
|
||||||
|
|
||||||
// #. Keyrune Font ==============================
|
// #. Keyrune Font ==============================
|
||||||
@ -315,6 +315,7 @@ $mtg_setlist: (
|
|||||||
("Sega Dreamcast", 'psega', "\e93b"),
|
("Sega Dreamcast", 'psega', "\e93b"),
|
||||||
("The Sorcerer's Apprentice", 'ptsa', "\e93c"),
|
("The Sorcerer's Apprentice", 'ptsa', "\e93c"),
|
||||||
("Arena (MTGO)", 'parl3', "\e943"),
|
("Arena (MTGO)", 'parl3', "\e943"),
|
||||||
|
("2016 Heroes of the Realm", 'htr', "\e687"),
|
||||||
// # Online Only
|
// # Online Only
|
||||||
("Masters Edition", 'med', "\e68d"),
|
("Masters Edition", 'med', "\e68d"),
|
||||||
("Masters Edition II", 'me2', "\e68e"),
|
("Masters Edition II", 'me2', "\e68e"),
|
||||||
|
Loading…
Reference in New Issue
Block a user