- [Install on Linux - Steps](#install-on-linux---steps)
- [Compiling](#compiling)
- [To Do](#to-do)
- [Contributing](#contributing)
- [Quickstart](#quickstart)
- [Disclosure](#disclosure)
- [Licence](#licence)
@ -178,11 +179,11 @@
## Privacy
No personal information will be saved
No personal information will be saved or tracked.
Sessions will persist using the [partition:persist](https://electronjs.org/docs/api/webview-tag#partition) attribute for Webviews. So every time you open Rambox, your sessions will keep alive until you remove the service.
Sync feature use Auth0 for Single Sign On & Token Based Authentication and to store the services that user is using (and the configuration for each service). You are always welcome to check the code! ;)
Sync feature use [Auth0](https://auth0.com/) for Single Sign On & Token Based Authentication and to store the services that user is using (and the configuration for each service). You are always welcome to check the code! ;)
## Donations
@ -190,7 +191,21 @@ Sync feature use Auth0 for Single Sign On & Token Based Authentication and to st
## [Install on Linux - Steps](https://github.com/TheGoddessInari/rambox/wiki/Install-on-Linux)
## Compiling
To build your own copy, you need a recent version of [Sencha CMD](https://www.sencha.com/products/extjs/cmd-download/), and to install it with the Compass extension.
"setup:osx":"npm run sencha:clean && npm run sencha:compile && npm run clean:osx && npm run pack:osx && npm run build:osx",
"setup:win":"npm run sencha:clean && npm run sencha:compile && npm run clean:win && npm run pack:win && npm run build:win",
"setup:osx":"npm run sencha:clean && npm run sencha:compile && npm run build:osx",
"setup:win":"npm run sencha:clean && npm run sencha:compile && npm run build:win",
"setup:win32":"npm run sencha:clean && npm run sencha:compile && npm run build:win32",
"setup:win64":"npm run sencha:clean && npm run sencha:compile && npm run build:win64",
"setup:linux":"npm run sencha:clean && npm run sencha:compile && npm run build:linux",
"setup:linux32":"npm run sencha:clean && npm run sencha:compile && npm run build:linux32",
"setup:linux64":"npm run sencha:clean && npm run sencha:compile && npm run build:linux64",
"all:win":"npm run sencha:clean && npm run sencha:compile && npm run clean:win && npm run pack:win && npm run zip:win32 && npm run zip:win64 && npm run build:win",
"all:linux":"npm run sencha:clean && npm run sencha:compile && npm run build:linux"