Skip to content

Commit bc1f59a

Browse files
committed
Marked as 0.3.3
1 parent 2c31b8d commit bc1f59a

File tree

4 files changed

+47
-3
lines changed

4 files changed

+47
-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.2',
15+
version: '0.3.3',
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.2",
3+
"version": "0.3.3",
44
"description": "Realtime collaborative markdown notes on all platforms.",
55
"main": "app.js",
66
"author": "jackycute",

public/js/cover.js

+44
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,50 @@ var source = $("#template").html();
273273
var template = Handlebars.compile(source);
274274
var context = {
275275
release: [
276+
{
277+
version: "0.3.3",
278+
tag: "moon-festival",
279+
date: moment("201509271400", 'YYYYMMDDhhmm').fromNow(),
280+
detail: [
281+
{
282+
title: "Features",
283+
item: [
284+
"+ Added status bar below editor",
285+
"+ Added resizable grid in both mode",
286+
"+ Added title reminder if have unread changes",
287+
"+ Support todo list change in the view mode",
288+
"+ Support export to HTML",
289+
"+ Changed to a new theme, One Dark(modified version)"
290+
]
291+
},
292+
{
293+
title: "Enhancements",
294+
item: [
295+
"* Support extra tags in todo list",
296+
"* Changed overall font styles",
297+
"* Optimized build sync scroll map, gain lots better performance",
298+
"* Support and improved print styles",
299+
"* Support to use CDN",
300+
"* Image and link will href to new tab ors window",
301+
"* Support auto scroll to corresponding position when change mode from view to edit",
302+
"* Minor UI/UX tweaks"
303+
]
304+
},
305+
{
306+
title: "Fixes",
307+
item: [
308+
"* Change DB schema to support long title",
309+
"* Change editable permission icon to avoid misunderstanding",
310+
"* Fixed some issues in OT and reconnection",
311+
"* Fixed cursor menu and cursor tag are not calculate doc height properly",
312+
"* Fixed scroll top might not animate",
313+
"* Fixed scroll top not save and restore properly",
314+
"* Fixed history might not delete or clear properly",
315+
"* Fixed server might not clean client properly"
316+
]
317+
}
318+
]
319+
},
276320
{
277321
version: "0.3.2",
278322
tag: "typhoon",

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.2';
4+
var version = '0.3.3';
55

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

0 commit comments

Comments
 (0)