Marked as 0.3.3
This commit is contained in:
parent
2c31b8d809
commit
bc1f59af65
4 changed files with 47 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.2',
|
version: '0.3.3',
|
||||||
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.2",
|
"version": "0.3.3",
|
||||||
"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",
|
||||||
|
|
|
@ -274,6 +274,50 @@ var template = Handlebars.compile(source);
|
||||||
var context = {
|
var context = {
|
||||||
release: [
|
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",
|
version: "0.3.2",
|
||||||
tag: "typhoon",
|
tag: "typhoon",
|
||||||
date: moment("201507111230", 'YYYYMMDDhhmm').fromNow(),
|
date: moment("201507111230", 'YYYYMMDDhhmm').fromNow(),
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
//constant vars
|
//constant vars
|
||||||
//settings
|
//settings
|
||||||
var debug = false;
|
var debug = false;
|
||||||
var version = '0.3.2';
|
var version = '0.3.3';
|
||||||
|
|
||||||
var defaultTextHeight = 20;
|
var defaultTextHeight = 20;
|
||||||
var viewportMargin = 20;
|
var viewportMargin = 20;
|
||||||
|
|
Loading…
Reference in a new issue