Skip to content

Commit 39521f2

Browse files
committed
Mark as 0.4.6
1 parent c8d37dd commit 39521f2

File tree

4 files changed

+62
-3
lines changed

4 files changed

+62
-3
lines changed

lib/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ function getserverurl() {
113113
return url;
114114
}
115115

116-
var version = '0.4.5';
116+
var version = '0.4.6';
117117
var minimumCompatibleVersion = '0.4.5';
118118
var maintenance = true;
119119
var cwd = path.join(__dirname, '..');

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

public/docs/release-notes.md

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

4+
<i class="fa fa-tag"></i> 0.4.6 `Melya` <i class="fa fa-clock-o"></i> 2016-12-19 17:20
5+
---
6+
### Features
7+
+ Add support of allow free url config option
8+
+ Add support of allow anonymous config option
9+
+ Add preferences to editor status bar and add allow override browser keymap option
10+
+ Add support of s3 and local filesystem for image uploading
11+
+ Add of support optional email register and signin
12+
+ Use uWebSocket to improve websocket performance
13+
+ Use CDNJS by default with https and SRI support
14+
+ Use Webpack to bundle frontend code
15+
16+
### Enhancements
17+
* Update to make TOC syntax be case-insensitive
18+
* Update to handle request with invalid uri
19+
* Update to auto generate meta description based on content in publish note and slide
20+
* Update to support haskell, go, typescript and jsx syntax highlighting in code block
21+
* Update to use workers to leverage intensive work loading
22+
* Update to support summary tag
23+
* Change use cdn config option default to be true
24+
* Update to retry when anytime the socket io disconnect
25+
* Change to raise socket io timeout, heartbeat interval and timeout to lower offline period
26+
* Update emoji parser using markdown-it-emoji instead of emojify
27+
* Optimize finishView selector performance by avoid universal selector
28+
* Config heroku deployment
29+
* Update to support Hindi, Swedish locale
30+
* Update to support wrap syntax for code block
31+
* Update to support pagination for history list
32+
33+
### Fixes
34+
* Fix slide mode on print pdf not finish view rendering
35+
* Fix when server have heavy loading cache might not update to db properly
36+
* Fix redirection to url without trailing slashes not considering about config urlpath
37+
* Fix header id and text might affects by mathjax tags
38+
* Fix possible meta XSS in history list [Security Issue]
39+
* Fix possible XSS in yaml-metadata and turn using ejs escape syntax than external lib [Security Issue]
40+
* Fix to allow data attribute of section tag in slide
41+
* Fix slide might able to add unsafe attribute on section tag which cause XSS [Security Issue]
42+
* Fix slide might trigger script when processing markdown which cause XSS [Security Issue]
43+
* Fix published note won't scroll to hash on load
44+
* Fix mathjax with blockquote might have race condition
45+
* Fix server reconnect might not resend pending operations
46+
* Fix slide export pdf styles not applied issue
47+
* Fix possible unclose HTML and leaked html tags when fail to parse diagrams
48+
* Fix typos in the `slide-example.md`
49+
* Fix socket io doc event should setDoc when revision mismatch and no outstanding operation
50+
* Fix markdown styles conflicting bootstrap on p and ul under alert area
51+
* Fix finishView mermaid might select and replace whole markdown-body issue
52+
* Fix code block which in deeper level will not be parsed issue
53+
* Fix code block highlighting html not escaped when no languages specified
54+
* Fix client socket on delete event might not delete corresponding history record correctly
55+
* Fix to handle name or color is undefined error
56+
* Fix history item event not bind properly on pagination change
57+
* Fix history time should save in UNIX timestamp to avoid time offset issue
58+
59+
### Removes
60+
- Drop bower the package manager
61+
- Remove auto linkify image
62+
463
<i class="fa fa-tag"></i> 0.4.5 `latte` <i class="fa fa-clock-o"></i> 2016-10-11 01:22
564
---
665
### 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.5';
15+
var version = '0.4.6';
1616

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

0 commit comments

Comments
 (0)