diff --git a/.github/README.md b/.github/README.md index 754d8234..ff6aa546 100644 --- a/.github/README.md +++ b/.github/README.md @@ -148,6 +148,7 @@ | 🟢 | | Stream-Rec Web版 | https://github.com/hua0512/stream-rec/ | 【前端版】Stream-rec是一个用于各种流媒体服务的自动流媒体录制工具 | | | 🟢 | | Stream-Rec 服务版 | https://github.com/hua0512/stream-rec/ | 【服务版】Stream-rec是一个用于各种流媒体服务的自动流媒体录制工具 | | | 🟢 | | Sun Panel | https://doc.sun-panel.top/ | 一个服务器、NAS导航面板、Homepage、浏览器首页 | | +| 🟢 | | Super Productivity | https://super-productivity.com/ | 一个高级TODO列表应用程序,具有时间框和时间跟踪功能 | | | 🟢 | | 卷王 | https://surveyking.cn/ | 卷王问卷考试系统 | | | 🟢 | | Synapse | https://matrix.org/ | 用于安全、分散通信的开放网络 | Matrix | | 🟢 | | Synapse Admin | https://github.com/Awesome-Technologies/synapse-admin/ | 【管理面板】用于安全、分散通信的开放网络 | Matrix | diff --git a/README.md b/README.md index e30712b4..898bbb32 100644 --- a/README.md +++ b/README.md @@ -143,6 +143,7 @@ | 🟢 | | Stream-Rec Web版 | https://github.com/hua0512/stream-rec/ | 【前端版】Stream-rec是一个用于各种流媒体服务的自动流媒体录制工具 | | | 🟢 | | Stream-Rec 服务版 | https://github.com/hua0512/stream-rec/ | 【服务版】Stream-rec是一个用于各种流媒体服务的自动流媒体录制工具 | | | 🟢 | | Sun Panel | https://doc.sun-panel.top/ | 一个服务器、NAS导航面板、Homepage、浏览器首页 | | +| 🟢 | | Super Productivity | https://super-productivity.com/ | 一个高级TODO列表应用程序,具有时间框和时间跟踪功能 | | | 🟢 | | 卷王 | https://surveyking.cn/ | 卷王问卷考试系统 | | | 🟢 | | Synapse | https://matrix.org/ | 用于安全、分散通信的开放网络 | Matrix | | 🟢 | | Synapse Admin | https://github.com/Awesome-Technologies/synapse-admin/ | 【管理面板】用于安全、分散通信的开放网络 | Matrix | diff --git a/apps/super-productivity/11.1.3/conf/webdav.yaml b/apps/super-productivity/11.1.3/conf/webdav.yaml new file mode 100644 index 00000000..629109a8 --- /dev/null +++ b/apps/super-productivity/11.1.3/conf/webdav.yaml @@ -0,0 +1,13 @@ +address: 0.0.0.0 +port: 80 + +prefix: / +permissions: CRUD + +users: + - username: alice + password: alicepassword + directory: /data/alice + - username: bob + password: bobpassword + directory: /data/bob diff --git a/apps/super-productivity/11.1.3/data.yml b/apps/super-productivity/11.1.3/data.yml new file mode 100644 index 00000000..f40ef60a --- /dev/null +++ b/apps/super-productivity/11.1.3/data.yml @@ -0,0 +1,17 @@ +additionalProperties: + formFields: + - default: "/home/super-productivity" + edit: true + envKey: SUPER_PRODUCTIVITY_ROOT_PATH + labelZh: 数据持久化路径 + labelEn: Data persistence path + required: true + type: text + - default: 8080 + edit: true + envKey: PANEL_APP_PORT_HTTP + labelZh: WebUI 端口 + labelEn: WebUI port + required: true + rule: paramPort + type: number diff --git a/apps/super-productivity/11.1.3/docker-compose.yml b/apps/super-productivity/11.1.3/docker-compose.yml new file mode 100644 index 00000000..4b3e315c --- /dev/null +++ b/apps/super-productivity/11.1.3/docker-compose.yml @@ -0,0 +1,32 @@ +networks: + 1panel-network: + external: true + +services: + super-productivity: + image: johannesjo/super-productivity:v11.1.3 + container_name: ${CONTAINER_NAME} + labels: + createdBy: "Apps" + restart: always + networks: + - 1panel-network + ports: + - ${PANEL_APP_PORT_HTTP}:80 + env_file: + - ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env} + - ${ENV_FILE:-/etc/1panel/envs/default.env} + environment: + - TZ=Asia/Shanghai + - WEBDAV_BACKEND=http://sp-webdav + sp-webdav: + image: hacdias/webdav:latest + restart: always + networks: + - 1panel-network + env_file: + - ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env} + - ${ENV_FILE:-/etc/1panel/envs/default.env} + volumes: + - ${SUPER_PRODUCTIVITY_ROOT_PATH}/config/webdav.yaml:/config.yml + - ${SUPER_PRODUCTIVITY_ROOT_PATH}/data:/data diff --git a/apps/super-productivity/11.1.3/envs/default.env b/apps/super-productivity/11.1.3/envs/default.env new file mode 100644 index 00000000..cd05f46e --- /dev/null +++ b/apps/super-productivity/11.1.3/envs/default.env @@ -0,0 +1,2 @@ +# copyright© 2024 XinJiang Ms Studio +ENV_FILE=.env diff --git a/apps/super-productivity/11.1.3/envs/global.env b/apps/super-productivity/11.1.3/envs/global.env new file mode 100644 index 00000000..e10989fe --- /dev/null +++ b/apps/super-productivity/11.1.3/envs/global.env @@ -0,0 +1,2 @@ +# copyright© 2024 XinJiang Ms Studio +TZ=Asia/Shanghai diff --git a/apps/super-productivity/11.1.3/scripts/init.sh b/apps/super-productivity/11.1.3/scripts/init.sh new file mode 100644 index 00000000..16af78ff --- /dev/null +++ b/apps/super-productivity/11.1.3/scripts/init.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +if [ -f .env ]; then + source .env + + # setup-1 add default values + CURRENT_DIR=$(pwd) + sed -i '/^ENV_FILE=/d' .env + sed -i '/^GLOBAL_ENV_FILE=/d' .env + echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env + echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env + + mkdir -p "$SUPER_PRODUCTIVITY_ROOT_PATH" + mkdir -p "$SUPER_PRODUCTIVITY_ROOT_PATH/data" + mkdir -p "$SUPER_PRODUCTIVITY_ROOT_PATH/config" + + cp ./conf/webdav.yaml "$SUPER_PRODUCTIVITY_ROOT_PATH/config/webdav.yaml" + + echo "Check Finish." + +else + echo "Error: .env file not found." +fi diff --git a/apps/super-productivity/11.1.3/scripts/uninstall.sh b/apps/super-productivity/11.1.3/scripts/uninstall.sh new file mode 100644 index 00000000..c86c4fbc --- /dev/null +++ b/apps/super-productivity/11.1.3/scripts/uninstall.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +if [ -f .env ]; then + source .env + + echo "Check Finish." + +else + echo "Error: .env file not found." +fi diff --git a/apps/super-productivity/11.1.3/scripts/upgrade.sh b/apps/super-productivity/11.1.3/scripts/upgrade.sh new file mode 100644 index 00000000..c49abea9 --- /dev/null +++ b/apps/super-productivity/11.1.3/scripts/upgrade.sh @@ -0,0 +1,25 @@ +#!/bin/bash + +if [ -f .env ]; then + source .env + + # setup-1 add default values + CURRENT_DIR=$(pwd) + sed -i '/^ENV_FILE=/d' .env + sed -i '/^GLOBAL_ENV_FILE=/d' .env + echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env + echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env + + mkdir -p "$SUPER_PRODUCTIVITY_ROOT_PATH" + mkdir -p "$SUPER_PRODUCTIVITY_ROOT_PATH/data" + mkdir -p "$SUPER_PRODUCTIVITY_ROOT_PATH/config" + + if [ ! -f "$SUPER_PRODUCTIVITY_ROOT_PATH/app/glance.yml" ]; then + cp ./conf/webdav.yaml "$SUPER_PRODUCTIVITY_ROOT_PATH/config/webdav.yaml" + fi + + echo "Check Finish." + +else + echo "Error: .env file not found." +fi diff --git a/apps/super-productivity/README.md b/apps/super-productivity/README.md new file mode 100644 index 00000000..3658f162 --- /dev/null +++ b/apps/super-productivity/README.md @@ -0,0 +1,27 @@ +# Super Productivity + +一个高级TODO列表应用程序,具有时间框和时间跟踪功能,该应用程序支持您的日历,JIRA,GITHUB等导入任务 + +![Super Productivity](https://file.lifebus.top/imgs/super-productivity_cover.png) + +![](https://img.shields.io/badge/%E6%96%B0%E7%96%86%E8%90%8C%E6%A3%AE%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E5%B7%A5%E4%BD%9C%E5%AE%A4-%E6%8F%90%E4%BE%9B%E6%8A%80%E6%9C%AF%E6%94%AF%E6%8C%81-blue) + +## 简介 + +- **保持条理清晰和专注!** 使用子任务、项目和标签来计划和分类您的任务,并根据需要对它们进行颜色编码。 +- 使用**时间盒**和**跟踪您的时间**。轻松创建工时表和工作摘要,以便将其轻松导出到您公司的工时跟踪系统。 +- 帮助您**建立健康且高效的习惯**: + - **休息提醒**会在该离开的时候提醒您。 + - **反拖延功能**在您确实需要时帮助您获得新的视角。 + - 需要更加专注?**番茄钟计时器**也总是触手可及。 + - **收集个人指标**以查看哪些工作例程需要调整。 +- 与**Jira**、**GitHub**、**GitLab**、**Gitea**和**OpenProject**集成。自动导入分配给您的任务,在本地详细规划,自动生成工作日志,并在有变化时立即得到通知。 +- 基本的[**CalDAV**](https://github.com/johannesjo/super-productivity/blob/master/docs/caldav.md)集成。 +- 使用**Dropbox**和**WebDAV**支持备份并在多个设备间同步您的数据。 +- 将上下文信息附加到任务和项目。创建**笔记**,附加**文件**或为链接、文件甚至命令创建**项目级别的书签**。 +- Super Productivity**尊重您的隐私**且**不会收集任何数据**,并且没有用户账户或注册要求。**由您决定数据存储的位置!** +- 它是**免费**且**开源**的,并且永远都是。 + +--- + +![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png) diff --git a/apps/super-productivity/data.yml b/apps/super-productivity/data.yml new file mode 100644 index 00000000..7d1787b5 --- /dev/null +++ b/apps/super-productivity/data.yml @@ -0,0 +1,14 @@ +additionalProperties: + key: super-productivity + name: Super Productivity + tags: + - WebSite + - Local + shortDescZh: 一个高级TODO列表应用程序,具有时间框和时间跟踪功能,该应用程序支持您的日历,JIRA,GITHUB等导入任务 + shortDescEn: An advanced TODO list application with time boxing and time tracking features that supports importing tasks from your calendar, JIRA, GITHUB, etc. + type: website + crossVersionUpdate: true + limit: 0 + website: https://super-productivity.com/ + github: https://github.com/johannesjo/super-productivity/ + document: https://super-productivity.com/ diff --git a/apps/super-productivity/logo.png b/apps/super-productivity/logo.png new file mode 100644 index 00000000..4d2faaaf Binary files /dev/null and b/apps/super-productivity/logo.png differ