Adds symbols for NEO, UNF, and Y22

This commit is contained in:
Andrew Gioia 2022-01-28 13:46:18 -05:00
parent 338a24a0d1
commit f12e17e84a
13 changed files with 44 additions and 18 deletions

View File

@ -11,6 +11,12 @@ All notable changes to this project will be documented in this file.
## Versions
### [3.9.0] 2022-01-26 Kamigawa: Neon Dynasty, Unfinity, and Alchemy 2022
* **Added:** Kamigawa, Neon Dynasty (NEO) set symbol ([#178](https://github.com/andrewgioia/keyrune/issues/178))
* **Added:** Unfinity (UNF) set symbol ([#175](https://github.com/andrewgioia/keyrune/issues/175))
* **Added:** Alchemy 2022 (Y22) set symbol ([#176](https://github.com/andrewgioia/keyrune/issues/176))
### [3.8.4] 2021-11-12 Innistrad sets and cleanup
* **Added:** Innistrad: Midnight Hunt Commander (MIC) set symbol ([#167](https://github.com/andrewgioia/keyrune/issues/167))

View File

@ -1,4 +1,4 @@
# Keyrune v3.8.4
# Keyrune v3.9.0
## The Magic: the Gathering set symbol font!

View File

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

View File

@ -2,8 +2,8 @@
* Global */
@font-face {
font-family: 'Keyrune';
src: url('../fonts/keyrune.eot?v=3.8.4');
src: url('../fonts/keyrune.eot?#iefix&v=3.8.4') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=3.8.4') format('woff2'), url('../fonts/keyrune.woff?v=3.8.4') format('woff'), url('../fonts/keyrune.ttf?v=3.8.4') format('truetype'), url('../fonts/keyrune.svg?v=3.8.4#keyrune') format('svg');
src: url('../fonts/keyrune.eot?v=3.9.0');
src: url('../fonts/keyrune.eot?#iefix&v=3.9.0') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=3.9.0') format('woff2'), url('../fonts/keyrune.woff?v=3.9.0') format('woff'), url('../fonts/keyrune.ttf?v=3.9.0') format('truetype'), url('../fonts/keyrune.svg?v=3.9.0#keyrune') format('svg');
font-weight: normal;
font-style: normal;
}
@ -602,6 +602,10 @@
.ss-vow:before {
content: "\e977";
}
/* 2022 Sets */
.ss-neo:before {
content: "\e98c";
}
/**
* Command Zone */
.ss-van:before {
@ -1117,6 +1121,9 @@
.ss-klr:before {
content: "\e97c";
}
.ss-y22:before {
content: "\e989";
}
/**
* Un-serious */
.ss-ugl:before {
@ -1131,6 +1138,9 @@
.ss-und:before {
content: "\e96c";
}
.ss-unf:before {
content: "\e98a";
}
/**
* Unofficial */
.ss-xcle:before {

Binary file not shown.

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 652 KiB

After

Width:  |  Height:  |  Size: 667 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -160,8 +160,10 @@
.@{ss-prefix}-khm:before { content: "\e974"; } // Kaldheim
.@{ss-prefix}-xssm:before,
.@{ss-prefix}-stx:before { content: "\e975"; } // Strixhaven: School of Mages
.@{ss-prefix}-mid:before { content: "\e978"; } // Innistrad Werewolves (inner)
.@{ss-prefix}-vow:before { content: "\e977"; } // Innistrad Vampires
.@{ss-prefix}-mid:before { content: "\e978"; } // Innistrad: Midnight Hunt
.@{ss-prefix}-vow:before { content: "\e977"; } // Innistrad: Crimson Vow
/* 2022 Sets */
.@{ss-prefix}-neo:before { content: "\e98c"; } // Kamigawa: Neon Dynasty
/**
* Command Zone */
@ -384,6 +386,7 @@
.@{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
.@{ss-prefix}-y22:before { content: "\e989"; } // Alchemy 2022
/**
@ -393,6 +396,7 @@
.@{ss-prefix}-unh:before { content: "\e692"; } // Unhinged
.@{ss-prefix}-ust:before { content: "\e930"; } // Unstable
.@{ss-prefix}-und:before { content: "\e96c"; } // Unsanctioned
.@{ss-prefix}-unf:before { content: "\e98a"; } // Unfinity
/**

View File

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

View File

@ -1,7 +1,7 @@
{
"name": "keyrune",
"description": "Keyrune",
"version": "3.8.4",
"version": "3.9.0",
"author": {
"name": "Andrew Gioia",
"email": "andrew@gioia.email",
@ -32,7 +32,8 @@
"sass": "sass sass/keyrune.scss css/keyrune.css --style=expanded",
"sassmin": "sass sass/keyrune.scss css/keyrune.css --style=compressed",
"watch": "sass --no-source-map --watch sass/keyrune.scss css/keyrune.css --style=expanded",
"build": "cp fonts/* docs/fonts && cp css/keyrune.min.css docs/assets/keyrune.min.css"
"build": "cp fonts/* docs/fonts && cp css/keyrune.min.css docs/assets/keyrune.min.css",
"rename": "for f in `find fonts/*`; do mv -v \"$f\" \"`echo $f | tr '[A-Z]' '[a-z]'`\"; done"
},
"ignore": [
"*/.*",

View File

@ -1,7 +1,7 @@
/**
* Globals */
$keyrune_version: '3.8.4' !default;
$keyrune_version: '3.9.0' !default;
$keyrune_font_path: '../fonts' !default;
// font specific
@ -219,6 +219,8 @@ $keyrune_sets: (
("Strixhaven: School of Mages", "stx", "\e975"),
("Innistrad: Midnight Hunt", "mid", "\e978"),
("Innistrad: Crimson Vow", "vow", "\e977"),
// 2022 sets
("Kamigawa: Neon Dynasty", "neo", "\e98c"),
//
// Command zone
("Vanguard", "van", "\e655"),