Skip to content

Commit

Permalink
Version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
olivier-m committed Jun 2, 2014
1 parent e0efd05 commit 80285c4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/node_modules
/dist
/.grunt
/*.zip
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ module.exports = function(grunt) {

zip: {
dist: {
dest: 'dist/<%= pkg.name.toLowerCase() %>.zip',
dest: '<%= pkg.name.toLowerCase() %>-<%= pkg.version %>.zip',
src: ['README.md', 'LICENSE', 'demo/index.html', 'dist/js/**', 'dist/css/**'],
router: function(path) {
var re_dist = /^dist\/(.+)$/;
Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ Minislate:

## Download and install

First, [download Minislate](http://olivier-m.github.io/minislate/dist/minislate.zip), unzip it and copy the
following files to a location of your choice:
First, [download Minislate](https://github.com/olivier-m/minislate/releases), unzip it and copy the following files to a location of your choice:

- `css/minislate-full.min.css`
- `css/fonts` (keep fonts in the same folder as the css file)
Expand All @@ -35,8 +34,7 @@ At the bottom of the page, before the `</body>` tag, add this code:
<script src="js/minislate.js"></script>
<script>
window.addEventListener('DOMContentLoaded', function() {
var editor = new Minislate('#editable', {
});
var editor = new Minislate.simpleEditor('#editable');
});
</script>
```
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Minislate",
"version": "0.1.0",
"version": "0.2.0",
"description": "Minislate is a HTML5 WYSIWYG editor",
"author": {
"name": "Olivier Meunier",
Expand Down

0 comments on commit 80285c4

Please sign in to comment.