Skip to content

Commit 1b2a310

Browse files
committed
Marked as 0.3.4
1 parent 7e5bdd0 commit 1b2a310

File tree

4 files changed

+49
-3
lines changed

4 files changed

+49
-3
lines changed

config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var urladdport = true; //add port on getserverurl
1212
var config = {
1313
debug: true,
1414
usecdn: false,
15-
version: '0.3.3',
15+
version: '0.3.4',
1616
domain: domain,
1717
alloworigin: ['add here to allow origin to cross'],
1818
testport: testport,

package.json

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

public/js/cover.js

+46
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,52 @@ var source = $("#template").html();
326326
var template = Handlebars.compile(source);
327327
var context = {
328328
release: [
329+
{
330+
version: "0.3.4",
331+
tag: "techstars",
332+
date: moment("201601190022", 'YYYYMMDDhhmm').fromNow(),
333+
detail: [
334+
{
335+
title: "Features",
336+
item: [
337+
"+ Beta Support slide mode",
338+
"+ Beta Support export to PDF",
339+
"+ Support TOC syntax",
340+
"+ Support embed slideshare and speakerdeck",
341+
"+ Support Graphviz charts",
342+
"+ Support YAML metadata",
343+
"+ Support private permission"
344+
]
345+
},
346+
{
347+
title: "Enhancements",
348+
item: [
349+
"* Support pin note in history",
350+
"* Support IE9 and above",
351+
"* Support specifiy and continue line number in code block",
352+
"* Changed all embed layout to 100% width",
353+
"* Added auto detect default mode",
354+
"* Support show last change note user",
355+
"* Upgrade CodeMirror to 5.10.1 with some manaual patches",
356+
"* Improved server performance",
357+
"* Support autocomplete for code block languages of charts"
358+
]
359+
},
360+
{
361+
title: "Fixes",
362+
item: [
363+
"* Fixed some server connection issues",
364+
"* Fixed several issues cause scrollMap incorrect",
365+
"* Fixed cursor animation should not apply on scroll",
366+
"* Fixed a possible bug in partial update",
367+
"* Fixed internal href should not link out",
368+
"* Fixed dropbox saver url not correct",
369+
"* Fixed mathjax might not parse properly",
370+
"* Fixed sequence diagram might render multiple times"
371+
]
372+
}
373+
]
374+
},
329375
{
330376
version: "0.3.3",
331377
tag: "moon-festival",

public/js/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//constant vars
22
//settings
33
var debug = false;
4-
var version = '0.3.3';
4+
var version = '0.3.4';
55

66
var defaultTextHeight = 20;
77
var viewportMargin = 20;

0 commit comments

Comments
 (0)