Skip to content

Commit

Permalink
updated README and version number
Browse files Browse the repository at this point in the history
  • Loading branch information
yosko committed Mar 20, 2014
1 parent b0639e3 commit 72caab7
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 6 deletions.
24 changes: 20 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ See [the demo](http://tools.yosko.net/demos/jotter/) or install it yourself!

## Features

- WYSIWYG (What You See Is What You Get) editor
- Markdown and WYSIWYG (What You See Is What You Get) editors
- organize notes hierarchically
- manage as many notebooks as you want
- multi-user support
- multi-user support (currently, notebooks can't be shared between users)
- no DBMS needed. Everything is stored in flat files (JSON & Markdown)

![Jotter screenshot](http://www.yosko.net/data/images/jotter-v0.2.png)
Expand All @@ -23,15 +23,23 @@ See [the demo](http://tools.yosko.net/demos/jotter/) or install it yourself!

## Install

### New install

1. Upload it (or `git clone` it) on your server (let's say in `/var/www/jotter`)
2. Go to the corresponding URL (lets say `http://www.example.com/jotter`)

### Update

Currently the update is quite easy:
1. (optional) backup your `data/` directory up
2. just overwrite app files with latest version ((or `git pull` it)
3. That's all, folks!

## TODO

- Next version:
- Make the wysiwyg optional (& directly write notes in Markdown)
- Following ones:
- remember folded/unfolded folder (will change the save format)
- Following ones:
- Trash bin for deleted notes
- Keep last N versions of each note and restore it on demand
- Option to make some notes/notebooks publicly accessible
Expand All @@ -42,6 +50,14 @@ See [the demo](http://tools.yosko.net/demos/jotter/) or install it yourself!

## Version History

- v0.4 (2014-03-20)
- major Javascript rewrite
- introduced markdown editor (with help page)
- fixed wysiyg editor issues
- display version number
- dropdown for changing notebook now always accessible
- add note/directory now accessible from contextual menu
- fixed save shortcut not always working in Firefox
- v0.3 (2013-11-28)
- drag & drop to move notes/directories within a notebook
- v0.2 (2013-11-22)
Expand Down
4 changes: 2 additions & 2 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
*
* @license LGPL v3 (http://www.gnu.org/licenses/lgpl.html)
* @author Yosko <webmaster@yosko.net>
* @version v0.3
* @version v0.4
* @link https://github.com/yosko/jotter
*/
define( 'VERSION', '0.3' );
define( 'VERSION', '0.4' );
define( 'ROOT', __DIR__.'/' );
define( 'DIR_DATA', ROOT.'data/' );
define( 'DIR_TPL', ROOT.'tpl/' );
Expand Down

0 comments on commit 72caab7

Please sign in to comment.