├── CNAME ├── LICENSE ├── README.md ├── app ├── app.js ├── auth-helper.js ├── home │ ├── down-git.js │ ├── home.html │ └── home.js └── site.css ├── auth.html ├── gh-auth-worker.js ├── index.html ├── lib ├── angular-toastr(2.0.0).min.css ├── angular-toastr(2.0.0).tpls.min.js └── filesaver.min.js └── res └── images ├── downgit.png ├── processing.gif └── warning.png /CNAME: -------------------------------------------------------------------------------- 1 | downgit.evecalm.com -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/DownGit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/DownGit/HEAD/README.md -------------------------------------------------------------------------------- /app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/DownGit/HEAD/app/app.js -------------------------------------------------------------------------------- /app/auth-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/DownGit/HEAD/app/auth-helper.js -------------------------------------------------------------------------------- /app/home/down-git.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/DownGit/HEAD/app/home/down-git.js -------------------------------------------------------------------------------- /app/home/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/DownGit/HEAD/app/home/home.html -------------------------------------------------------------------------------- /app/home/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/DownGit/HEAD/app/home/home.js -------------------------------------------------------------------------------- /app/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/DownGit/HEAD/app/site.css -------------------------------------------------------------------------------- /auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/DownGit/HEAD/auth.html -------------------------------------------------------------------------------- /gh-auth-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/DownGit/HEAD/gh-auth-worker.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/DownGit/HEAD/index.html -------------------------------------------------------------------------------- /lib/angular-toastr(2.0.0).min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/DownGit/HEAD/lib/angular-toastr(2.0.0).min.css -------------------------------------------------------------------------------- /lib/angular-toastr(2.0.0).tpls.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/DownGit/HEAD/lib/angular-toastr(2.0.0).tpls.min.js -------------------------------------------------------------------------------- /lib/filesaver.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/DownGit/HEAD/lib/filesaver.min.js -------------------------------------------------------------------------------- /res/images/downgit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/DownGit/HEAD/res/images/downgit.png -------------------------------------------------------------------------------- /res/images/processing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/DownGit/HEAD/res/images/processing.gif -------------------------------------------------------------------------------- /res/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/DownGit/HEAD/res/images/warning.png --------------------------------------------------------------------------------