Skip to content

Commit

Permalink
Merge pull request #11252 from owncloud/feat/remove-draw-io
Browse files Browse the repository at this point in the history
feat!: remove draw-io from default apps
  • Loading branch information
JammingBen committed Jul 22, 2024
1 parent 55b0891 commit 5e1230f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions deployments/oc10-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,7 @@ There are a few config values which need to be set in order for ownCloud Web to
"apps" : [
"files",
"preview",
"search",
"draw-io"
"search"
],
"applications" : [
{
Expand Down
1 change: 0 additions & 1 deletion development/repo-structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ Both `web-app-admin-settings` and `web-app-files` are standalone apps which are
Apps which fall into the categories `viewer` or `editor` can be opened from the context of a file or folder. This mostly happens from
within the `files` app. We currently bundle the following apps with the default ownCloud Web release artifact:

- `web-app-draw-io` an editor for `.drawio` files
- `web-app-external` an iframe integration of all the apps coming from the [app provider](https://owncloud.dev/services/app-provider/)
(e.g. OnlyOffice, Collabora Online and others)
- `web-app-pdf-viewer` a viewer for `.pdf` files, which relies on native PDF rendering support from the browser
Expand Down
2 changes: 1 addition & 1 deletion extension-system/viewer-editor-apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ This section will guide you through the process of implementing such an app with

An app is essentially a distinct package that must be specified as an external application in the Web configuration.

The structure of an app is quite simple and straightforward. Consider, for example, the [draw.io app](https://github.com/owncloud/web/tree/master/packages/web-app-draw-io). It consists of a `package.json` file, a `src` directory containing all the source code, and a `l10n` directory for translations. Optionally, you may also include a `tests` directory if your application requires testing.
The structure of an app is quite simple and straightforward. Consider, for example, the [pdf-viewer app](https://github.com/owncloud/web/tree/master/packages/web-app-pdf-viewer). It consists of a `package.json` file, a `src` directory containing all the source code, and a `l10n` directory for translations. Optionally, you may also include a `tests` directory if your application requires testing.

To learn more about apps in general, please refer to the [Web app docs]({{< ref "_index.md#apps" >}}).

Expand Down

0 comments on commit 5e1230f

Please sign in to comment.