Skip to content

Commit

Permalink
3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ethantw committed Apr 30, 2015
1 parent 4540fea commit 99fa0d1
Show file tree
Hide file tree
Showing 18 changed files with 108 additions and 96 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
更新紀錄 CHANGELOG
===

v3.2.1(2015-5-1)
---
1. 修正繁體中文下,可懸掛標點後的標點擠壓問題
2. 更新fibre.js至v0.2.1(findAndReplaceDOMText v0.4.3)
3. 同上,字元査替器現已支援預設的文字邊界,故修正部分樣式規則
4. 暫時移除等寬字體基型@extend的漢字標點,避免Firefox將其顯示為比例字體

v3.2.0(2015-4-26)
---
1. 改進標點擠壓的處理方式,現已支援行首/行尾標點擠壓(#73
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Han",
"version": "3.2.0",
"version": "3.2.1",
"homepage": "http://css.hanzi.co/",
"authors": [
"Chen Yijun (@ethantw)"
Expand Down
9 changes: 7 additions & 2 deletions component.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Han",
"repo": "ethantw/Han",
"version": "3.2.0",
"version": "3.2.1",
"description": "The CSS typography framework optimised for Hanzi.",
"author": "Chen Yijun",
"keywords": [
Expand All @@ -13,6 +13,11 @@
],
"scripts": [ "dist/han.js" ],
"styles": [ "dist/han.css" ],
"fonts": [ "dist/font/han.woff", "dist/font/han.otf" ],
"fonts": [
"dist/font/han.woff",
"dist/font/han.otf",
"dist/font/han-space.woff",
"dist/font/han-space.otf"
],
"license": "MIT"
}
74 changes: 37 additions & 37 deletions dist/han.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/han.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* 漢字標準格式 v3.2.0 | MIT License | css.hanzi.co
* 漢字標準格式 v3.2.1 | MIT License | css.hanzi.co
* Han.css: the CSS typography framework optimised for Hanzi
*/

Expand All @@ -22,7 +22,7 @@ var root = document.documentElement

var body = document.body

var VERSION = '3.2.0'
var VERSION = '3.2.1'

var ROUTINE = [
// Initialise the condition with feature-detecting
Expand Down
4 changes: 2 additions & 2 deletions dist/han.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/han.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "han-css",
"version": "3.2.0",
"version": "3.2.1",
"description": "The CSS typography framework optimised for Hanzi",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/sass/var/_internal.sass
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// * be modified!
// *
$han-version: 'v3.2.0'
$han-version: 'v3.2.1'

$han-webfont: url(#{$han-font-path}han.woff?#{$han-version}) format('woff'), url(#{$han-font-path}han.otf?#{$han-version}) format('opentype') !default

Expand Down
2 changes: 1 addition & 1 deletion test/counter-han.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/em-han.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/generics-han.css

Large diffs are not rendered by default.

74 changes: 37 additions & 37 deletions test/han.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions test/han.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* 漢字標準格式 v3.2.0 | MIT License | css.hanzi.co
* 漢字標準格式 v3.2.1 | MIT License | css.hanzi.co
* Han.css: the CSS typography framework optimised for Hanzi
*/

Expand All @@ -22,7 +22,7 @@ var root = document.documentElement

var body = document.body

var VERSION = '3.2.0'
var VERSION = '3.2.1'

var ROUTINE = [
// Initialise the condition with feature-detecting
Expand Down
4 changes: 2 additions & 2 deletions test/han.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions test/han.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/ruby(ff)-han.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/test-commonjs.js

Large diffs are not rendered by default.

0 comments on commit 99fa0d1

Please sign in to comment.