Skip to content

Commit

Permalink
Release v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ww24 committed Oct 13, 2014
1 parent 7884c14 commit 1076016
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ Mace = Markdown editor powered by Ace.

[Live Demo](http://ww24.info/mace/example/)

Feature (coming soon)
Feature
-------
* Markdown Syntax Highlight
* Markdown Preview
* Markdown Extra syntax support
* Markdown Extra syntax support (coming soon)
* GUI for Markdown syntax

Usage
Expand Down
3 changes: 1 addition & 2 deletions build/deps/mace-core.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/*!
* Mace 0.0.1
* Mace 0.1.0
* copyright: Takenori Nakagawa
* license: MIT
*/
Expand Down Expand Up @@ -319,7 +319,6 @@
indent_size = match != null ? match[1].length : void 0;
this.ace.moveCursorTo(row, indent_size);
space_size = match != null ? match[2].length : void 0;
console.log(indent_size, space_size);
this.ace.selection.addRange(new this.Ace.Range(row, indent_size, row, space_size + 1));
this.ace.remove("right");
} else {
Expand Down
4 changes: 2 additions & 2 deletions build/deps/mace-core.min.js

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

4 changes: 2 additions & 2 deletions build/mace.min.js

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mace",
"version": "0.0.1",
"version": "0.1.0",
"description": "Mace = Markdown editor powered by Ace.",
"main": "gulpfile.js",
"scripts": {
Expand All @@ -20,7 +20,6 @@
"url": "https://github.com/ww24/mace/issues"
},
"homepage": "http://ww24.info/mace",
"private": true,
"devDependencies": {
"chai": "^1.9.2",
"coveralls": "^2.11.2",
Expand Down
2 changes: 1 addition & 1 deletion src/mace.coffee
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
###!
# Mace 0.0.1
# Mace 0.1.0
# copyright: Takenori Nakagawa
# license: MIT
###
Expand Down

0 comments on commit 1076016

Please sign in to comment.