Fixes readme version number and pushes some old changes up

This commit is contained in:
Andrew Gioia 2020-10-05 15:33:58 -04:00
parent 2afc3cab10
commit 6cb7a09bd4
9 changed files with 16 additions and 12 deletions

View File

@ -11,6 +11,10 @@ All notable changes to this project will be documented in this file.
## Versions ## Versions
### [1.9.3] 2020-09-23 Corrects evergreen class name
* **Fixed:** It's not evergreen abilities that get colorized in Arena, it's set-specific mechanics/abilities. The class name is corrected to be `.ms-mechanic`.
### [1.9.2] 2020-09-23 Adds evergreen color support ### [1.9.2] 2020-09-23 Adds evergreen color support
* **Added:** Class `.ms-evergreen` on ability symbols will apply the gold gradient effect in Arena. * **Added:** Class `.ms-evergreen` on ability symbols will apply the gold gradient effect in Arena.

View File

@ -1,4 +1,4 @@
# Mana v1.9.2 # Mana v1.9.3
## The Magic: the Gathering mana symbol font! ## The Magic: the Gathering mana symbol font!

View File

@ -1,14 +1,14 @@
@font-face { @font-face {
font-family: 'Mana'; font-family: 'Mana';
src: url('../fonts/mana.eot?v=1.9.1'); src: url('../fonts/mana.eot?v=1.9.3');
src: url('../fonts/mana.eot?#iefix&v=1.9.1') format('embedded-opentype'), url('../fonts/mana.woff?v=1.9.1') format('woff'), url('../fonts/mana.ttf?v=1.9.1') format('truetype'), url('../fonts/mana.svg?v=1.9.1#mana') format('svg'); src: url('../fonts/mana.eot?#iefix&v=1.9.3') format('embedded-opentype'), url('../fonts/mana.woff?v=1.9.3') format('woff'), url('../fonts/mana.ttf?v=1.9.3') format('truetype'), url('../fonts/mana.svg?v=1.9.3#mana') format('svg');
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
} }
@font-face { @font-face {
font-family: 'MPlantin'; font-family: 'MPlantin';
src: url('../fonts/mplantin.eot?v=1.9.1'); src: url('../fonts/mplantin.eot?v=1.9.3');
src: url('../fonts/mplantin.eot?#iefix&v=1.9.1') format('embedded-opentype'), url('../fonts/mplantin.woff?v=1.9.1') format('woff'), url('../fonts/mplantin.ttf?v=1.9.1') format('truetype'), url('../fonts/mplantin.svg?v=1.9.1#mplantin') format('svg'); src: url('../fonts/mplantin.eot?#iefix&v=1.9.3') format('embedded-opentype'), url('../fonts/mplantin.woff?v=1.9.3') format('woff'), url('../fonts/mplantin.ttf?v=1.9.3') format('truetype'), url('../fonts/mplantin.svg?v=1.9.3#mplantin') format('svg');
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
} }
@ -1318,7 +1318,7 @@ span.ms-half > .ms-cost {
-webkit-background-clip: text; -webkit-background-clip: text;
-webkit-text-fill-color: transparent; -webkit-text-fill-color: transparent;
} }
.ms-evergreen { .ms-mechanic {
background: linear-gradient(0deg, #c8913b 0%, #ecc65a 100%); background: linear-gradient(0deg, #c8913b 0%, #ecc65a 100%);
-webkit-background-clip: text; -webkit-background-clip: text;
-webkit-text-fill-color: transparent; -webkit-text-fill-color: transparent;

2
css/mana.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -1,5 +1,5 @@
// evergreen ability coloring // evergreen ability coloring
.@{ms-prefix}-evergreen { .@{ms-prefix}-mechanic {
background: @ms-ability-grad; background: @ms-ability-grad;
-webkit-background-clip: text; -webkit-background-clip: text;
-webkit-text-fill-color: transparent; -webkit-text-fill-color: transparent;

View File

@ -1,6 +1,6 @@
// base variables // base variables
@ms-font-path: '../fonts'; @ms-font-path: '../fonts';
@ms-version: '1.9.2'; @ms-version: '1.9.3';
@ms-font-size-base: 14px; @ms-font-size-base: 14px;
@ms-prefix: ms; @ms-prefix: ms;
@ms-serif-font: MPlantin, Garamond, Palatino, 'Times New Roman', Times, serif; @ms-serif-font: MPlantin, Garamond, Palatino, 'Times New Roman', Times, serif;

View File

@ -1,6 +1,6 @@
{ {
"name": "mana-font", "name": "mana-font",
"version": "1.9.2", "version": "1.9.3",
"description": "Magic: the Gathering mana symbol pictographic font", "description": "Magic: the Gathering mana symbol pictographic font",
"main": "css/mana.css", "main": "css/mana.css",
"repository": { "repository": {

View File

@ -1,4 +1,4 @@
.#{$ms-prefix}-evergreen { .#{$ms-prefix}-mechanic {
background: $ms-ability-grad; background: $ms-ability-grad;
-webkit-background-clip: text; -webkit-background-clip: text;
-webkit-text-fill-color: transparent; -webkit-text-fill-color: transparent;

View File

@ -1,6 +1,6 @@
// base variables // base variables
$ms-font-path: '../fonts' !default; $ms-font-path: '../fonts' !default;
$ms-version: '1.9.2' !default; $ms-version: '1.9.3' !default;
$ms-font-size-base: 14px !default; $ms-font-size-base: 14px !default;
$ms-prefix: ms !default; $ms-prefix: ms !default;
$ms-serif-font: 'MPlantin, Garamond, Palatino, 'Times New Roman', Times, serif' !default; $ms-serif-font: 'MPlantin, Garamond, Palatino, 'Times New Roman', Times, serif' !default;