Skip to content

Commit e21aed0

Browse files
committed
Add copyright declaration.
1 parent 62b46f0 commit e21aed0

20 files changed

Lines changed: 157 additions & 6 deletions

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## 特性
66

7-
<img align="right" src="static/screenshot1.png" height="400">
7+
<img align="right" src="static/screenshot1.png" height="300">
88

99
- #### Interactive Conversation Mode - 交互式聊天模式的用户接口
1010

@@ -18,12 +18,12 @@
1818

1919
- #### 允许用户自定义提醒时间
2020

21-
<img align="right" src="static/screenshot2.png" height="400">
22-
2321
用户发送 **修改提前提醒时间** 即可通过步骤引导修改。
2422

2523
- #### 适配几乎所有使用超级课程表的高校
2624

25+
<img align="right" src="static/screenshot2.png" height="300">
26+
2727
插件工作时,为每个正在使用的用户的高校分别计算当前周数和时间表,互不冲突。
2828

2929
- #### 数据库存储数据
@@ -128,5 +128,4 @@ GNU Affero General Public License for more details.
128128

129129
You should have received a copy of the GNU Affero General Public License
130130
along with this program. If not, see <https://www.gnu.org/licenses/>.
131-
```
132-
131+
```

src/main/kotlin/stageguard/sctimetable/AbstractPluginManagedService.kt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*
2+
* Copyright 2020 KonnyakuCamp.
3+
*
4+
* 此源代码的使用受 GNU AFFERO GENERAL PUBLIC LICENSE version 3 许可证的约束, 可以在以下链接找到该许可证.
5+
* Use of this source code is governed by the GNU AGPLv3 license that can be found through the following link.
6+
*
7+
* https://github.com/KonnyakuCamp/SuperCourseTimetableBot/blob/main/LICENSE
8+
*/
19
package stageguard.sctimetable
210

311
import kotlinx.coroutines.*

src/main/kotlin/stageguard/sctimetable/PluginConfig.kt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*
2+
* Copyright 2020 KonnyakuCamp.
3+
*
4+
* 此源代码的使用受 GNU AFFERO GENERAL PUBLIC LICENSE version 3 许可证的约束, 可以在以下链接找到该许可证.
5+
* Use of this source code is governed by the GNU AGPLv3 license that can be found through the following link.
6+
*
7+
* https://github.com/KonnyakuCamp/SuperCourseTimetableBot/blob/main/LICENSE
8+
*/
19
package stageguard.sctimetable
210

311
import net.mamoe.mirai.console.data.AutoSavePluginConfig

src/main/kotlin/stageguard/sctimetable/PluginData.kt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*
2+
* Copyright 2020 KonnyakuCamp.
3+
*
4+
* 此源代码的使用受 GNU AFFERO GENERAL PUBLIC LICENSE version 3 许可证的约束, 可以在以下链接找到该许可证.
5+
* Use of this source code is governed by the GNU AGPLv3 license that can be found through the following link.
6+
*
7+
* https://github.com/KonnyakuCamp/SuperCourseTimetableBot/blob/main/LICENSE
8+
*/
19
package stageguard.sctimetable
210

311
import net.mamoe.mirai.console.data.AutoSavePluginData

src/main/kotlin/stageguard/sctimetable/PluginMain.kt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*
2+
* Copyright 2020 KonnyakuCamp.
3+
*
4+
* 此源代码的使用受 GNU AFFERO GENERAL PUBLIC LICENSE version 3 许可证的约束, 可以在以下链接找到该许可证.
5+
* Use of this source code is governed by the GNU AGPLv3 license that can be found through the following link.
6+
*
7+
* https://github.com/KonnyakuCamp/SuperCourseTimetableBot/blob/main/LICENSE
8+
*/
19
package stageguard.sctimetable
210

311
import net.mamoe.mirai.Bot

src/main/kotlin/stageguard/sctimetable/api/CourseReceiptDTO.kt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*
2+
* Copyright 2020 KonnyakuCamp.
3+
*
4+
* 此源代码的使用受 GNU AFFERO GENERAL PUBLIC LICENSE version 3 许可证的约束, 可以在以下链接找到该许可证.
5+
* Use of this source code is governed by the GNU AGPLv3 license that can be found through the following link.
6+
*
7+
* https://github.com/KonnyakuCamp/SuperCourseTimetableBot/blob/main/LICENSE
8+
*/
19
package stageguard.sctimetable.api
210

311
import kotlinx.serialization.Serializable

src/main/kotlin/stageguard/sctimetable/api/EncryptionUtils.kt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*
2+
* Copyright 2020 KonnyakuCamp.
3+
*
4+
* 此源代码的使用受 GNU AFFERO GENERAL PUBLIC LICENSE version 3 许可证的约束, 可以在以下链接找到该许可证.
5+
* Use of this source code is governed by the GNU AGPLv3 license that can be found through the following link.
6+
*
7+
* https://github.com/KonnyakuCamp/SuperCourseTimetableBot/blob/main/LICENSE
8+
*/
19
package stageguard.sctimetable.api
210

311
import java.io.UnsupportedEncodingException

src/main/kotlin/stageguard/sctimetable/api/LoginReceiptDTO.kt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*
2+
* Copyright 2020 KonnyakuCamp.
3+
*
4+
* 此源代码的使用受 GNU AFFERO GENERAL PUBLIC LICENSE version 3 许可证的约束, 可以在以下链接找到该许可证.
5+
* Use of this source code is governed by the GNU AGPLv3 license that can be found through the following link.
6+
*
7+
* https://github.com/KonnyakuCamp/SuperCourseTimetableBot/blob/main/LICENSE
8+
*/
19
package stageguard.sctimetable.api
210

311
import kotlinx.serialization.Serializable

src/main/kotlin/stageguard/sctimetable/api/SuperCourseApiService.kt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*
2+
* Copyright 2020 KonnyakuCamp.
3+
*
4+
* 此源代码的使用受 GNU AFFERO GENERAL PUBLIC LICENSE version 3 许可证的约束, 可以在以下链接找到该许可证.
5+
* Use of this source code is governed by the GNU AGPLv3 license that can be found through the following link.
6+
*
7+
* https://github.com/KonnyakuCamp/SuperCourseTimetableBot/blob/main/LICENSE
8+
*/
19
package stageguard.sctimetable.api
210

311
import io.ktor.client.HttpClient

src/main/kotlin/stageguard/sctimetable/database/Database.kt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*
2+
* Copyright 2020 KonnyakuCamp.
3+
*
4+
* 此源代码的使用受 GNU AFFERO GENERAL PUBLIC LICENSE version 3 许可证的约束, 可以在以下链接找到该许可证.
5+
* Use of this source code is governed by the GNU AGPLv3 license that can be found through the following link.
6+
*
7+
* https://github.com/KonnyakuCamp/SuperCourseTimetableBot/blob/main/LICENSE
8+
*/
19
package stageguard.sctimetable.database
210

311
import com.zaxxer.hikari.HikariConfig

0 commit comments

Comments
 (0)