-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes and Features * Status indicators on commands. (Yellow circle for ongoing, Green disc for completed, red square for error) * quote wraps to fix bug with files having space characters in their names * Check connection of --remote_base at startup, saves a lot of hassle and initial confusion.
- Loading branch information
bensmoif
committed
Feb 16, 2015
1 parent
19ffa70
commit ecb338d
Showing
3 changed files
with
78 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,9 +25,10 @@ Show help: | |
Options: | ||
--remote_base URL for the remote endpoint [required] | ||
--local_base Path to the local directory [required] | ||
--curl Default curl command [default: "curl --insecure --verbose"] | ||
--curl Default curl command [default: "curl --insecure -s -S"] | ||
--ignored Comma separated list of ignored paths [default: ".hg,.git,.svn,.DS_Store"] | ||
--help Displays this help | ||
--verbose Makes webdav-sync more talkative with complete curl command and timestamp | ||
--help, -h Displays this help | ||
|
||
|
||
Syncing /var/src/code with https://user:[email protected]/webdav/cartridge/ | ||
|
@@ -59,6 +60,8 @@ Simply execute `cake dev` to start continuous compilation. You may also want to | |
|
||
- 0.1.1: First release | ||
- 0.2.4: Upgrading to node 0.6.x | ||
- 0.3.0: Cleanup and --verbose flag added | ||
- 0.3.1: File transfer fixes and transfer status icons | ||
|
||
### TODO | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "webdav-sync", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
bensmoif
Collaborator
|
||
"description": "Basic local sync to WebDAV servers", | ||
"author": { | ||
"name": "Bermi Ferrer", | ||
|
@@ -43,9 +43,6 @@ | |
"optimist": "0.3.x", | ||
"pkginfo": "0.2.x" | ||
}, | ||
"devDependencies": { | ||
"coffee-script": "1.2.x" | ||
}, | ||
"engines": { | ||
"node": ">=0.6" | ||
}, | ||
|
@@ -55,7 +52,7 @@ | |
"type": "git", | ||
"url": "git://github.com/bermi/webdav-sync.git" | ||
}, | ||
"_id": "webdav-sync@0.2.4", | ||
"_id": "webdav-sync@0.3.1", | ||
"dist": { | ||
"shasum": "1974b0da4c82c6481098a78b6c7541dbbb9f0f4d" | ||
}, | ||
|
Since the stdout has changed, wouldn't it make sense to make this a minor release instead of a patch release? If someone complains (I don't think there's anyone using the stdout of this project programatically) we might have to pull off the version from npm.