From d0e8d76f4ad96c74b469e45b940ab88ef06edad2 Mon Sep 17 00:00:00 2001 From: Super12138 <70494801+Super12138@users.noreply.github.com> Date: Sat, 13 Jan 2024 15:20:32 +0800 Subject: [PATCH] Release 1.0.1 --- README.md | 31 +++++++++++++++++++++++++++++++ README_EN.md | 33 +++++++++++++++++++++++++++++++++ app/build.gradle.kts | 2 +- 3 files changed, 65 insertions(+), 1 deletion(-) create mode 100644 README_EN.md diff --git a/README.md b/README.md index 4f34b01..bba153e 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,33 @@ # 待办 | ToDo 简单的待办应用,遵循Material Design 3 + +**简体中文** | (English)[https://github.com/Super12138/ToDo/blob/main/README_EN.md] + +[![Android CI](https://github.com/Super12138/ToDo/actions/workflows/android_ci.yml/badge.svg)](https://github.com/Super12138/ToDo/actions/workflows/android_ci.yml) +![GitHub all releases download](https://img.shields.io/github/downloads/Super12138/ToDo/total?style=flat-square) +![GitHub latest release](https://img.shields.io/github/v/release/Super12138/ToDo?style=flat-square) + +# ⬆️ 版本支持 +- Android 7.0(Nougat) - Android 14.0(UpsideDownCake) + +# ✨ 功能 +- 深色模式 +- Material Design 3 +- 待办进度条 +- 多学科支持 +- 作业输入预测(后续计划支持自定义预测项目) +- …… + +# 📦 构建 +推荐使用`Android Studio`进行构建 +所需环境: +- Android Studio (AGP `8.2.1`) +- JDK `17` +- Kotlin `1.9.22` +- Gradle `8.5` + +# ⬇️ 下载 +[Github Release](https://github.com/Super12138/ToDo/releases/) + +# 📃 许可证 +[GPL-3.0](https://github.com/Super12138/ToDo/blob/main/LICENSE) \ No newline at end of file diff --git a/README_EN.md b/README_EN.md new file mode 100644 index 0000000..add7192 --- /dev/null +++ b/README_EN.md @@ -0,0 +1,33 @@ +# 待办 | ToDo +A simple to-do app, with Material Design 3 + +[简体中文](https://github.com/Super12138/ToDo/blob/main/README.md) | **English** + +[![Android CI](https://github.com/Super12138/ToDo/actions/workflows/android_ci.yml/badge.svg)](https://github.com/Super12138/ToDo/actions/workflows/android_ci.yml) +![GitHub all releases download](https://img.shields.io/github/downloads/Super12138/ToDo/total?style=flat-square) +![GitHub latest release](https://img.shields.io/github/v/release/Super12138/ToDo?style=flat-square) + +# ⬆️ Supported Versions +- Android 7.0(Nougat) - Android 14.0(UpsideDownCake) + +# ✨ Features +- Dark mode +- Material Design 3 +- To-do progress bar +- Multi-subject support +- Homework input prediction +- ... + +# 📦 Build +Recommend to use `Android Studio` for build +Environment: +- Android Studio (AGP `8.2.1`) +- JDK `17` +- Kotlin `1.9.22` +- Gradle `8.5` + +# ⬇️ Download +[Github Release](https://github.com/Super12138/ToDo/releases/) + +# 📃 License +[GPL-3.0](https://github.com/Super12138/ToDo/blob/main/LICENSE) \ No newline at end of file diff --git a/app/build.gradle.kts b/app/build.gradle.kts index d4753db..8e402e6 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -7,7 +7,7 @@ ksp { arg("room.schemaLocation", "$projectDir/schemas") } -val baseVersionName = "1.0.0" +val baseVersionName = "1.0.1" val commitHash by lazy { "git rev-parse --short HEAD".exec() } val verCode by lazy { "git rev-list --count HEAD".exec().toInt() }