Marked as 0.3.4
This commit is contained in:
parent
7e5bdd0069
commit
1b2a3108be
4 changed files with 49 additions and 3 deletions
|
@ -12,7 +12,7 @@ var urladdport = true; //add port on getserverurl
|
||||||
var config = {
|
var config = {
|
||||||
debug: true,
|
debug: true,
|
||||||
usecdn: false,
|
usecdn: false,
|
||||||
version: '0.3.3',
|
version: '0.3.4',
|
||||||
domain: domain,
|
domain: domain,
|
||||||
alloworigin: ['add here to allow origin to cross'],
|
alloworigin: ['add here to allow origin to cross'],
|
||||||
testport: testport,
|
testport: testport,
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "hackmd",
|
"name": "hackmd",
|
||||||
"version": "0.3.3",
|
"version": "0.3.4",
|
||||||
"description": "Realtime collaborative markdown notes on all platforms.",
|
"description": "Realtime collaborative markdown notes on all platforms.",
|
||||||
"main": "app.js",
|
"main": "app.js",
|
||||||
"author": "jackycute",
|
"author": "jackycute",
|
||||||
|
|
|
@ -326,6 +326,52 @@ var source = $("#template").html();
|
||||||
var template = Handlebars.compile(source);
|
var template = Handlebars.compile(source);
|
||||||
var context = {
|
var context = {
|
||||||
release: [
|
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",
|
version: "0.3.3",
|
||||||
tag: "moon-festival",
|
tag: "moon-festival",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
//constant vars
|
//constant vars
|
||||||
//settings
|
//settings
|
||||||
var debug = false;
|
var debug = false;
|
||||||
var version = '0.3.3';
|
var version = '0.3.4';
|
||||||
|
|
||||||
var defaultTextHeight = 20;
|
var defaultTextHeight = 20;
|
||||||
var viewportMargin = 20;
|
var viewportMargin = 20;
|
||||||
|
|
Loading…
Reference in a new issue