Skip to content

Commit

Permalink
chore: optimize descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
klxiaoniu committed Jul 25, 2023
1 parent c4eff04 commit dbfda9a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,11 @@ public String getName() {
return "表情面板";
}

@Override
public String getDescription() {
return "长按表情按钮打开,仅支持QQNT";
}

@Override
public boolean isAvailable() {
return QAppUtils.isQQnt();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ import xyz.nextalone.util.throwOrTrue
object ForcePadMode : CommonSwitchFunctionHook(targetProc = SyncUtils.PROC_ANY, arrayOf(NPadUtil_initDeviceType)) {

override val name = "强制平板模式"
override val description = "仅支持 QQ 8.9.15, 未经测试, 谨慎使用"
override val description = "支持 QQ 8.9.15及以上,未经测试谨慎使用"
override val uiItemLocation = FunctionEntryRouter.Locations.Auxiliary.EXPERIMENTAL_CATEGORY
override val isApplicationRestartRequired = true

Expand Down

0 comments on commit dbfda9a

Please sign in to comment.