diff --git a/README.md b/README.md index 8fa0694..e57512e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Keyrune v1.4.2 +# Keyrune v1.5 ## The Magic: the Gathering set symbol font! @@ -47,7 +47,8 @@ Attribution is **greatly appreciated** but not required! * v1.4.1 - Zendikar Expeditions added * v1.4.2 - Commander 2015 added * v1.4.3 - Beginning of white border add-on with .ss-border class; renamed font to Keyrune for desktop. +* v1.5.0 - Oath of the Gatewatch and Shadows Over Innistrad added ## Todo -* Add Oath of the Gatewatch +* Nothing yet! diff --git a/bower.json b/bower.json index fd694db..3414579 100644 --- a/bower.json +++ b/bower.json @@ -1,7 +1,7 @@ { "name": "keyrune", "homepage": "http://andrewgioia.github.io/Keyrune", - "version": "1.4.3", + "version": "1.5.0", "authors": [ "Andrew Gioia " ], diff --git a/css/keyrune.css b/css/keyrune.css index af941df..f853011 100755 --- a/css/keyrune.css +++ b/css/keyrune.css @@ -2,8 +2,8 @@ * Global */ @font-face { font-family: 'Keyrune'; - src: url('../fonts/keyrune.eot?v=1.4.3'); - src: url('../fonts/keyrune.eot?#iefix&v=1.4.3') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=1.4.3') format('woff2'), url('../fonts/keyrune.woff?v=1.4.3') format('woff'), url('../fonts/keyrune.ttf?v=1.4.3') format('truetype'), url('../fonts/keyrune.svg?v=1.4.3#keyrune') format('svg'); + src: url('../fonts/keyrune.eot?v=1.5'); + src: url('../fonts/keyrune.eot?#iefix&v=1.5') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=1.5') format('woff2'), url('../fonts/keyrune.woff?v=1.5') format('woff'), url('../fonts/keyrune.ttf?v=1.5') format('truetype'), url('../fonts/keyrune.svg?v=1.5#keyrune') format('svg'); font-weight: normal; font-style: normal; } @@ -394,6 +394,13 @@ .ss-bfz:before { content: "\e699"; } +.ss-ogw:before { + content: "\e901"; +} +/* Return to Innistrad Block */ +.ss-soi:before { + content: "\e902"; +} /** * Command Zone */ .ss-van:before { diff --git a/fonts/keyrune.eot b/fonts/keyrune.eot index e4ec553..07e3695 100755 Binary files a/fonts/keyrune.eot and b/fonts/keyrune.eot differ diff --git a/fonts/keyrune.svg b/fonts/keyrune.svg index 427613b..e005606 100755 --- a/fonts/keyrune.svg +++ b/fonts/keyrune.svg @@ -163,4 +163,6 @@ + + \ No newline at end of file diff --git a/fonts/keyrune.ttf b/fonts/keyrune.ttf index 548ac64..9d3fa23 100755 Binary files a/fonts/keyrune.ttf and b/fonts/keyrune.ttf differ diff --git a/fonts/keyrune.woff b/fonts/keyrune.woff index 9b2ba88..2ca7cc6 100755 Binary files a/fonts/keyrune.woff and b/fonts/keyrune.woff differ diff --git a/fonts/keyrune.woff2 b/fonts/keyrune.woff2 index 443beb3..465ca9b 100755 Binary files a/fonts/keyrune.woff2 and b/fonts/keyrune.woff2 differ diff --git a/less/icons.less b/less/icons.less index 48367c6..4022297 100644 --- a/less/icons.less +++ b/less/icons.less @@ -117,6 +117,9 @@ .@{ss-prefix}-dtk:before { content: "\e693"; } // Dragons of Tarkir /* Return to Zendikar Block */ .@{ss-prefix}-bfz:before { content: "\e699"; } // Battle for Zendikar +.@{ss-prefix}-ogw:before { content: "\e901"; } // Oath of the Gatewatch +/* Return to Innistrad Block */ +.@{ss-prefix}-soi:before { content: "\e902"; } // Shadows Over Innistrad /** * Command Zone */ diff --git a/less/variables.less b/less/variables.less index 4ea0f62..89b6840 100644 --- a/less/variables.less +++ b/less/variables.less @@ -2,6 +2,6 @@ * Global */ @ss-font-path: '../fonts'; -@ss-version: '1.4.3'; +@ss-version: '1.5'; @ss-font-size-base: 14px; @ss-prefix: ss;