Skip to content

Commit

Permalink
evol/3-upload-selection
Browse files Browse the repository at this point in the history
Prepare project for publishing
  • Loading branch information
amoussard committed Jun 2, 2014
1 parent 266b4a3 commit 000822a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
17 changes: 10 additions & 7 deletions README.md
Expand Up @@ -14,16 +14,16 @@ SFTP-Deployment is a package for Atom.io using [SSH2 client](https://github.com/
* Working off of a server
* Create, edit, rename and delete files
* Create, rename and delete folders
* Upload files
* Download files
* Upload/Download files
* Upload/Download folders

###Compatibility
* Supports FTP and SFTP servers
* Password and SSH key auth with SSH agent support
* Password SSH support
* Works on Windows, OS X and Linux

###Integration
* menu entries and command palette control
* Menu entries and command palette control
* File-based configuration (JSON)
* Colorized output panel with options for automatic hiding

Expand Down Expand Up @@ -66,13 +66,13 @@ For FTP protocol :
##Next Versions

###Workflows
* Upload folders, or just the changes since your last commit
* Download folders
* Upload just the changes since your last commit
* See upload/download progress

###Compatibility
* Supports FTPS servers
* Supports both implicit (port 990) and explicit SSL for FTPS connections
* SSH key auth with SSH agent support
* Detects and informs about SSH host key changes
* Can detect changes via Git, Mercurial and SVN

Expand All @@ -81,7 +81,10 @@ For FTP protocol :
* Secure password and passphrase entry

##Version
* `0.1.1`
* `0.4.0`
* Upload/Download of folders
* Refactoring of code
* `0.3.0`
* Refactoring of the code
* Notifications/message system
* FTP support
Expand Down
4 changes: 2 additions & 2 deletions lib/sftp-deployment.js
@@ -1,11 +1,11 @@
var DeploymentManager = require('./DeploymentManager');
var MessageObserver = require('./observers/MessageObserver');
// DEV MODE
var ConsoleObserver = require('./observers/ConsoleObserver');
// var ConsoleObserver = require('./observers/ConsoleObserver');
var manager = new DeploymentManager();
manager.registerObserver(new MessageObserver());
// DEV MODE
manager.registerObserver(new ConsoleObserver());
// manager.registerObserver(new ConsoleObserver());

module.exports = {
activate: function() {
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "SFTP-deployment",
"description": "A package which allow you to upload and download files with FTP/SFTP protocol",
"version": "0.3.0",
"version": "0.4.0",
"author": {
"name": "Ellipsis Team",
"email": "axel.moussard@gmail.com"
Expand Down

0 comments on commit 000822a

Please sign in to comment.