From 274b4dc69ae159f50c03afb0a8e6e1d72c95d5ae Mon Sep 17 00:00:00 2001 From: James Allen <james@sharelatex.com> Date: Thu, 26 Feb 2015 11:59:26 +0000 Subject: [PATCH] Release 0.1.3 --- CHANGELOG.md | 10 ++++++++++ Gruntfile.coffee | 20 ++++++++++---------- package.json | 2 +- 3 files changed, 21 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bc81670..0b4b894 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +v0.1.3 +------ + +* Fix bug with large files being corrupted when downloaded. +* Update Ace editor to lastest release. +* Lots of added null checks in the front-end javascript. +* Don't crash if 'unzip' program isn't present. +* Allow track-changes history to be packed into compressed 'packs'. This must be done manually for now. +* Escape any shell special characters in the CLSI root path. + v0.1.2 ------ diff --git a/Gruntfile.coffee b/Gruntfile.coffee index 8ca047a..d78f049 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -13,43 +13,43 @@ settings = require("settings-sharelatex") SERVICES = [{ name: "web" repo: "https://github.com/sharelatex/web-sharelatex.git" - version: "v0.1.2" + version: "v0.1.3" }, { name: "real-time" repo: "https://github.com/sharelatex/real-time-sharelatex.git" - version: "v0.1.2" + version: "v0.1.3" }, { name: "document-updater" repo: "https://github.com/sharelatex/document-updater-sharelatex.git" - version: "v0.1.2" + version: "v0.1.3" }, { name: "clsi" repo: "https://github.com/sharelatex/clsi-sharelatex.git" - version: "v0.1.2" + version: "v0.1.3" }, { name: "filestore" repo: "https://github.com/sharelatex/filestore-sharelatex.git" - version: "v0.1.2" + version: "v0.1.3" }, { name: "track-changes" repo: "https://github.com/sharelatex/track-changes-sharelatex.git" - version: "v0.1.2" + version: "v0.1.3" }, { name: "docstore" repo: "https://github.com/sharelatex/docstore-sharelatex.git" - version: "v0.1.2" + version: "v0.1.3" }, { name: "chat" repo: "https://github.com/sharelatex/chat-sharelatex.git" - version: "v0.1.2" + version: "v0.1.3" }, { name: "tags" repo: "https://github.com/sharelatex/tags-sharelatex.git" - version: "v0.1.2" + version: "v0.1.3" }, { name: "spelling" repo: "https://github.com/sharelatex/spelling-sharelatex.git" - version: "v0.1.2" + version: "v0.1.3" }] module.exports = (grunt) -> diff --git a/package.json b/package.json index e26c61e..67d60b7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sharelatex", - "version": "0.1.2", + "version": "0.1.3", "description": "An online collaborative LaTeX editor", "dependencies": { "async": "^0.9.0", -- GitLab