Skip to content

Commit

Permalink
Releases v1.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
pandao committed May 9, 2015
1 parent eb2b3c4 commit 200fb88
Show file tree
Hide file tree
Showing 18 changed files with 35 additions and 30 deletions.
7 changes: 6 additions & 1 deletion CHANGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -447,4 +447,9 @@ v1.2.0 主要更新:
- 新增配置项 `autoCloseBrackets` 和 `showTrailingSpace` ;
- 新增配置项 `matchBrackets`、`indentWithTabs` 和 `styleSelectedText`;
- 改进:修改 CSS `font-family`,改进跨平台中英文字体显示;
- 修改了 `README.md`
- 修改了 `README.md`

####v1.4.4

- 修复 Bug [#81](https://github.com/pandao/editor.md/issues/81),即不支持 `:+1:` 的问题;
- 修复 Bug [#85](https://github.com/pandao/editor.md/issues/85),即图片上传返回结果不支持 `Content-Type=application/json` 的问题;
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "editor.md",
"version": "1.4.3",
"version": "1.4.4",
"homepage": "https://github.com/pandao/editor.md",
"authors": [
"Pandao <[email protected]>"
Expand Down
4 changes: 2 additions & 2 deletions css/editormd.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
* Editor.md
*
* @file editormd.css
* @version v1.4.3
* @version v1.4.4
* @description Open source online markdown editor.
* @license MIT License
* @author Pandao
* {@link https://github.com/pandao/editor.md}
* @updateTime 2015-05-05
* @updateTime 2015-05-09
*/

@charset "UTF-8";
Expand Down
4 changes: 2 additions & 2 deletions css/editormd.logo.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
* Editor.md
*
* @file editormd.logo.css
* @version v1.4.3
* @version v1.4.4
* @description Open source online markdown editor.
* @license MIT License
* @author Pandao
* {@link https://github.com/pandao/editor.md}
* @updateTime 2015-05-05
* @updateTime 2015-05-09
*/

/*! prefixes.scss v0.1.0 | Author: Pandao | https://github.com/pandao/prefixes.scss | MIT license | Copyright (c) 2015 */
Expand Down
2 changes: 1 addition & 1 deletion css/editormd.logo.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/editormd.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions css/editormd.preview.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
* Editor.md
*
* @file editormd.preview.css
* @version v1.4.3
* @version v1.4.4
* @description Open source online markdown editor.
* @license MIT License
* @author Pandao
* {@link https://github.com/pandao/editor.md}
* @updateTime 2015-05-05
* @updateTime 2015-05-09
*/

@charset "UTF-8";
Expand Down
2 changes: 1 addition & 1 deletion css/editormd.preview.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions editormd.amd.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
* Editor.md
*
* @file editormd.amd.js
* @version v1.4.3
* @version v1.4.4
* @description Open source online markdown editor.
* @license MIT License
* @author Pandao
* {@link https://github.com/pandao/editor.md}
* @updateTime 2015-05-06
* @updateTime 2015-05-09
*/

;(function(factory) {
Expand Down Expand Up @@ -129,7 +129,7 @@
};

editormd.title = editormd.$name = "Editor.md";
editormd.version = "1.4.3";
editormd.version = "1.4.4";
editormd.homePage = "https://pandao.github.io/editor.md/";
editormd.classPrefix = "editormd-";

Expand Down
4 changes: 2 additions & 2 deletions editormd.amd.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions editormd.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
* Editor.md
*
* @file editormd.js
* @version v1.4.3
* @version v1.4.4
* @description Open source online markdown editor.
* @license MIT License
* @author Pandao
* {@link https://github.com/pandao/editor.md}
* @updateTime 2015-05-06
* @updateTime 2015-05-09
*/

;(function(factory) {
Expand Down Expand Up @@ -59,7 +59,7 @@
};

editormd.title = editormd.$name = "Editor.md";
editormd.version = "1.4.3";
editormd.version = "1.4.4";
editormd.homePage = "https://pandao.github.io/editor.md/";
editormd.classPrefix = "editormd-";

Expand Down
4 changes: 2 additions & 2 deletions editormd.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions examples/php/upload.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Copyright@2015 Editor.md all right reserved.
*/

header("Content-Type:text/html; charset=utf-8");
header("Content-Type:application/json; charset=utf-8");
header("Access-Control-Allow-Origin: *");

require("editormd.uploader.class.php");
Expand All @@ -23,7 +23,7 @@
$savePath = realpath($path . '../uploads/') . DIRECTORY_SEPARATOR;
$saveURL = $url . '../uploads/';

$formats = array(
$formats = array(
'image' => array('gif', 'jpg', 'jpeg', 'png', 'bmp')
);

Expand Down
2 changes: 1 addition & 1 deletion lib/codemirror/addons.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/codemirror/modes.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": "editor.md",
"version": "1.4.3",
"version": "1.4.4",
"description": "Open source online markdown editor.",
"directories": {
"doc": "docs",
Expand Down
Loading

0 comments on commit 200fb88

Please sign in to comment.