Skip to content

Commit c439797

Browse files
committed
Mark as 0.4.2
1 parent ee3c6b5 commit c439797

File tree

4 files changed

+37
-4
lines changed

4 files changed

+37
-4
lines changed

lib/config.js

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

80-
var version = '0.4.0';
80+
var version = '0.4.2';
8181
var maintenance = config.maintenance || false;
8282
var cwd = path.join(__dirname, '..');
8383

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

public/docs/release-notes.md

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,42 @@
11
Release Notes
22
===
33

4-
<i class="fa fa-tag"></i> 0.4.0 `first-year` <i class="fa fa-clock-o"></i> 2016-04-20 14:30
4+
<i class="fa fa-tag"></i> 0.4.2 `cappuccino` <i class="fa fa-clock-o"></i> 2016-04-22 10:43
55
---
6+
### Features
7+
+ Support sync scrolling to edit area
8+
+ Support import and export with GitLab snippet
9+
+ Support GitLab signin
10+
+ Add cheatsheet and help modal
11+
12+
### Enhancements
13+
* Upgrade CodeMirror to version 5.15.3
14+
* Support maintenance mode and gracefully exit process on signal
15+
* Update to update doc in db when doc in filesystem have newer modified time
16+
* Update to replace animation acceleration library from gsap to velocity
17+
* Support image syntax with size
18+
* Update textcomplete rules to support more conditions
19+
* Update to use bigger user profile image
20+
* Support showing signin button only when needed
621

22+
### Fixes
23+
* Fix other clients' cursor might disappear or move out of bound
24+
* Fix to handle user profile image not exists
25+
* Fix potential toolbar layout glitch
26+
* Fix imgur uploads should always use https to avoid mix-content warning
27+
* Fix to change fullscreen key to avoid OS key conflicts
28+
* Fix and change ESC key in Vim mode
29+
30+
<i class="fa fa-tag"></i> 0.4.1 <i class="fa fa-clock-o"></i> 2016-04-22 10:43
31+
---
32+
### Enhancements
33+
* Support when client domain not provided will use window.location variable
34+
* Support when domain not provided will use relative path
35+
* Support DOMAIN and URL_PATH environment variables
36+
37+
38+
<i class="fa fa-tag"></i> 0.4.0 `first-year` <i class="fa fa-clock-o"></i> 2016-04-20 14:30
39+
---
740
### Features
841
+ Support docs
942
+ Support Ionicons and Octicons

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.0';
17+
var version = '0.4.2';
1818

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

0 commit comments

Comments
 (0)