├── .gitignore ├── .travis.yml ├── History.md ├── License.md ├── Makefile ├── Readme.md ├── ambiance.js ├── index.html ├── package.json └── resource ├── ambiance.css ├── app.icns ├── app.png ├── codemirror.css └── gcli.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/ambiance/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/ambiance/HEAD/.travis.yml -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- 1 | # Changes 2 | 3 | ## 0.0.1 / 2012-07-16 4 | 5 | - Initial release -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/ambiance/HEAD/License.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/ambiance/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/ambiance/HEAD/Readme.md -------------------------------------------------------------------------------- /ambiance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/ambiance/HEAD/ambiance.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/ambiance/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/ambiance/HEAD/package.json -------------------------------------------------------------------------------- /resource/ambiance.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/ambiance/HEAD/resource/ambiance.css -------------------------------------------------------------------------------- /resource/app.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/ambiance/HEAD/resource/app.icns -------------------------------------------------------------------------------- /resource/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/ambiance/HEAD/resource/app.png -------------------------------------------------------------------------------- /resource/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/ambiance/HEAD/resource/codemirror.css -------------------------------------------------------------------------------- /resource/gcli.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gozala/ambiance/HEAD/resource/gcli.css --------------------------------------------------------------------------------