├── .gitignore ├── README.md └── paper.png /.gitignore: -------------------------------------------------------------------------------- 1 | ### https://raw.github.com/github/gitignore/be3333655bffe9507d66cc864aee95ed6052b4ed/Global/OSX.gitignore 2 | 3 | .DS_Store 4 | .AppleDouble 5 | .LSOverride 6 | 7 | # Icon must end with two \r 8 | Icon 9 | 10 | 11 | # Thumbnails 12 | ._* 13 | 14 | # Files that might appear in the root of a volume 15 | .DocumentRevisions-V100 16 | .fseventsd 17 | .Spotlight-V100 18 | .TemporaryItems 19 | .Trashes 20 | .VolumeIcon.icns 21 | 22 | # Directories potentially created on remote AFP share 23 | .AppleDB 24 | .AppleDesktop 25 | Network Trash Folder 26 | Temporary Items 27 | .apdisk 28 | 29 | # Custom 30 | Dropbox Paper-darwin-x64 31 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Dropbox Paper for Mac (Unofficial) 2 | Mac app wrapper around [paper.dropbox.com](https://paper.dropbox.com) 3 | 4 | > [Download latest release](https://github.com/mituoh/Dropbox-Paper-Mac/releases/download/v1.1/Dropbox.Paper.app.zip)
5 | 6 | - Disclaimer: This is NOT an official Dropbox product 7 | 8 | ![Dropbox Paper for Mac Icon](paper.png) 9 | 10 | This app generated by Electron and [nativefier](https://github.com/jiahaog/nativefier). -------------------------------------------------------------------------------- /paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituoh/Dropbox-Paper-Mac/39ea5462ed4b5611b424f69734b53f23ee728a59/paper.png --------------------------------------------------------------------------------