Skip to content

Commit 9a15cad

Browse files
committed
Mark as 0.4.5
1 parent 510b125 commit 9a15cad

File tree

4 files changed

+64
-4
lines changed

4 files changed

+64
-4
lines changed

lib/config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ function getserverurl() {
9797
return url;
9898
}
9999

100-
var version = '0.4.4';
101-
var minimumCompatibleVersion = '0.4.4';
100+
var version = '0.4.5';
101+
var minimumCompatibleVersion = '0.4.5';
102102
var maintenance = true;
103103
var cwd = path.join(__dirname, '..');
104104

package.json

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

public/docs/release-notes.md

+60
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,66 @@
11
Release Notes
22
===
33

4+
<i class="fa fa-tag"></i> 0.4.5 `latte` <i class="fa fa-clock-o"></i> 2016-10-11 01:22
5+
---
6+
### Features
7+
+ Add more environment variables for server configuration
8+
+ Add setup script for getting started
9+
+ Add support of deleting note
10+
+ Add support of shortcut keys which can add and remove symbol surround text
11+
+ Add support of shortcut keys for changing mode
12+
+ Add support of i18n (English, Chinese, French, German, Japanese, Spanish, Portuguese, Greek, Italian, Turkish, Russian, Dutch, Croatian, Polish, Ukrainian)
13+
+ Add support of note info API
14+
+ Add support of disqus via yaml-metadata
15+
16+
### Enhancements
17+
* Optimize png images by using zopflipng
18+
* Update CodeMirror to 5.19.0 and rename jade to pug
19+
* Update to add cache to history and improve its performance
20+
* Update default indent to use spaces instead of tabs
21+
* Improve syntax highlighting performance
22+
* Update to make client handle syncing error better, use delay to avoid wrong document revision
23+
* Update to allow CORS as API on revision actions
24+
* Update to support showing owner on the infobar
25+
* Update to prevent duplicate client push in queue to lower down server loading
26+
* Reduce update view debounce time to make preview refresh quicker
27+
* Update help modal cheatsheet font styles to make it more clear on spaces
28+
* Update to add revision saving policy
29+
* Update to support tiddlywiki and mediawiki syntax highlighting in editor
30+
* Update to support save mode to url and vise versa
31+
* Update edit and publish icon and change toggle icon for UX
32+
* Improve authorship markers update performance
33+
* Update slide mode to show extra info and support url actions
34+
* Change the last change user saving strategy
35+
* Update to support data uri in src attribute of image tag
36+
* Improve index layout and UX with UI adjustments
37+
* Update XSS policy to allow iframe and link with custom protocol
38+
* Update markdown styles to follow github latest layout styles
39+
* Update slide mode, now respect all meta settings and update default styles
40+
* Update to make ToC menu always accessible without scrolling
41+
* Update to make doc only update while filesystem content not match db content
42+
43+
### Fixes
44+
* Fix README and features document format and grammar issues
45+
* Fix some potential memory leaks bugs
46+
* Fix history storage might not fallback correctly
47+
* Fix to make mathjax expression display in editor correctly (not italic)
48+
* Fix note title might have unstriped html tags
49+
* Fix client reconnect should resend last operation
50+
* Fix a bug when setting both maxAge and expires may cause user can't signin
51+
* Fix text complete extra tags for blockquote and referrals
52+
* Fix bug that when window close will make ajax fail and cause cookies set to wrong state
53+
* Fix markdown render might fall into regex infinite loop
54+
* Fix syntax error caused by element contain special characters
55+
* Fix reference error caused by some scripts loading order
56+
* Fix ToC id naming to avoid possible overlap with user ToC
57+
* Fix header nav bar rwd detect element should use div tag or it might glitch the layout
58+
* Fix textcomplete of extra tags for blockquote not match space character in the between
59+
* Fix text-shadow for text antialiased might cause IE or Edge text cutoff
60+
61+
### Removes
62+
- Cancel updating history on page unload
63+
464
<i class="fa fa-tag"></i> 0.4.4 `mocha` <i class="fa fa-clock-o"></i> 2016-08-02 17:10
565
---
666
### Features

public/js/common.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ var serverurl = window.location.protocol + '//' + (domain ? domain : window.loca
44
var noteid = urlpath ? window.location.pathname.slice(urlpath.length + 1, window.location.pathname.length).split('/')[1] : window.location.pathname.split('/')[1];
55
var noteurl = serverurl + '/' + noteid;
66

7-
var version = '0.4.4';
7+
var version = '0.4.5';
88

99
var checkAuth = false;
1010
var profile = null;

0 commit comments

Comments
 (0)