├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets └── icon.png ├── package.json ├── screenshots ├── banner.png ├── image1.png └── notion-desktop.jpeg ├── snapcraft.yaml ├── src ├── config │ └── index.js └── main.js └── v1bin.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forgexfoundation/notion-desktop/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forgexfoundation/notion-desktop/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forgexfoundation/notion-desktop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forgexfoundation/notion-desktop/HEAD/README.md -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forgexfoundation/notion-desktop/HEAD/assets/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forgexfoundation/notion-desktop/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forgexfoundation/notion-desktop/HEAD/screenshots/banner.png -------------------------------------------------------------------------------- /screenshots/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forgexfoundation/notion-desktop/HEAD/screenshots/image1.png -------------------------------------------------------------------------------- /screenshots/notion-desktop.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forgexfoundation/notion-desktop/HEAD/screenshots/notion-desktop.jpeg -------------------------------------------------------------------------------- /snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forgexfoundation/notion-desktop/HEAD/snapcraft.yaml -------------------------------------------------------------------------------- /src/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forgexfoundation/notion-desktop/HEAD/src/config/index.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forgexfoundation/notion-desktop/HEAD/src/main.js -------------------------------------------------------------------------------- /v1bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forgexfoundation/notion-desktop/HEAD/v1bin.txt --------------------------------------------------------------------------------