diff --git a/mkdocs-website/docs/en/roadmap.md b/mkdocs-website/docs/en/roadmap.md index ac2fdf7f9..ac965272d 100644 --- a/mkdocs-website/docs/en/roadmap.md +++ b/mkdocs-website/docs/en/roadmap.md @@ -1,4 +1,4 @@ -# Roadmap +**# Roadmap The roadmap is a living document and is subject to change. If you have any suggestions, please open an issue. Each milestone will have a set of goals that we are aiming to achieve. These are subject to change. @@ -14,27 +14,11 @@ The main goal is to get most of the examples working on all platforms. #### Status -- W - Working -- P - Partially working -- N - Not working +- :material-check-bold: - Working +- :material-minus: - Partially working +- :material-close: - Not working -| Example | Mac | Windows | Linux | -|---------------|-----|---------|-------| -| binding | W | W | | -| build | W | W | | -| clipboard | W | W | | -| context menus | W | W | | -| dialogs | P | W | | -| drag-n-drop | W | N | | -| events | W | W | | -| frameless | W | W | | -| keybindings | W | W | | -| plain | W | W | | -| screen | W | W | | -| systray | W | W | | -| video | | W | | -| window | P | W | | -| wml | W | W | | +{{ read_csv("status.csv") }} - Mac Dialogs work, however the file dialogs issue a warning that needs to be fixed. diff --git a/mkdocs-website/docs/zh/roadmap.md b/mkdocs-website/docs/zh/roadmap.md index 3d9a8dd7b..c804f4269 100644 --- a/mkdocs-website/docs/zh/roadmap.md +++ b/mkdocs-website/docs/zh/roadmap.md @@ -14,27 +14,11 @@ Alpha 1 是最初的发布版本。旨在收集关于新 API 的反馈,并让 #### 状态 -- W - 工作正常 -- P - 部分工作 -- N - 无法工作 +- :material-check-bold: - 工作正常 +- :material-minus: - 部分工作 +- :material-close: - 无法工作 -| 示例 | Mac | Windows | Linux | -|---------------|-----|---------|-------| -| binding | W | W | | -| build | W | W | | -| clipboard | W | W | | -| context menus | W | W | | -| dialogs | P | W | | -| drag-n-drop | W | N | | -| events | W | W | | -| frameless | W | W | | -| keybindings | W | W | | -| plain | W | W | | -| screen | W | W | | -| systray | W | W | | -| video | | W | | -| window | P | W | | -| wml | W | W | | +{{ read_csv("status.csv") }} - Mac 上的 Dialogs 可以工作,但是文件对话框会发出一个需要解决的警告。 diff --git a/mkdocs-website/mkdocs.yml b/mkdocs-website/mkdocs.yml index 71edd409b..17fcc3d83 100644 --- a/mkdocs-website/mkdocs.yml +++ b/mkdocs-website/mkdocs.yml @@ -50,6 +50,9 @@ theme: name: Switch to light mode plugins: + - table-reader: + data_path: "shared" + allow_missing_files: False - i18n: docs_structure: folder languages: @@ -182,6 +185,8 @@ markdown_extensions: - pymdownx.emoji: emoji_index: !!python/name:material.extensions.emoji.twemoji emoji_generator: !!python/name:material.extensions.emoji.to_svg - +watch: + - overrides + - shared copyright: Copyright © 2023 Lea Anthony diff --git a/mkdocs-website/requirements.insiders.txt b/mkdocs-website/requirements.insiders.txt index a07ac4787..f51e415ed 100644 Binary files a/mkdocs-website/requirements.insiders.txt and b/mkdocs-website/requirements.insiders.txt differ diff --git a/mkdocs-website/requirements.txt b/mkdocs-website/requirements.txt new file mode 100644 index 000000000..b0746f147 Binary files /dev/null and b/mkdocs-website/requirements.txt differ diff --git a/mkdocs-website/shared/status.csv b/mkdocs-website/shared/status.csv new file mode 100644 index 000000000..161829a2c --- /dev/null +++ b/mkdocs-website/shared/status.csv @@ -0,0 +1,16 @@ +" ",Mac,Windows,Linux +binding,:material-check-bold:,:material-check-bold:,:material-check-bold: +build,:material-check-bold:,:material-check-bold:," " +clipboard,:material-check-bold:,:material-check-bold:,:material-check-bold: +context menus,:material-check-bold:,:material-check-bold:,:material-check-bold: +dialogs,:material-minus:,:material-check-bold:," " +drag-n-drop,:material-check-bold:,:material-close:," " +events,:material-check-bold:,:material-check-bold:," " +frameless,:material-check-bold:,:material-check-bold:," " +keybindings,:material-check-bold:,:material-check-bold:," " +plain,:material-check-bold:,:material-check-bold:," " +screen,:material-check-bold:,:material-check-bold:," " +systray,:material-check-bold:,:material-check-bold:,:material-check-bold: +video,:material-check-bold:,:material-check-bold:," " +window,:material-minus:,:material-check-bold:," " +wml,:material-check-bold:,:material-check-bold:," " \ No newline at end of file