Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore/release 1.0.0 rc.1 #143

Merged
merged 2 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 15 additions & 8 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,30 +9,37 @@
<summary>Whiteboard app</summary>
<description><![CDATA[

Collaborative whiteboard app for Nextcloud
The official whiteboard app for Nextcloud. It allows users to create and share whiteboards with other users and collaborate in real-time.

**Whiteboard requires a separate collaboration server to work.** Please see the [documentation](https://github.com/nextcloud/whiteboard?tab=readme-ov-file#backend) on how to install it.

- 🎨 Drawing shapes, writing text, connecting elements
- 📝 Real-time collaboration
- 🖼️ Add images with drag and drop
- 📊 Easily add mermaid diagrams
- ✨ Use the smartpicker to embed other elements from Nextcloud
- 📦 Image export
- 💪 Strong foundation: We use Excalidraw as our base library

]]>
</description>
<version>0.3.0-beta.1</version>
<version>1.0.0-rc.1</version>
<licence>agpl</licence>
<author>Julius Härtl</author>
<namespace>Whiteboard</namespace>
<types>
<filesystem/>
<dav/>
</types>
<documentation>
<admin>https://github.com/nextcloud/whiteboard/blob/main/README.md</admin>
</documentation>
<category>tools</category>
<category>files</category>
<category>office</category>

<website>https://github.com/nextcloud/whiteboard</website>
<bugs>https://github.com/nextcloud/whiteboard/issues</bugs>
<repository>https://github.com/nextcloud/whiteboard.git</repository>
<screenshot>https://raw.githubusercontent.com/nextcloud/whiteboard/main/screenshots/0.7.0.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/whiteboard/main/screenshots/screenshot1.png</screenshot>

<dependencies>
<nextcloud min-version="29" max-version="30"/>
<nextcloud min-version="28" max-version="30"/>
</dependencies>
</info>
1 change: 1 addition & 0 deletions websocket_server/AppManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export default class AppManager {

setupRoutes() {
this.app.get('/', this.homeHandler.bind(this))
this.app.get('/status', this.statusHandler.bind(this))
this.app.get('/metrics', this.metricsHandler.bind(this))
}

Expand Down
Loading