Compare commits
10 Commits
old-master
...
v0.1.3
| Author | SHA1 | Date | |
|---|---|---|---|
| 274b4dc69a | |||
| 32267e3ab2 | |||
| 7d2e86f07d | |||
| 5813e23fa8 | |||
| 0c9b6dbdc2 | |||
| e710856453 | |||
| 2cbd683d89 | |||
| 3d97353750 | |||
| c242ac606a | |||
| e65e87a8a8 |
@@ -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
|
v0.1.2
|
||||||
------
|
------
|
||||||
|
|
||||||
|
|||||||
+11
-11
@@ -13,43 +13,43 @@ settings = require("settings-sharelatex")
|
|||||||
SERVICES = [{
|
SERVICES = [{
|
||||||
name: "web"
|
name: "web"
|
||||||
repo: "https://github.com/sharelatex/web-sharelatex.git"
|
repo: "https://github.com/sharelatex/web-sharelatex.git"
|
||||||
version: "master"
|
version: "v0.1.3"
|
||||||
}, {
|
}, {
|
||||||
name: "real-time"
|
name: "real-time"
|
||||||
repo: "https://github.com/sharelatex/real-time-sharelatex.git"
|
repo: "https://github.com/sharelatex/real-time-sharelatex.git"
|
||||||
version: "master"
|
version: "v0.1.3"
|
||||||
}, {
|
}, {
|
||||||
name: "document-updater"
|
name: "document-updater"
|
||||||
repo: "https://github.com/sharelatex/document-updater-sharelatex.git"
|
repo: "https://github.com/sharelatex/document-updater-sharelatex.git"
|
||||||
version: "master"
|
version: "v0.1.3"
|
||||||
}, {
|
}, {
|
||||||
name: "clsi"
|
name: "clsi"
|
||||||
repo: "https://github.com/sharelatex/clsi-sharelatex.git"
|
repo: "https://github.com/sharelatex/clsi-sharelatex.git"
|
||||||
version: "master"
|
version: "v0.1.3"
|
||||||
}, {
|
}, {
|
||||||
name: "filestore"
|
name: "filestore"
|
||||||
repo: "https://github.com/sharelatex/filestore-sharelatex.git"
|
repo: "https://github.com/sharelatex/filestore-sharelatex.git"
|
||||||
version: "master"
|
version: "v0.1.3"
|
||||||
}, {
|
}, {
|
||||||
name: "track-changes"
|
name: "track-changes"
|
||||||
repo: "https://github.com/sharelatex/track-changes-sharelatex.git"
|
repo: "https://github.com/sharelatex/track-changes-sharelatex.git"
|
||||||
version: "master"
|
version: "v0.1.3"
|
||||||
}, {
|
}, {
|
||||||
name: "docstore"
|
name: "docstore"
|
||||||
repo: "https://github.com/sharelatex/docstore-sharelatex.git"
|
repo: "https://github.com/sharelatex/docstore-sharelatex.git"
|
||||||
version: "master"
|
version: "v0.1.3"
|
||||||
}, {
|
}, {
|
||||||
name: "chat"
|
name: "chat"
|
||||||
repo: "https://github.com/sharelatex/chat-sharelatex.git"
|
repo: "https://github.com/sharelatex/chat-sharelatex.git"
|
||||||
version: "master"
|
version: "v0.1.3"
|
||||||
}, {
|
}, {
|
||||||
name: "tags"
|
name: "tags"
|
||||||
repo: "https://github.com/sharelatex/tags-sharelatex.git"
|
repo: "https://github.com/sharelatex/tags-sharelatex.git"
|
||||||
version: "master"
|
version: "v0.1.3"
|
||||||
}, {
|
}, {
|
||||||
name: "spelling"
|
name: "spelling"
|
||||||
repo: "https://github.com/sharelatex/spelling-sharelatex.git"
|
repo: "https://github.com/sharelatex/spelling-sharelatex.git"
|
||||||
version: "master"
|
version: "v0.1.3"
|
||||||
}]
|
}]
|
||||||
|
|
||||||
module.exports = (grunt) ->
|
module.exports = (grunt) ->
|
||||||
@@ -88,7 +88,7 @@ module.exports = (grunt) ->
|
|||||||
|
|
||||||
shell:
|
shell:
|
||||||
migrate:
|
migrate:
|
||||||
command: "./node_modules/east/bin/east migrate --adapter east-mongo --url #{settings.mongo.url}"
|
command: "./node_modules/east/bin/east migrate --adapter east-mongo --url #{settings?.mongo?.url}"
|
||||||
|
|
||||||
availabletasks:
|
availabletasks:
|
||||||
tasks:
|
tasks:
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "sharelatex",
|
"name": "sharelatex",
|
||||||
"version": "0.0.1",
|
"version": "0.1.3",
|
||||||
"description": "An online collaborative LaTeX editor",
|
"description": "An online collaborative LaTeX editor",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"async": "^0.9.0",
|
"async": "^0.9.0",
|
||||||
|
|||||||
Reference in New Issue
Block a user