Skip to content

Commit bd43359

Browse files
committed
Mark as 0.5.0
1 parent 6ac1df5 commit bd43359

File tree

4 files changed

+33
-4
lines changed

4 files changed

+33
-4
lines changed

lib/config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ function getserverurl() {
111111
return url;
112112
}
113113

114-
var version = '0.4.6';
115-
var minimumCompatibleVersion = '0.4.5';
114+
var version = '0.5.0';
115+
var minimumCompatibleVersion = '0.5.0';
116116
var maintenance = true;
117117
var cwd = path.join(__dirname, '..');
118118

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hackmd",
3-
"version": "0.4.6",
3+
"version": "0.5.0",
44
"description": "Realtime collaborative markdown notes on all platforms.",
55
"main": "app.js",
66
"license": "MIT",

public/docs/release-notes.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,35 @@
11
Release Notes
22
===
33

4+
<i class="fa fa-tag"></i> 0.5.0 `Ristretto` <i class="fa fa-clock-o"></i> 2017-01-02 02:35
5+
---
6+
### Enhancements
7+
* Update year to 2017 (Happy New Year!)
8+
* Update to improve editor performance by debounce checkEditorScrollbar event
9+
* Refactor data processing to model definition
10+
* Update to remove null byte on editor changes
11+
* Update to remove null byte before saving to DB
12+
* Update to support Esperanto locale
13+
* Little improvements (typos, uppercase + accents, better case) for French locale
14+
* Update features.md publish button name and icon
15+
16+
### Fixes
17+
* Fix authorship might losing update event because of throttling
18+
* Fix migration script of revision lacks of definition of primary key
19+
* Fix to not use diff_cleanupSemantic
20+
* Fix URL concatenation when uploading images to local filesystem
21+
* Fix js-url not import correctly
22+
* Fixed typo: anonmyous
23+
* Fix codemirror spell checker not considering abbreviation which contain apostrophe in word
24+
* Fix possible user is undefined in realtime events
25+
* Fix wrong package name reference in webpack config for bootstrap-validator
26+
* Fix email option in config not parse correctly
27+
* Fix mathjax not able to render issue
28+
29+
### Removes
30+
- Remove LZString compression for data storage
31+
- Remove LZString compression for some socket.io event data
32+
433
<i class="fa fa-tag"></i> 0.4.6 `Melya` <i class="fa fa-clock-o"></i> 2016-12-19 17:20
534
---
635
### Features

public/js/common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ window.serverurl = window.location.protocol + '//' + (domain ? domain : window.l
1212
var noteid = urlpath ? window.location.pathname.slice(urlpath.length + 1, window.location.pathname.length).split('/')[1] : window.location.pathname.split('/')[1];
1313
var noteurl = serverurl + '/' + noteid;
1414

15-
var version = '0.4.6';
15+
var version = '0.5.0';
1616

1717
var checkAuth = false;
1818
var profile = null;

0 commit comments

Comments
 (0)