├── manifest.json ├── manifest-beta.json ├── LICENSE.md ├── versions.json └── README.md /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "screengarden-obsidian", 3 | "name": "screen.garden", 4 | "version": "2.1.1", 5 | "minAppVersion": "1.7.2", 6 | "description": "Collaborate, share, and edit on the web with screen.garden.", 7 | "author": "screen.garden", 8 | "authorUrl": "https://screen.garden/", 9 | "isDesktopOnly": false 10 | } -------------------------------------------------------------------------------- /manifest-beta.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "screengarden-obsidian", 3 | "name": "screen.garden", 4 | "version": "2.1.1", 5 | "minAppVersion": "1.7.2", 6 | "description": "Collaborate, share, and edit on the web with screen.garden.", 7 | "author": "screen.garden", 8 | "authorUrl": "https://screen.garden/", 9 | "isDesktopOnly": false 10 | } -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | # screen.garden beta license 2 | 3 | The code in this repository (https://github.com/screendotgarden/screengarden-obsidian) is Copyright © 2023 screengarden, LLC, all rights reserved. The code here is proprietary and confidential. Unauthorized copying of any files herein, via any medium and for any purpose, is prohibited. 4 | 5 | "Obsidian" and the Obsidian logo are © 2023 Obsidian. 6 | 7 | This license applies to the beta period of screen.garden, after which it will be superseded by a more permissive one. As long as this license is available at LICENSE.md at the URL above, consider it in effect. 8 | -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "0.0.1": "1.1.16", 3 | "0.0.2": "1.1.16", 4 | "0.0.3": "1.1.16", 5 | "0.0.4": "1.1.16", 6 | "0.0.5": "1.1.16", 7 | "0.0.6": "1.1.16", 8 | "0.0.7": "1.1.16", 9 | "0.0.8": "1.1.16", 10 | "0.0.9": "1.1.16", 11 | "0.0.10": "1.1.16", 12 | "0.0.11": "1.1.16", 13 | "0.0.12": "1.1.16", 14 | "0.0.13": "1.1.16", 15 | "0.0.14": "1.1.16", 16 | "1.0.0": "1.7.2", 17 | "1.1.0": "1.7.2", 18 | "1.1.1": "1.7.2", 19 | "1.2.0": "1.7.2", 20 | "1.2.1": "1.7.2", 21 | "1.2.2": "1.7.2", 22 | "1.3.0": "1.7.2", 23 | "1.3.1": "1.7.2", 24 | "1.3.2": "1.7.2", 25 | "1.3.3": "1.7.2", 26 | "2.0.0": "1.7.2", 27 | "2.0.1": "1.7.2", 28 | "2.1.0": "1.7.2", 29 | "2.1.1": "1.7.2" 30 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # screengarden-obsidian 2 | 3 | This is the [Obsidian](https://obsidian.md) plugin for [screen.garden](https://screen.garden). 4 | 5 | screen.garden is the best way to collaborate within Obsidian and get access to [amazing features](https://screen.garden/features) like: 6 | 7 | - Realtime note collaboration with live cursors 8 | - Presence so you can see where others are editing in a vault 9 | - Folder- or vault-level sharing 10 | - Fine-grained permissions with private and public collections 11 | - File sync—share images, videos, and any other file alongside your live notes 12 | - Web access—read and edit your notes on the web 13 | 14 | And much more. 15 | 16 | ## Installing 17 | 18 | You find [screen.garden in Obsidian’s Community Plugins](obsidian://show-plugin?id=screengarden-obsidian). 19 | 20 | ## Support 21 | 22 | For priority support please email [support@screen.garden](mailto:support@screen.garden) or [join our Discord](https://discord.gg/nQgX68RJPj). 23 | 24 | ## Getting Started 25 | 26 | To get started after installing, open the plugin’s settings and log in. Click the status or ribbon icon to open the home screen. Right-click any folder and select "Sync in screen.garden" to begin collaborating. 27 | 28 | ## License 29 | 30 | [screen.garden has a closed license](./LICENSE.md). We intend to revisit this license once we have a better sense of how people are using screen.garden. 31 | 32 | ## Disclosures 33 | 34 | - An account is required for full access 35 | - After a trial period, membership on a subscribed team is required for full access 36 | - Network use 37 | - Connections are made to screen.garden servers for the purpose of sending and receiving note/file edits and metadata 38 | - screen.garden may connect to this GitHub repository to check for upates 39 | - screen.garden does not connect to any third-party services 40 | - See https://screen.garden/privacy for details 41 | - screen.garden code is, for the time being, closed source. See [License](#license) 42 | --------------------------------------------------------------------------------