summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWu Cheng-Han2015-09-27 14:36:08 +0800
committerWu Cheng-Han2015-09-27 14:36:08 +0800
commitbc1f59af65d2d51239245dd40de7b25e5721f7a3 (patch)
tree6e1ff1c234c23a2c4cae5c97f20996a266c42c4c
parent2c31b8d809a692db0ad784117340c0aa2d6b69a2 (diff)
Marked as 0.3.3
Diffstat (limited to '')
-rw-r--r--config.js2
-rw-r--r--package.json2
-rw-r--r--public/js/cover.js44
-rw-r--r--public/js/index.js2
4 files changed, 47 insertions, 3 deletions
diff --git a/config.js b/config.js
index 779f4d56..f1fb3fa8 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.2',
+ version: '0.3.3',
domain: domain,
alloworigin: ['add here to allow origin to cross'],
testport: testport,
diff --git a/package.json b/package.json
index f713451d..1502f7ef 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "hackmd",
- "version": "0.3.2",
+ "version": "0.3.3",
"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 412d329c..567d6422 100644
--- a/public/js/cover.js
+++ b/public/js/cover.js
@@ -273,6 +273,50 @@ var source = $("#template").html();
var template = Handlebars.compile(source);
var context = {
release: [
+ {
+ version: "0.3.3",
+ tag: "moon-festival",
+ date: moment("201509271400", 'YYYYMMDDhhmm').fromNow(),
+ detail: [
+ {
+ title: "Features",
+ item: [
+ "+ Added status bar below editor",
+ "+ Added resizable grid in both mode",
+ "+ Added title reminder if have unread changes",
+ "+ Support todo list change in the view mode",
+ "+ Support export to HTML",
+ "+ Changed to a new theme, One Dark(modified version)"
+ ]
+ },
+ {
+ title: "Enhancements",
+ item: [
+ "* Support extra tags in todo list",
+ "* Changed overall font styles",
+ "* Optimized build sync scroll map, gain lots better performance",
+ "* Support and improved print styles",
+ "* Support to use CDN",
+ "* Image and link will href to new tab ors window",
+ "* Support auto scroll to corresponding position when change mode from view to edit",
+ "* Minor UI/UX tweaks"
+ ]
+ },
+ {
+ title: "Fixes",
+ item: [
+ "* Change DB schema to support long title",
+ "* Change editable permission icon to avoid misunderstanding",
+ "* Fixed some issues in OT and reconnection",
+ "* Fixed cursor menu and cursor tag are not calculate doc height properly",
+ "* Fixed scroll top might not animate",
+ "* Fixed scroll top not save and restore properly",
+ "* Fixed history might not delete or clear properly",
+ "* Fixed server might not clean client properly"
+ ]
+ }
+ ]
+ },
{
version: "0.3.2",
tag: "typhoon",
diff --git a/public/js/index.js b/public/js/index.js
index 8bfecede..121737ed 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.2';
+var version = '0.3.3';
var defaultTextHeight = 20;
var viewportMargin = 20;