Marked as 0.3.2
This commit is contained in:
		
							parent
							
								
									0292bfce5b
								
							
						
					
					
						commit
						bb9deef077
					
				@ -1,4 +1,4 @@
 | 
				
			|||||||
HackMD 0.3.1
 | 
					HackMD 0.3.2
 | 
				
			||||||
===
 | 
					===
 | 
				
			||||||
 | 
					
 | 
				
			||||||
HackMD is a realtime collaborative markdown notes on all platforms.  
 | 
					HackMD is a realtime collaborative markdown notes on all platforms.  
 | 
				
			||||||
@ -7,6 +7,12 @@ Still in early stage, feel free to fork or contribute to this.
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
Thanks for your using! :smile:
 | 
					Thanks for your using! :smile:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Operational Transformation
 | 
				
			||||||
 | 
					---
 | 
				
			||||||
 | 
					From 0.3.2, we start support operational transformation.
 | 
				
			||||||
 | 
					Which make concurrent editing safe and not break up other users' operations.
 | 
				
			||||||
 | 
					Even more, now can show other clients' selections.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Database dependency
 | 
					Database dependency
 | 
				
			||||||
---
 | 
					---
 | 
				
			||||||
- PostgreSQL 9.3.6 or 9.4.1
 | 
					- PostgreSQL 9.3.6 or 9.4.1
 | 
				
			||||||
 | 
				
			|||||||
@ -11,7 +11,7 @@ var urladdport = true; //add port on getserverurl
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
var config = {
 | 
					var config = {
 | 
				
			||||||
    debug: true,
 | 
					    debug: true,
 | 
				
			||||||
    version: '0.3.1',
 | 
					    version: '0.3.2',
 | 
				
			||||||
    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.1",
 | 
					  "version": "0.3.2",
 | 
				
			||||||
  "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",
 | 
				
			||||||
 | 
				
			|||||||
@ -272,6 +272,32 @@ var source = $("#template").html();
 | 
				
			|||||||
var template = Handlebars.compile(source);
 | 
					var template = Handlebars.compile(source);
 | 
				
			||||||
var context = {
 | 
					var context = {
 | 
				
			||||||
    release: [
 | 
					    release: [
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            version: "0.3.2",
 | 
				
			||||||
 | 
					            tag: "typhoon",
 | 
				
			||||||
 | 
					            date: moment("201507111230", 'YYYYMMDDhhmm').fromNow(),
 | 
				
			||||||
 | 
					            detail: [
 | 
				
			||||||
 | 
					                {
 | 
				
			||||||
 | 
					                    title: "Features",
 | 
				
			||||||
 | 
					                    item: [
 | 
				
			||||||
 | 
					                            "+ Support operational transformation",
 | 
				
			||||||
 | 
					                            "+ Support show other user selections",
 | 
				
			||||||
 | 
					                            "+ Support show user profile image if available"
 | 
				
			||||||
 | 
					                        ]
 | 
				
			||||||
 | 
					                    },
 | 
				
			||||||
 | 
					                {
 | 
				
			||||||
 | 
					                    title: "Enhancements",
 | 
				
			||||||
 | 
					                    item: [
 | 
				
			||||||
 | 
					                            "* Updated editor to 5.4.0",
 | 
				
			||||||
 | 
					                            "* Change UI share to publish to avoid misleading",
 | 
				
			||||||
 | 
					                            "* Added random color in blockquote tag",
 | 
				
			||||||
 | 
					                            "* Optimized image renderer, avoid duplicated rendering",
 | 
				
			||||||
 | 
					                            "* Optimized building syncscroll map, make it faster",
 | 
				
			||||||
 | 
					                            "* Optimized SEO on publish and edit note"
 | 
				
			||||||
 | 
					                        ]
 | 
				
			||||||
 | 
					                    }
 | 
				
			||||||
 | 
					                ]
 | 
				
			||||||
 | 
					            },
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            version: "0.3.1",
 | 
					            version: "0.3.1",
 | 
				
			||||||
            tag: "clearsky",
 | 
					            tag: "clearsky",
 | 
				
			||||||
 | 
				
			|||||||
@ -1,7 +1,7 @@
 | 
				
			|||||||
//constant vars
 | 
					//constant vars
 | 
				
			||||||
//settings
 | 
					//settings
 | 
				
			||||||
var debug = false;
 | 
					var debug = false;
 | 
				
			||||||
var version = '0.3.1';
 | 
					var version = '0.3.2';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
var defaultTextHeight = 18;
 | 
					var defaultTextHeight = 18;
 | 
				
			||||||
var viewportMargin = 20;
 | 
					var viewportMargin = 20;
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user