-
Notifications
You must be signed in to change notification settings - Fork 322
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
56 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
app/src/main/java/com/xiaoniu/hook/EnableEmotionDownload.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
* QAuxiliary - An Xposed module for QQ/TIM | ||
* Copyright (C) 2019-2023 QAuxiliary developers | ||
* https://github.com/cinit/QAuxiliary | ||
* | ||
* This software is non-free but opensource software: you can redistribute it | ||
* and/or modify it under the terms of the GNU Affero General Public License | ||
* as published by the Free Software Foundation; either | ||
* version 3 of the License, or any later version and our eula as published | ||
* by QAuxiliary contributors. | ||
* | ||
* This software is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* and eula along with this software. If not, see | ||
* <https://www.gnu.org/licenses/> | ||
* <https://github.com/cinit/QAuxiliary/blob/master/LICENSE.md>. | ||
*/ | ||
|
||
package com.xiaoniu.hook | ||
|
||
import com.github.kyuubiran.ezxhelper.utils.hookReturnConstant | ||
import io.github.qauxv.base.annotation.FunctionHookEntry | ||
import io.github.qauxv.base.annotation.UiItemAgentEntry | ||
import io.github.qauxv.dsl.FunctionEntryRouter | ||
import io.github.qauxv.hook.CommonSwitchFunctionHook | ||
import io.github.qauxv.util.QQVersion | ||
import io.github.qauxv.util.dexkit.DexKit | ||
import io.github.qauxv.util.dexkit.EmotionDownloadEnableSwitch | ||
import io.github.qauxv.util.requireMinQQVersion | ||
|
||
@FunctionHookEntry | ||
@UiItemAgentEntry | ||
object EnableEmotionDownload : CommonSwitchFunctionHook(arrayOf(EmotionDownloadEnableSwitch)) { | ||
override val name = "允许保存图片表情" | ||
|
||
override fun initOnce(): Boolean { | ||
DexKit.requireMethodFromCache(EmotionDownloadEnableSwitch).hookReturnConstant(false) | ||
return true | ||
} | ||
|
||
override val uiItemLocation = FunctionEntryRouter.Locations.Auxiliary.MESSAGE_CATEGORY | ||
|
||
override val isAvailable = requireMinQQVersion(QQVersion.QQ_8_9_80) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters