Skip to content

Commit

Permalink
native: release 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PeratX committed Apr 1, 2022
1 parent 04d482d commit 1c33693
Show file tree
Hide file tree
Showing 21 changed files with 26 additions and 24 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ Mirai Native 插件管理器

## 开源许可证

Copyright (C) 2020-2021 iTX Technologies
iTXTech Mirai Native
Copyright (C) 2020-2022 iTX Technologies

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group = "org.itxtech"
version = "2.0.0-beta.1"
version = "2.0.0"
description = "强大的 mirai 原生插件加载器。"

kotlin {
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/org/itxtech/mirainative/Bridge.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Mirai Native
*
* Copyright (C) 2020-2021 iTX Technologies
* Copyright (C) 2020-2022 iTX Technologies
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/org/itxtech/mirainative/MiraiNative.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Mirai Native
*
* Copyright (C) 2020-2021 iTX Technologies
* Copyright (C) 2020-2022 iTX Technologies
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Mirai Native
*
* Copyright (C) 2020-2021 iTX Technologies
* Copyright (C) 2020-2022 iTX Technologies
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Mirai Native
*
* Copyright (C) 2020-2021 iTX Technologies
* Copyright (C) 2020-2022 iTX Technologies
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
Expand Down Expand Up @@ -50,7 +50,6 @@ import org.itxtech.mirainative.Bridge
import org.itxtech.mirainative.MiraiNative
import org.itxtech.mirainative.fromNative
import org.itxtech.mirainative.manager.CacheManager
import org.itxtech.mirainative.manager.EventManager
import org.itxtech.mirainative.manager.PluginManager
import org.itxtech.mirainative.message.ChainCodeConverter
import org.itxtech.mirainative.plugin.FloatingWindowEntry
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Mirai Native
*
* Copyright (C) 2020-2021 iTX Technologies
* Copyright (C) 2020-2022 iTX Technologies
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Mirai Native
*
* Copyright (C) 2020-2021 iTX Technologies
* Copyright (C) 2020-2022 iTX Technologies
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Mirai Native
*
* Copyright (C) 2020-2021 iTX Technologies
* Copyright (C) 2020-2022 iTX Technologies
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
Expand Down Expand Up @@ -33,8 +33,11 @@ import net.mamoe.mirai.contact.User
import net.mamoe.mirai.event.events.BotEvent
import net.mamoe.mirai.event.events.GroupMessageEvent
import net.mamoe.mirai.event.events.GroupTempMessageEvent
import net.mamoe.mirai.message.data.*
import net.mamoe.mirai.message.data.MessageChain
import net.mamoe.mirai.message.data.MessageSource
import net.mamoe.mirai.message.data.MessageSource.Key.recall
import net.mamoe.mirai.message.data.OnlineAudio
import net.mamoe.mirai.message.data.source
import net.mamoe.mirai.utils.MiraiExperimentalApi
import org.itxtech.mirainative.MiraiNative

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Mirai Native
*
* Copyright (C) 2020-2021 iTX Technologies
* Copyright (C) 2020-2022 iTX Technologies
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Mirai Native
*
* Copyright (C) 2020-2021 iTX Technologies
* Copyright (C) 2020-2022 iTX Technologies
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Mirai Native
*
* Copyright (C) 2020-2021 iTX Technologies
* Copyright (C) 2020-2022 iTX Technologies
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
Expand All @@ -27,7 +27,6 @@ package org.itxtech.mirainative.manager
import kotlinx.atomicfu.atomic
import kotlinx.coroutines.Job
import kotlinx.coroutines.launch
import kotlinx.serialization.json.Json
import net.mamoe.mirai.console.command.CommandManager.INSTANCE.register
import net.mamoe.mirai.console.command.CommandSender
import net.mamoe.mirai.console.command.CompositeCommand
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Mirai Native
*
* Copyright (C) 2020-2021 iTX Technologies
* Copyright (C) 2020-2022 iTX Technologies
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Mirai Native
*
* Copyright (C) 2020-2021 iTX Technologies
* Copyright (C) 2020-2022 iTX Technologies
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Mirai Native
*
* Copyright (C) 2020-2021 iTX Technologies
* Copyright (C) 2020-2022 iTX Technologies
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Mirai Native
*
* Copyright (C) 2020-2021 iTX Technologies
* Copyright (C) 2020-2022 iTX Technologies
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Mirai Native
*
* Copyright (C) 2020-2021 iTX Technologies
* Copyright (C) 2020-2022 iTX Technologies
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/org/itxtech/mirainative/ui/Tray.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Mirai Native
*
* Copyright (C) 2020-2021 iTX Technologies
* Copyright (C) 2020-2022 iTX Technologies
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Mirai Native
*
* Copyright (C) 2020-2021 iTX Technologies
* Copyright (C) 2020-2022 iTX Technologies
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/org/itxtech/mirainative/util/Music.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Mirai Native
*
* Copyright (C) 2020-2021 iTX Technologies
* Copyright (C) 2020-2022 iTX Technologies
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/org/itxtech/mirainative/util/NpmHelper.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Mirai Native
*
* Copyright (C) 2020-2021 iTX Technologies
* Copyright (C) 2020-2022 iTX Technologies
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
Expand Down

0 comments on commit 1c33693

Please sign in to comment.