建立了 OnRandomlyTrigged 事件用于一些好玩的触发彩蛋,添加了奇怪的 CODE_IK0XA1 功能(但未启用),为新的 maven 仓库的 api changes 做了补丁

- dependencies upgrade:
  - spotbugs 4.5.3 -> 4.7.2
  - junit 5.8.2 -> 5.9.0
This commit is contained in:
A.C.Sukazyo Eyre 2022-09-19 23:54:02 +08:00
parent 58038e8a1f
commit ab37144d45
Signed by: Eyre_S
GPG Key ID: EFB47D98FE082FAD
5 changed files with 35 additions and 6 deletions

View File

@ -14,7 +14,7 @@ mainClassName = 'cc.sukazyo.cono.morny.ServerMain'
repositories {
mavenCentral()
maven { name '-ws'; url 'https://mvn.sukazyo.cc' }
maven { name '-ws'; url 'https://mvn.sukazyo.cc/releases' }
}
String untitled (String lib, String upd = null) {

View File

@ -1,12 +1,12 @@
## Core
VERSION = 0.7.2.0
VERSION = 0.7.2.1
CODENAME = fuzhou
# dependencies
libSpotbugsVersion = 4.5.3
libSpotbugsVersion = 4.7.2
libUntitledVersionMajor = 1
@ -14,4 +14,4 @@ libMessivaVersion = 0.1.0.1
libJavaTelegramBotApiVersion = 5.6.0
libJunitVersion = 5.8.2
libJunitVersion = 5.9.0

View File

@ -4,7 +4,7 @@ package cc.sukazyo.cono.morny;
* the final field that will be updated by gradle automatically.
*/
public class GradleProjectConfigures {
public static final String VERSION = "0.7.2.0";
public static final String VERSION = "0.7.2.1";
public static final String CODENAME = "fuzhou";
public static final long COMPILE_TIMESTAMP = 1655816387446L;
public static final long COMPILE_TIMESTAMP = 1663602816303L;
}

View File

@ -15,13 +15,16 @@ public class EventListeners {
public static final OnUserRandoms USER_RANDOMS = new OnUserRandoms();
public static final OnCallMsgSend CALL_MSG_SEND = new OnCallMsgSend();
public static final OnMedicationNotifyApply MEDICATION_NOTIFY_APPLY = new OnMedicationNotifyApply();
public static final OnRandomlyTriggered RANDOMLY_TRIGGERED = new OnRandomlyTriggered();
public static void registerAllListeners () {
EventListenerManager.addListener(
ACTIVITY_RECORDER,
UPDATE_TIMESTAMP_OFFSET_LOCK,
/* write functional event behind here */
// KUOHUANHUAN_NEED_SLEEP,
COMMANDS_LISTENER,
RANDOMLY_TRIGGERED,
USER_RANDOMS,
USER_SLASH_ACTION,
INLINE_QUERY,

View File

@ -0,0 +1,26 @@
package cc.sukazyo.cono.morny.bot.event;
import cc.sukazyo.cono.morny.bot.api.EventListener;
public class OnRandomlyTriggered extends EventListener {
/**
* function CODE_IK0XA1
*/
// @Override
// public boolean onMessage (@Nonnull Update update) {
//
// if (update.message().text() == null) return false;
//
// if (update.message().text().contains("") && Math.random()<(1d/20)) {
// MornyCoeur.extra().exec(new SendMessage(
// update.message().chat().id(),
// "急也没用"
// ));
// }
//
// return false;
//
// }
}