summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWu Cheng-Han2016-01-19 10:06:22 -0600
committerWu Cheng-Han2016-01-19 10:06:22 -0600
commit1b2a3108be19003e74b270b7e3c2bcd49ff40539 (patch)
treefcbba3082d77645284403c33b79bb97be9957eb3
parent7e5bdd0069cf23612b906102ac91f98710274369 (diff)
Marked as 0.3.4
-rw-r--r--config.js2
-rw-r--r--package.json2
-rw-r--r--public/js/cover.js46
-rw-r--r--public/js/index.js2
4 files changed, 49 insertions, 3 deletions
diff --git a/config.js b/config.js
index 728208eb..5f1047ae 100644
--- a/config.js
+++ b/config.js
@@ -12,7 +12,7 @@ var urladdport = true; //add port on getserverurl
var config = {
debug: true,
usecdn: false,
- version: '0.3.3',
+ version: '0.3.4',
domain: domain,
alloworigin: ['add here to allow origin to cross'],
testport: testport,
diff --git a/package.json b/package.json
index 9cd41567..ba415315 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "hackmd",
- "version": "0.3.3",
+ "version": "0.3.4",
"description": "Realtime collaborative markdown notes on all platforms.",
"main": "app.js",
"author": "jackycute",
diff --git a/public/js/cover.js b/public/js/cover.js
index f2f3ae91..3b4cdd96 100644
--- a/public/js/cover.js
+++ b/public/js/cover.js
@@ -326,6 +326,52 @@ var source = $("#template").html();
var template = Handlebars.compile(source);
var context = {
release: [
+ {
+ version: "0.3.4",
+ tag: "techstars",
+ date: moment("201601190022", 'YYYYMMDDhhmm').fromNow(),
+ detail: [
+ {
+ title: "Features",
+ item: [
+ "+ Beta Support slide mode",
+ "+ Beta Support export to PDF",
+ "+ Support TOC syntax",
+ "+ Support embed slideshare and speakerdeck",
+ "+ Support Graphviz charts",
+ "+ Support YAML metadata",
+ "+ Support private permission"
+ ]
+ },
+ {
+ title: "Enhancements",
+ item: [
+ "* Support pin note in history",
+ "* Support IE9 and above",
+ "* Support specifiy and continue line number in code block",
+ "* Changed all embed layout to 100% width",
+ "* Added auto detect default mode",
+ "* Support show last change note user",
+ "* Upgrade CodeMirror to 5.10.1 with some manaual patches",
+ "* Improved server performance",
+ "* Support autocomplete for code block languages of charts"
+ ]
+ },
+ {
+ title: "Fixes",
+ item: [
+ "* Fixed some server connection issues",
+ "* Fixed several issues cause scrollMap incorrect",
+ "* Fixed cursor animation should not apply on scroll",
+ "* Fixed a possible bug in partial update",
+ "* Fixed internal href should not link out",
+ "* Fixed dropbox saver url not correct",
+ "* Fixed mathjax might not parse properly",
+ "* Fixed sequence diagram might render multiple times"
+ ]
+ }
+ ]
+ },
{
version: "0.3.3",
tag: "moon-festival",
diff --git a/public/js/index.js b/public/js/index.js
index 6eb04f6d..3d2efc07 100644
--- a/public/js/index.js
+++ b/public/js/index.js
@@ -1,7 +1,7 @@
//constant vars
//settings
var debug = false;
-var version = '0.3.3';
+var version = '0.3.4';
var defaultTextHeight = 20;
var viewportMargin = 20;