Skip to content

Commit 197ac5d

Browse files
committed
Mark as 0.4.0
1 parent 1a4792b commit 197ac5d

File tree

3 files changed

+64
-2
lines changed

3 files changed

+64
-2
lines changed

package.json

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

public/js/common.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var serverurl = window.location.protocol + '//' + domain + (port ? ':' + port :
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.3.4';
15+
var version = '0.4.0';
1616

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

public/js/cover.js

+62
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,68 @@ var source = $("#template").html();
326326
var template = Handlebars.compile(source);
327327
var context = {
328328
release: [
329+
{
330+
version: "0.4.0",
331+
tag: "first-year",
332+
date: moment("201604201430", 'YYYYMMDDhhmm').fromNow(),
333+
detail: [
334+
{
335+
title: "Features",
336+
item: [
337+
"+ Support docs",
338+
"+ Support Ionicons and Octicons",
339+
"+ Support mermaid diagram",
340+
"+ Support import and export with Gist",
341+
"+ Support import and export with Google Drive",
342+
"+ Support more options in YAML metadata",
343+
"+ Support change keymap and indentation size/type"
344+
]
345+
},
346+
{
347+
title: "Enhancements",
348+
item: [
349+
"* Change header anchor styles",
350+
"* Refactor server code and configs",
351+
"* Support experimental spell checking",
352+
"* Upgrade CodeMirror to 5.13.5",
353+
"* Update to emit info and disconnect clients if updater get errors",
354+
"* Support to indicate if the note status is created or updated",
355+
"* Support more DB types",
356+
"* Server now use ORM for DBs",
357+
"* Support static file cache",
358+
"* Support more ssl settings",
359+
"* Improve server stablilty",
360+
"* Improve server performance",
361+
"* Support Ionicons",
362+
"* Support container syntax and styles",
363+
"* Improve input performance",
364+
"* Change markdown engine from remarkable to markdown-it",
365+
"* Server now support set sub url path",
366+
"* Support textcomplete in multiple editing",
367+
"* Update to filter XSS on rendering",
368+
"* Update to make sync scroll lerp on last line",
369+
"* Update to make continue list in todo list default as unchecked",
370+
"* Support auto indent whole line in list or blockquote"
371+
]
372+
},
373+
{
374+
title: "Fixes",
375+
item: [
376+
"* Fix status bar might be inserted before loaded",
377+
"* Fix mobile layout and focus issues",
378+
"* Fix editor layout and styles might not handle correctly",
379+
"* Fix all diagram rendering method and styles to avoid partial update gets wrong",
380+
"* Fix to ignore process image which already wrapped by link node",
381+
"* Fix when cut or patse scroll map might get wrong",
382+
"* Fix to handle more socket error and info status",
383+
"* Fix textcomplete not matching properly",
384+
"* Fix and refactor cursor tag and cursor menu",
385+
"* Fix Japanese, Chinese font styles",
386+
"* Fix minor bugs of UI and seletor syntaxes"
387+
]
388+
}
389+
]
390+
},
329391
{
330392
version: "0.3.4",
331393
tag: "techstars",

0 commit comments

Comments
 (0)