Skip to content

Commit d7d83c1

Browse files
committed
Mark as 0.4.3
1 parent 357ad0b commit d7d83c1

File tree

5 files changed

+41
-4
lines changed

5 files changed

+41
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Browsers Requirement
3131

3232
Prerequisite
3333
---
34-
- Node.js 4.x or up (test up to 5.10.1)
34+
- Node.js 4.x or up (test up to 6.2.2)
3535
- Database (PostgreSQL, MySQL, MariaDB, SQLite, MSSQL)
3636
- npm and bower
3737

lib/config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ function getserverurl() {
7777
return url;
7878
}
7979

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

package.json

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

public/docs/release-notes.md

100644100755
+37
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,43 @@
11
Release Notes
22
===
33

4+
<i class="fa fa-tag"></i> 0.4.3 `espresso` <i class="fa fa-clock-o"></i> 2016-06-28 02:04
5+
---
6+
### Features
7+
* Add support of spellcheck
8+
* Add support of light editor theme
9+
* Add support of embed pdf
10+
* Add support of exporting raw html
11+
* Add revision modal with UIs and support marking patch diff texts
12+
* Add support of saving note revision
13+
14+
### Enhancements
15+
* Update to extend login info cookies to 365 days to reduce reductant page refresh
16+
* Update to support new metadata: title, description, tags and google-analytics
17+
* Prevent crawling editing note to enhance privacy
18+
* Update to remove all data lines attributes to gain better update performance
19+
* Update refresh modal to show more detail informations
20+
* Update to make cursor tag default as hover mode to prevent tag overlay other lines
21+
* Update highlight.js to version 9.4.0 and use bower dependency
22+
* Improve history performance
23+
24+
### Fixes
25+
* Fix history filter tags and search keyword might not apply after refresh
26+
* Fix part class in list item might infect buildMap process
27+
* Fix pdf tmp path is missing a folder slash before timestamp
28+
* Fix realtime connection get stock when lots of client try to connect at same moment
29+
* Fix locked or private permission should block any operation if owner is null
30+
* Add back missing support of image size syntax in 0.4.2
31+
* Fix update permission might cause duplicate view rendering
32+
* Fix on paste long document to editor might cause scroll not syncing
33+
* Workaround CodeMirror won't draw selections outside of the viewport
34+
* Fix to make socket keep retry after disconnect on server maintenance
35+
36+
### Removes
37+
- Remove metadata spellcheck support
38+
- Remove robot meta on note edit page and html template
39+
40+
441
<i class="fa fa-tag"></i> 0.4.2 `cappuccino` <i class="fa fa-clock-o"></i> 2016-04-22 10:43
542
---
643
### Features

public/js/common.js

+1-1
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.2';
17+
var version = '0.4.3';
1818

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

0 commit comments

Comments
 (0)