mirror of
https://github.com/andrewgioia/keyrune.git
synced 2024-11-14 03:14:47 +00:00
Adds MKM, MKC, and CLU code, icons in file to be added
This commit is contained in:
parent
b012e9db0d
commit
f8486dd79c
@ -11,6 +11,11 @@ All notable changes to this project will be documented in this file.
|
||||
|
||||
## Versions
|
||||
|
||||
### [3.14.0] 2024-03-02 Murders at Karlov Manner and the 2024 announced sets
|
||||
|
||||
* **Added:** Murders at Karlov Manor (MKM), MKM Commander (MKC), and Ravnica: Clue Edition (CLU) set symbols ([#223](https://github.com/andrewgioia/keyrune/issues/223))
|
||||
* **Added:** Outlaws of Thunder Junction (OTJ), OTJ Commander (OTC), Breaking News (OTP), The Big Score (BIG), Bloomburrow (BLB), BLB Commander (BLC), Universes Beyond: Assassin's Creed (ACR), Modern Horizons III (MH3), and MH3 Commander (M3C) ([#225](https://github.com/andrewgioia/keyrune/issues/225))
|
||||
|
||||
### [3.13.1] 2023-11-21 Fixes Sass division syntax
|
||||
|
||||
* **Merged:** Fix for Dart Sass 2.0.0 changes to division ([PR #221](https://github.com/andrewgioia/keyrune/pull/221)); thank you [@nogweii](https://github.com/nogweii)
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "keyrune",
|
||||
"homepage": "http://keyrune.andrewgioia.com",
|
||||
"version": "3.13.1",
|
||||
"version": "3.14.0",
|
||||
"authors": [
|
||||
"Andrew Gioia <andrew@gioia.email>"
|
||||
],
|
||||
|
@ -440,6 +440,9 @@
|
||||
<div class="icon" id="lci" name="Lost Caverns of Ixalan" data-name="Lost Caverns of Ixalan" data-class="lci" data-unicode="e9c2" data-added="v3.13.0">
|
||||
<span class="name"><i class="ss ss-lci"></i> Lost Caverns of Ixalan <em>(lci)</em></span>
|
||||
</div>
|
||||
<div class="icon" id="mkm" name="Murders at Karlov Manor" data-name="Murders at Karlov Manor" data-class="mkm" data-unicode="e9c9" data-added="v3.14.0">
|
||||
<span class="name"><i class="ss ss-mkm"></i> Murders at Karlov Manor <em>(mkm)</em></span>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="content">
|
||||
@ -580,6 +583,9 @@
|
||||
<div class="icon" id="lcc" name="Lost Caverns of Ixalan Commander" data-name="Lost Caverns of Ixalan Commander" data-class="lcc" data-unicode="e9c7" data-added="v3.13.0">
|
||||
<span class="name"><i class="ss ss-lcc"></i> Lost Caverns of Ixalan Commander <em>(lcc)</em></span>
|
||||
</div>
|
||||
<div class="icon" id="mkc" name="Murders at Karlov Manor Commander" data-name="Murders at Karlov Manor Commander" data-class="mkc" data-unicode="e9ca" data-added="v3.14.0">
|
||||
<span class="name"><i class="ss ss-mkc"></i> Murders at Karlov Manor Commander <em>(mkc)</em></span>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="content">
|
||||
@ -922,6 +928,9 @@
|
||||
<div class="icon" id="pip" name="Universes Beyond: Fallout" data-name="Universes Beyond: Fallout" data-class="pip" data-unicode="e9c3" data-added="v3.13.0">
|
||||
<span class="name"><i class="ss ss-pip"></i> UB: Fallout <em>(pip)</em></span>
|
||||
</div>
|
||||
<div class="icon" id="clu" name="Ravnica: Clue Edition" data-name="Ravnica: Clue Edition" data-class="clu" data-unicode="e9cb" data-added="v3.14.0">
|
||||
<span class="name"><i class="ss ss-clu"></i> Ravnica: Clue Edition <em>(clu)</em></span>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="content">
|
||||
|
@ -173,6 +173,8 @@
|
||||
.@{ss-prefix}-mat:before { content: "\e9a3"; } // March of the Machine: The Aftermath
|
||||
.@{ss-prefix}-woe:before { content: "\e9ae"; } // Wilds of Eldraine
|
||||
.@{ss-prefix}-lci:before { content: "\e9c2"; } // Lost Caverns of Ixalan
|
||||
/* 2024 Sets */
|
||||
.@{ss-prefix}-mkm:before { content: "\e9c9"; } // Murders at Karlov Manor
|
||||
|
||||
/**
|
||||
* Command Zone */
|
||||
@ -223,6 +225,7 @@
|
||||
.@{ss-prefix}-ltc:before { content: "\e9b6"; } // Lord of the Rings Commander
|
||||
.@{ss-prefix}-woc:before { content: "\e9b9"; } // Wilds of Eldraine Commander
|
||||
.@{ss-prefix}-lcc:before { content: "\e9c7"; } // Lost Caverns of Ixalan Commander
|
||||
.@{ss-prefix}-mkc:before { content: "\e9ca"; } // Murders at Karlov Manor Commander
|
||||
|
||||
/**
|
||||
* Reprint */
|
||||
@ -355,6 +358,7 @@
|
||||
.@{ss-prefix}-who:before { content: "\e9b0"; } // Universes Beyond: Doctor Who
|
||||
.@{ss-prefix}-rvr:before { content: "\e9bb"; } // Ravnica Remastered
|
||||
.@{ss-prefix}-pip:before { content: "\e9c3"; } // Universes Beyond: Fallout
|
||||
.@{ss-prefix}-clu:before { content: "\e9cb"; } // Ravnica: Clue Edition
|
||||
|
||||
/**
|
||||
* Promotional */
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "keyrune",
|
||||
"description": "Keyrune",
|
||||
"version": "3.13.1",
|
||||
"version": "3.14.0",
|
||||
"author": {
|
||||
"name": "Andrew Gioia",
|
||||
"email": "andrew@gioia.email",
|
||||
|
@ -239,6 +239,7 @@ $keyrune_sets: (
|
||||
("March of the Machine: The Aftermath", "mat", "\e9a3"),
|
||||
("Wilds of Eldraine", "woe", "\e9ae"),
|
||||
("Lost Caverns of Ixalan", "lci", "\e9c2"),
|
||||
("Murders at Karlov Manor", "mkm", "\e9c9"),
|
||||
//
|
||||
// Command zone
|
||||
("Vanguard", "van", "\e655"),
|
||||
@ -287,6 +288,7 @@ $keyrune_sets: (
|
||||
("The Lord of the Rings: Tales of Middle-Earth Commander", "ltc", "\e9b6"),
|
||||
("Wilds of Eldraine Commander", "woc", "\e9b9"),
|
||||
("Lost Caverns of Ixalan Commander", "lcc", "\e9c7"),
|
||||
("Murders at Karlov Manor Commander", "mkc", "\e9ca"),
|
||||
//
|
||||
// Reprint sets
|
||||
("Chronicles", "chr", "\e65e"),
|
||||
@ -401,6 +403,7 @@ $keyrune_sets: (
|
||||
("Universes Beyond: Doctor Who", "who", "\e9b0"),
|
||||
("Ravnica Remastered", "rvr", "\e9bb"),
|
||||
("Universes Beyond: Fallout", "pip", "\e9c3"),
|
||||
("Ravnica: Clue Edition", "clu", "\e9cb"),
|
||||
//
|
||||
// Promos
|
||||
("Guru", "pgru", "\e683"),
|
||||
|
Loading…
Reference in New Issue
Block a user