├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gruntfile.js ├── LICENSE ├── Makefile ├── README.md ├── ROADMAP.md ├── assets ├── OrbitLogo.png ├── OrbitLogo_32x32.png └── orbit.icns ├── circle.yml ├── config ├── orbit.config.js └── window.config.js ├── index.js ├── menu-native.js ├── package.json ├── screenshots ├── orbit-electron-screenshot1.png └── orbit-electron-screenshot2.png └── scripts ├── create_app_icon.sh └── create_favicon.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-electron/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-electron/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-electron/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-electron/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-electron/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-electron/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-electron/HEAD/README.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-electron/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /assets/OrbitLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-electron/HEAD/assets/OrbitLogo.png -------------------------------------------------------------------------------- /assets/OrbitLogo_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-electron/HEAD/assets/OrbitLogo_32x32.png -------------------------------------------------------------------------------- /assets/orbit.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-electron/HEAD/assets/orbit.icns -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-electron/HEAD/circle.yml -------------------------------------------------------------------------------- /config/orbit.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-electron/HEAD/config/orbit.config.js -------------------------------------------------------------------------------- /config/window.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-electron/HEAD/config/window.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-electron/HEAD/index.js -------------------------------------------------------------------------------- /menu-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-electron/HEAD/menu-native.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-electron/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/orbit-electron-screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-electron/HEAD/screenshots/orbit-electron-screenshot1.png -------------------------------------------------------------------------------- /screenshots/orbit-electron-screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-electron/HEAD/screenshots/orbit-electron-screenshot2.png -------------------------------------------------------------------------------- /scripts/create_app_icon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-electron/HEAD/scripts/create_app_icon.sh -------------------------------------------------------------------------------- /scripts/create_favicon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orbitdb-archive/orbit-electron/HEAD/scripts/create_favicon.sh --------------------------------------------------------------------------------