├── .editorconfig ├── .gitignore ├── .jshintrc ├── Gruntfile.js ├── README.md ├── app ├── app.js ├── controllers │ └── base.js ├── directives │ ├── konsole.directive.js │ └── showFocus.directive.js ├── filters │ └── fileSize.filter.js ├── pages │ └── main.html ├── services │ ├── analytics.service.js │ ├── ftp.service.js │ └── konsole.service.js ├── stylesheets │ ├── less │ │ ├── animations.less │ │ ├── console.less │ │ ├── main.less │ │ ├── menu.less │ │ ├── modals.less │ │ ├── reset.less │ │ └── variables.less │ └── main.css ├── templates │ └── directives │ │ └── konsole.template.html └── visuals │ ├── ffftp-512.png │ ├── ffftp200w.png │ ├── icon200.png │ └── icons │ ├── file.png │ ├── folder.png │ ├── folder.svg │ └── new-connection.svg ├── icon.icns ├── icon.ico ├── index.html ├── main.js └── package.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/.jshintrc -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/README.md -------------------------------------------------------------------------------- /app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/app/app.js -------------------------------------------------------------------------------- /app/controllers/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/app/controllers/base.js -------------------------------------------------------------------------------- /app/directives/konsole.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/app/directives/konsole.directive.js -------------------------------------------------------------------------------- /app/directives/showFocus.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/app/directives/showFocus.directive.js -------------------------------------------------------------------------------- /app/filters/fileSize.filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/app/filters/fileSize.filter.js -------------------------------------------------------------------------------- /app/pages/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/app/pages/main.html -------------------------------------------------------------------------------- /app/services/analytics.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/app/services/analytics.service.js -------------------------------------------------------------------------------- /app/services/ftp.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/app/services/ftp.service.js -------------------------------------------------------------------------------- /app/services/konsole.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/app/services/konsole.service.js -------------------------------------------------------------------------------- /app/stylesheets/less/animations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/app/stylesheets/less/animations.less -------------------------------------------------------------------------------- /app/stylesheets/less/console.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/app/stylesheets/less/console.less -------------------------------------------------------------------------------- /app/stylesheets/less/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/app/stylesheets/less/main.less -------------------------------------------------------------------------------- /app/stylesheets/less/menu.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/app/stylesheets/less/menu.less -------------------------------------------------------------------------------- /app/stylesheets/less/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/app/stylesheets/less/modals.less -------------------------------------------------------------------------------- /app/stylesheets/less/reset.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/app/stylesheets/less/reset.less -------------------------------------------------------------------------------- /app/stylesheets/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/app/stylesheets/less/variables.less -------------------------------------------------------------------------------- /app/stylesheets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/app/stylesheets/main.css -------------------------------------------------------------------------------- /app/templates/directives/konsole.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/app/templates/directives/konsole.template.html -------------------------------------------------------------------------------- /app/visuals/ffftp-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/app/visuals/ffftp-512.png -------------------------------------------------------------------------------- /app/visuals/ffftp200w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/app/visuals/ffftp200w.png -------------------------------------------------------------------------------- /app/visuals/icon200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/app/visuals/icon200.png -------------------------------------------------------------------------------- /app/visuals/icons/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/app/visuals/icons/file.png -------------------------------------------------------------------------------- /app/visuals/icons/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/app/visuals/icons/folder.png -------------------------------------------------------------------------------- /app/visuals/icons/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/app/visuals/icons/folder.svg -------------------------------------------------------------------------------- /app/visuals/icons/new-connection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/app/visuals/icons/new-connection.svg -------------------------------------------------------------------------------- /icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/icon.icns -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/icon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/index.html -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchas/ffftp/HEAD/package.json --------------------------------------------------------------------------------