Skip to content

Commit

Permalink
Adds DSC, J25, and Y25, as well as aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewgioia committed Oct 26, 2024
1 parent 34e3d3a commit 6b7f87b
Show file tree
Hide file tree
Showing 23 changed files with 836 additions and 667 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,19 @@ All notable changes to this project will be documented in this file.

## Versions

### [3.15.1]

#### Added

* Duskmourn Commander set symbol (DSC) (Uses changes from [#244](https://github.com/andrewgioia/keyrune/pull/244). There was an issue with the assets that made it easier just to manually pull them in, plus this version includes the multilayer style with inner layer handling.
* Alchemy 2025 (Y25) set symbol, with alias for Alchemy Bloomburror (YBLB) ([#231](https://github.com/andrewgioia/keyrune/issues/231))
* Jumpstart 2025 (J25) set symbol ([#236](https://github.com/andrewgioia/keyrune/issues/236)). This one suffers from most of the border adding to the set symbol itself and will be much better handled in v4, but for now we're shipping a "modified" version by default to convey the border as well as an alternate `.j25a` true to the rarity layer.

#### Fixed

* Moved FDN up to Core Sets in documentation
* BLB unicode corrected in icons documentation ([#244](https://github.com/andrewgioia/keyrune/pull/244))

### [3.15.0] 2024-08-21 FDN, DSK, and other fixes

Major thanks to @Horsty80 for the PR and patience! Thanks to @HeliumOctahelide as well for contributions.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Keyrune v3.15.0
# Keyrune v3.15.1

## The Magic: the Gathering set symbol font!

Expand Down
38 changes: 35 additions & 3 deletions css/keyrune.css
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@
content: "\e997";
color: #fff !important;
}
.ss-duo.ss-dsc::after {
content: "\e9de";
}
.ss-duo.ss-j21::after {
content: "\e984";
}
Expand Down Expand Up @@ -356,6 +359,9 @@
.ss-afr:before {
content: "\e972";
}
.ss-fdn:before {
content: "\e9d8";
}
/**
* Expansions */
/* Artifact Block */
Expand Down Expand Up @@ -708,9 +714,6 @@
.ss-dsk:before {
content: "\e9d7";
}
.ss-fdn:before {
content: "\e9d8";
}
/**
* Command Zone */
.ss-van:before {
Expand Down Expand Up @@ -859,6 +862,9 @@
.ss-m3c:before {
content: "\e9d0";
}
.ss-dsc:before {
content: "\e9dc";
}
/**
* Reprint */
.ss-chr:before {
Expand Down Expand Up @@ -954,6 +960,12 @@
.ss-mb2:before {
content: "\e9d9";
}
.ss-j25a:before {
content: "\e9db";
}
.ss-j25:before {
content: "\e9df";
}
/**
* Beginner */
.ss-por:before {
Expand Down Expand Up @@ -1364,6 +1376,10 @@
.ss-y24:before {
content: "\e9bd";
}
.ss-y25:before,
.ss-yblb:before {
content: "\e9da";
}
/**
* Un-serious */
.ss-ugl:before {
Expand Down Expand Up @@ -1485,3 +1501,19 @@
content: "\e996";
color: #000;
}
.ss-border.ss-dsc {
display: list-item;
list-style-position: inside;
}
.ss-border.ss-dsc.ss-fw {
text-align: revert !important;
}
.ss-border.ss-dsc::before {
position: absolute;
left: 0;
top: 0;
}
.ss-border.ss-dsc::marker {
content: "\e9dd";
color: #000;
}
38 changes: 35 additions & 3 deletions css/keyrune.min.css
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@
content: "\e997";
color: #fff !important;
}
.ss-duo.ss-dsc::after {
content: "\e9de";
}
.ss-duo.ss-j21::after {
content: "\e984";
}
Expand Down Expand Up @@ -356,6 +359,9 @@
.ss-afr:before {
content: "\e972";
}
.ss-fdn:before {
content: "\e9d8";
}
/**
* Expansions */
/* Artifact Block */
Expand Down Expand Up @@ -708,9 +714,6 @@
.ss-dsk:before {
content: "\e9d7";
}
.ss-fdn:before {
content: "\e9d8";
}
/**
* Command Zone */
.ss-van:before {
Expand Down Expand Up @@ -859,6 +862,9 @@
.ss-m3c:before {
content: "\e9d0";
}
.ss-dsc:before {
content: "\e9dc";
}
/**
* Reprint */
.ss-chr:before {
Expand Down Expand Up @@ -954,6 +960,12 @@
.ss-mb2:before {
content: "\e9d9";
}
.ss-j25a:before {
content: "\e9db";
}
.ss-j25:before {
content: "\e9df";
}
/**
* Beginner */
.ss-por:before {
Expand Down Expand Up @@ -1364,6 +1376,10 @@
.ss-y24:before {
content: "\e9bd";
}
.ss-y25:before,
.ss-yblb:before {
content: "\e9da";
}
/**
* Un-serious */
.ss-ugl:before {
Expand Down Expand Up @@ -1485,3 +1501,19 @@
content: "\e996";
color: #000;
}
.ss-border.ss-dsc {
display: list-item;
list-style-position: inside;
}
.ss-border.ss-dsc.ss-fw {
text-align: revert !important;
}
.ss-border.ss-dsc::before {
position: absolute;
left: 0;
top: 0;
}
.ss-border.ss-dsc::marker {
content: "\e9dd";
color: #000;
}
38 changes: 35 additions & 3 deletions docs/assets/keyrune.min.css
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@
content: "\e997";
color: #fff !important;
}
.ss-duo.ss-dsc::after {
content: "\e9de";
}
.ss-duo.ss-j21::after {
content: "\e984";
}
Expand Down Expand Up @@ -356,6 +359,9 @@
.ss-afr:before {
content: "\e972";
}
.ss-fdn:before {
content: "\e9d8";
}
/**
* Expansions */
/* Artifact Block */
Expand Down Expand Up @@ -708,9 +714,6 @@
.ss-dsk:before {
content: "\e9d7";
}
.ss-fdn:before {
content: "\e9d8";
}
/**
* Command Zone */
.ss-van:before {
Expand Down Expand Up @@ -859,6 +862,9 @@
.ss-m3c:before {
content: "\e9d0";
}
.ss-dsc:before {
content: "\e9dc";
}
/**
* Reprint */
.ss-chr:before {
Expand Down Expand Up @@ -954,6 +960,12 @@
.ss-mb2:before {
content: "\e9d9";
}
.ss-j25a:before {
content: "\e9db";
}
.ss-j25:before {
content: "\e9df";
}
/**
* Beginner */
.ss-por:before {
Expand Down Expand Up @@ -1364,6 +1376,10 @@
.ss-y24:before {
content: "\e9bd";
}
.ss-y25:before,
.ss-yblb:before {
content: "\e9da";
}
/**
* Un-serious */
.ss-ugl:before {
Expand Down Expand Up @@ -1485,3 +1501,19 @@
content: "\e996";
color: #000;
}
.ss-border.ss-dsc {
display: list-item;
list-style-position: inside;
}
.ss-border.ss-dsc.ss-fw {
text-align: revert !important;
}
.ss-border.ss-dsc::before {
position: absolute;
left: 0;
top: 0;
}
.ss-border.ss-dsc::marker {
content: "\e9dd";
color: #000;
}
6 changes: 6 additions & 0 deletions docs/cheatsheet.html
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ <h4>Icons, CSS Class, and Unicode</h4>
<span class="utf"><i>&#xe689;</i> ss-dpa <code>&amp;#xe689;</code></span>
<span class="utf"><i>&#xe678;</i> ss-drb <code>&amp;#xe678;</code></span>
<span class="utf"><i>&#xe616;</i> ss-drk <code>&amp;#xe616;</code></span>
<span class="utf"><i>&#xe9dc;</i> ss-dsc <code>&amp;#xe9dc;</code></span>
<span class="utf"><i>&#xe9d7;</i> ss-dsk <code>&amp;#xe9d7;</code></span>
<span class="utf"><i>&#xe632;</i> ss-dst <code>&amp;#xe632;</code></span>
<span class="utf"><i>&#xe693;</i> ss-dtk <code>&amp;#xe693;</code></span>
Expand Down Expand Up @@ -201,6 +202,7 @@ <h4>Icons, CSS Class, and Unicode</h4>
<span class="utf"><i>&#xe96a;</i> ss-j20 <code>&amp;#xe96a;</code></span>
<span class="utf"><i>&#xe983;</i> ss-j21 <code>&amp;#xe983;</code></span>
<span class="utf"><i>&#xe9ad;</i> ss-j22 <code>&amp;#xe9ad;</code></span>
<span class="utf"><i>&#xe9df;</i> ss-j25 <code>&amp;#xe9df;</code></span>
<span class="utf"><i>&#xe96f;</i> ss-jmp <code>&amp;#xe96f;</code></span>
<span class="utf"><i>&#xe652;</i> ss-jou <code>&amp;#xe652;</code></span>
<span class="utf"><i>&#xe62d;</i> ss-jud <code>&amp;#xe62d;</code></span>
Expand Down Expand Up @@ -361,6 +363,7 @@ <h4>Icons, CSS Class, and Unicode</h4>
<span class="utf"><i>&#xe92e;</i> ss-xln <code>&amp;#xe92e;</code></span>
<span class="utf"><i>&#xe989;</i> ss-y22 <code>&amp;#xe989;</code></span>
<span class="utf"><i>&#xe9bd;</i> ss-y24 <code>&amp;#xe9bd;</code></span>
<span class="utf"><i>&#xe9da;</i> ss-y25 <code>&amp;#xe9da;</code></span>
<span class="utf"><i>&#xe9a7;</i> ss-ydmu <code>&amp;#xe9a7;</code></span>
<span class="utf"><i>&#xe644;</i> ss-zen <code>&amp;#xe644;</code></span>
<span class="utf"><i>&#xe967;</i> ss-znc <code>&amp;#xe967;</code></span>
Expand All @@ -384,6 +387,7 @@ <h4>Icons, CSS Class, and Unicode</h4>
<span class="utf"><i>&#xe612;</i> ss-bcore <code>&amp;#xe612;</code></span>
<span class="utf"><i>&#xe687;</i> ss-htr <code>&amp;#xe687;</code></span>
<span class="utf"><i>&#xe687;</i> ss-htr17 <code>&amp;#xe687;</code></span>
<span class="utf"><i>&#xe9db;</i> ss-j25a <code>&amp;#xe9db;</code></span>
<span class="utf"><i>&#xe92a;</i> ss-papac <code>&amp;#xe92a;</code></span>
<span class="utf"><i>&#xe688;</i> ss-parl <code>&amp;#xe688;</code></span>
<span class="utf"><i>&#xe68c;</i> ss-parl2 <code>&amp;#xe68c;</code></span>
Expand Down Expand Up @@ -434,6 +438,8 @@ <h4>Icons, CSS Class, and Unicode</h4>
<span class="utf"><i>&#xe996;</i> dmc border <code>&amp;#xe996;</code></span>
<span class="utf"><i>&#xe995;</i> dmc inner <code>&amp;#xe995;</code></span>
<span class="utf"><i>&#xe997;</i> dmc white <code>&amp;#xe997;</code></span>
<span class="utf"><i>&#xe9dd;</i> dsc border <code>&amp;#xe9dd;</code></span>
<span class="utf"><i>&#xe9de;</i> dsc inner <code>&amp;#xe9de;</code></span>
<span class="utf"><i>&#xe984;</i> j21 border <code>&amp;#xe984;</code></span>
<span class="utf"><i>&#xe9c5;</i> khc rarity <code>&amp;#xe9c5;</code></span>
<span class="utf"><i>&#xe9c6;</i> khc inner <code>&amp;#xe9c6;</code></span>
Expand Down
Binary file modified docs/fonts/keyrune.eot
Binary file not shown.
Loading

0 comments on commit 6b7f87b

Please sign in to comment.