Skip to content

Commit f35aa94

Browse files
committed
Mark as 0.4.4
1 parent 67474aa commit f35aa94

File tree

4 files changed

+48
-4
lines changed

4 files changed

+48
-4
lines changed

lib/config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ function getserverurl() {
7777
return url;
7878
}
7979

80-
var version = '0.4.3';
81-
var minimumCompatibleVersion = '0.4.2';
80+
var version = '0.4.4';
81+
var minimumCompatibleVersion = '0.4.4';
8282
var maintenance = true;
8383
var cwd = path.join(__dirname, '..');
8484

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.3",
3+
"version": "0.4.4",
44
"description": "Realtime collaborative markdown notes on all platforms.",
55
"main": "app.js",
66
"license": "MIT",

public/docs/release-notes.md

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

4+
<i class="fa fa-tag"></i> 0.4.4 `mocha` <i class="fa fa-clock-o"></i> 2016-08-02 17:10
5+
---
6+
### Features
7+
* Add support of showing authorship in editor
8+
* Add support of saving authorship
9+
* Add support of saving authors
10+
* Add support of slide preview in both mode
11+
* Add support of all extra syntax in slide mode
12+
13+
### Enhancements
14+
* Update realtime check and refresh event, compress data to minimize network transfer delay
15+
* Update to keep showing second level TOC if there is only one first level TOC
16+
* Update to add expand and collapse toggle for TOC
17+
* Update to make help modal and text complete hint using consistent reminder text
18+
* Update to support slideOptions in the yaml metadata for customize slides
19+
* Update to support redirect back to previous url after signin
20+
* Update to avoid duplicated rendering slides and reduce DOM wrap
21+
* Update CodeMirror to version 5.17.1
22+
* Update to make random color more discrete
23+
* Update user icon styles to make avatar more obvious
24+
* Update Bootstrap to 3.3.7 and jQuery to 3.1.0 with related patches
25+
* Update spell checker to ignore non-english or numeric alphabets
26+
* Update to auto rolling session for auto extending cookies expiration
27+
* Update some menu items and UIs
28+
* Update to reduce realtime timeout and heartbeat interval to handle stale clients quicker
29+
* Update to force note, publish note, publish slide redirect to their expected url
30+
* Update to change server pre-rendering engine to markdown-it
31+
32+
### Fixes
33+
* Workaround vim mode might overwrite copy keyMap on Windows
34+
* Fix TOC might not update after changeMode
35+
* Workaround slide mode gets glitch and blurry text on Firefox 47+
36+
* Fix idle.js not change isAway property on onAway and onAwayBack events
37+
* Fix http body request entity too large issue
38+
* Fix google-diff-match-patch encodeURI exception issue
39+
* Fix yaml metadata title should pass to generateWebTitle
40+
* Fix spellcheck settings from cookies might not a boolean in string type
41+
* Fix cookies might not in boolean type cause page refresh loop
42+
* Fix the signin and logout redirect url might be empty
43+
* Fix realtime might not clear or remove invalid sockets in queue
44+
* Fix slide not refresh layout on ajax item loaded
45+
* Fix retryOnDisconnect not clean up after reconnected
46+
* Fix some potential memory leaks
47+
448
<i class="fa fa-tag"></i> 0.4.3 `espresso` <i class="fa fa-clock-o"></i> 2016-06-28 02:04
549
---
650
### Features

public/js/common.js

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

17-
var version = '0.4.3';
17+
var version = '0.4.4';
1818

1919
var checkAuth = false;
2020
var profile = null;

0 commit comments

Comments
 (0)