From fa9a9adb3aff1d89b96f4184ef1277e74f6de597 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Thu, 23 Feb 2023 08:29:14 +0100 Subject: [PATCH] move requirements to install --- docs/requirements.md | 20 -------------------- docs/setup.md | 11 +++++++++++ docs/support.md | 6 ++++++ mkdocs.yml | 9 ++++++++- 4 files changed, 25 insertions(+), 21 deletions(-) delete mode 100644 docs/requirements.md diff --git a/docs/requirements.md b/docs/requirements.md deleted file mode 100644 index 6cc1524..0000000 --- a/docs/requirements.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -hide: - - navigation - - toc ---- - -Requirements -============ - -## Versions greater or equal than 3.0 - -* Nextcloud >= 25 -* PHP >= 8.0 -* App `theming` enabled - -## Version less than 3.0 - -* Nextcloud <= 24 -* PHP >= 7.1 -* App `theming` enabled diff --git a/docs/setup.md b/docs/setup.md index 13c7b6a..e14da6f 100644 --- a/docs/setup.md +++ b/docs/setup.md @@ -7,6 +7,17 @@ hide: Installation and upgrade ======================== +Requirements +------------ + +| Version | Nextcloud | PHP | Other | +| :--: | :--: | :--: | :--: | +| 3.x | >= 25 | PHP >= 8.0 | App `theming` enabled | +| 2.x | < 25 | PHP >= 7.1 | App `theming` enabled | + +How to +------ + Custom menu is available from the [app store](https://apps.nextcloud.com/apps/side_menu). ```bash diff --git a/docs/support.md b/docs/support.md index 0bb88f5..5f1f6a4 100644 --- a/docs/support.md +++ b/docs/support.md @@ -10,6 +10,12 @@ Bugs and feature requests should be reported with an issue on https://gitnet.fr/ You can also join the official room on Matrix: [#custommenu:neutralnetwork.org](https://matrix.to/#/#custommenu:neutralnetwork.org). +| Version | Security | Bug | New feature | +| :--: | :--: | :--: | :--: | +| 3.x | {{ icon.check }} | {{ icon.check }} | {{ icon.check }} | +| 2.x | {{ icon.check }} | {{ icon.check }} | {{ icon.uncheck }} | +| 1.x | {{ icon.uncheck }} | {{ icon.uncheck }} | {{ icon.uncheck }} | +

Current issue(s)

diff --git a/mkdocs.yml b/mkdocs.yml index c9d2e4e..2edd41b 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -5,12 +5,16 @@ plugins: - search - social - autolinks + - markdownextradata - redirects: redirect_maps: 'tips.md': 'faq.md' extra: generator: false + icon: + check: ":fontawesome-solid-check:" + uncheck: ":fontawesome-solid-xmark:" theme: name: material @@ -26,6 +30,7 @@ theme: scheme: slate markdown_extensions: + - extra - admonition - pymdownx.highlight: anchor_linenums: true @@ -44,11 +49,13 @@ markdown_extensions: - pymdownx.details - attr_list - md_in_html + - pymdownx.emoji: + emoji_index: !!python/name:materialx.emoji.twemoji + emoji_generator: !!python/name:materialx.emoji.to_svg nav: - Overview: index.md - Screenshots: screenshots.md - - Requirements: requirements.md - Install and upgrade: setup.md - FAQ: faq.md - Support: support.md