├── .gitattributes ├── .gitignore ├── README.md ├── empty.txt ├── license.md ├── main.js ├── modules ├── CryptoManager.js ├── DialogCollection.js ├── ExtensionDiagnosis.js ├── FileManager.js ├── FileTreeView.js ├── Log.js ├── Menu.js ├── Notify.js ├── Panel.js ├── PathManager.js ├── PreferenceManager.js ├── Project.js ├── RemoteManager.js ├── SettingManager.js ├── Shared.js └── Utils.js ├── nls ├── de │ └── strings.js ├── ja │ └── strings.js ├── root │ └── strings.js └── strings.js ├── node ├── SynapseDomain.js ├── node_modules │ └── ftp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── TODO │ │ ├── lib │ │ ├── connection.js │ │ └── parser.js │ │ ├── package.json │ │ └── test │ │ ├── test-parser.js │ │ └── test.js └── package.json ├── package.json ├── strings.js └── ui ├── css ├── log.css ├── notify.css ├── style.css └── treeview.css ├── decryptPassword.html ├── log.html ├── main.html ├── notify.html ├── notify ├── base.html ├── decryptPassword.html └── secureWarning.html ├── serverList.html ├── serverSetting.html └── synapse.svg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/README.md -------------------------------------------------------------------------------- /empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/license.md -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/main.js -------------------------------------------------------------------------------- /modules/CryptoManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/modules/CryptoManager.js -------------------------------------------------------------------------------- /modules/DialogCollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/modules/DialogCollection.js -------------------------------------------------------------------------------- /modules/ExtensionDiagnosis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/modules/ExtensionDiagnosis.js -------------------------------------------------------------------------------- /modules/FileManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/modules/FileManager.js -------------------------------------------------------------------------------- /modules/FileTreeView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/modules/FileTreeView.js -------------------------------------------------------------------------------- /modules/Log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/modules/Log.js -------------------------------------------------------------------------------- /modules/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/modules/Menu.js -------------------------------------------------------------------------------- /modules/Notify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/modules/Notify.js -------------------------------------------------------------------------------- /modules/Panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/modules/Panel.js -------------------------------------------------------------------------------- /modules/PathManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/modules/PathManager.js -------------------------------------------------------------------------------- /modules/PreferenceManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/modules/PreferenceManager.js -------------------------------------------------------------------------------- /modules/Project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/modules/Project.js -------------------------------------------------------------------------------- /modules/RemoteManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/modules/RemoteManager.js -------------------------------------------------------------------------------- /modules/SettingManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/modules/SettingManager.js -------------------------------------------------------------------------------- /modules/Shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/modules/Shared.js -------------------------------------------------------------------------------- /modules/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/modules/Utils.js -------------------------------------------------------------------------------- /nls/de/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/nls/de/strings.js -------------------------------------------------------------------------------- /nls/ja/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/nls/ja/strings.js -------------------------------------------------------------------------------- /nls/root/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/nls/root/strings.js -------------------------------------------------------------------------------- /nls/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/nls/strings.js -------------------------------------------------------------------------------- /node/SynapseDomain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/node/SynapseDomain.js -------------------------------------------------------------------------------- /node/node_modules/ftp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/node/node_modules/ftp/LICENSE -------------------------------------------------------------------------------- /node/node_modules/ftp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/node/node_modules/ftp/README.md -------------------------------------------------------------------------------- /node/node_modules/ftp/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/node/node_modules/ftp/TODO -------------------------------------------------------------------------------- /node/node_modules/ftp/lib/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/node/node_modules/ftp/lib/connection.js -------------------------------------------------------------------------------- /node/node_modules/ftp/lib/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/node/node_modules/ftp/lib/parser.js -------------------------------------------------------------------------------- /node/node_modules/ftp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/node/node_modules/ftp/package.json -------------------------------------------------------------------------------- /node/node_modules/ftp/test/test-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/node/node_modules/ftp/test/test-parser.js -------------------------------------------------------------------------------- /node/node_modules/ftp/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/node/node_modules/ftp/test/test.js -------------------------------------------------------------------------------- /node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/node/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/package.json -------------------------------------------------------------------------------- /strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/strings.js -------------------------------------------------------------------------------- /ui/css/log.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/ui/css/log.css -------------------------------------------------------------------------------- /ui/css/notify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/ui/css/notify.css -------------------------------------------------------------------------------- /ui/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/ui/css/style.css -------------------------------------------------------------------------------- /ui/css/treeview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/ui/css/treeview.css -------------------------------------------------------------------------------- /ui/decryptPassword.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/ui/log.html -------------------------------------------------------------------------------- /ui/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/ui/main.html -------------------------------------------------------------------------------- /ui/notify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/ui/notify.html -------------------------------------------------------------------------------- /ui/notify/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/ui/notify/base.html -------------------------------------------------------------------------------- /ui/notify/decryptPassword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/ui/notify/decryptPassword.html -------------------------------------------------------------------------------- /ui/notify/secureWarning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/ui/notify/secureWarning.html -------------------------------------------------------------------------------- /ui/serverList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/ui/serverList.html -------------------------------------------------------------------------------- /ui/serverSetting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/ui/serverSetting.html -------------------------------------------------------------------------------- /ui/synapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooohei/brackets-synapse/HEAD/ui/synapse.svg --------------------------------------------------------------------------------