-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.2.0 #173
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
В основном все вроде хорошо, но у меня есть пара глобальных вопросов:
Стоит ли использовать {} в логгере с "большими" обьектами? (тот же ConnectedPlayer)
Логгер будет хранить сами обьекты пока не заллогирует сообщение, так что не уверен что так надо делать.
(вроде, надо перепроверить, последний раз я тыкал логгер года 2 назад)
Сами значения ItemComponent'ов не находятся в api, так что сторонним плагинам (тем же limbohub/limbofilter) которые их используют придется использовать сам плагин как либу.
Может как-то переместить их в api? (если возможно это как-то адекватно сделать конечно)
надо будет еще поубирать System.out.println и прочий старый закомментированный код, но это пока совсем не важно
List the steps on how we can reproduce the issue. Make sure we can easily understand what you mean with each step. | ||
placeholder: | | ||
Example: | ||
1. Подключиться к оффлайн серверу с LimboAuth с лицензионного клиента |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Может перевести этот текст на английский?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
потом chatgpt попрошу перевести, как я обычно это и делаю))
description: | | ||
Describe what exactly you expected to happen. | ||
placeholder: | | ||
Example: "Кот должен сесть." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Также, может перевести этот текст на английский?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
забыл
LOGGER.error("https://github.com/Elytrium/LimboAPI/releases/"); | ||
LOGGER.error("****************************************"); | ||
try { | ||
if (!UpdatesChecker.checkVersionByURL("https://raw.githubusercontent.com/Elytrium/LimboAPI/master/VERSION", Settings.IMP.VERSION)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Может выполнять проверку обновлений в другом потоке чтобы оно не увеличивало время запуска?
(не уверен что это хоть на что-то сильно повлияет, но все же)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
надо будет в целом этот метод на HttpClient переделать или на что нибудь подобное что на CompletableFuture'ах работает
import java.util.Optional; | ||
import java.util.UUID; | ||
|
||
public class RewritingKeyedVelocityTabList extends KeyedVelocityTabList implements RewritingTabList { | ||
|
||
// To keep compatibility with other plugins that use internal fields |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ломает последний релиз Velocitab, но не уверен стоит ли оставлять, так как сам Velocitab поправил это у себя неделю назад
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
я проверил что getDeclaredField достаёт до оригинальных и удалил за ненадобностью, так что лучше уж ответственность на разрабов плагинов которым оно надо повесить
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
вообще я так подумал и надо будет сделать чтобы доставались ещё и оригинальные таб листы чтобы наши служили как мост, либо просто копировали существующие энтри
plugin/src/main/java/net/elytrium/limboapi/injection/tablist/RewritingTabList.java
Show resolved
Hide resolved
@@ -62,18 +62,17 @@ public SimpleWorld(@NonNull Dimension dimension, double posX, double posY, doubl | |||
this.yaw = yaw; | |||
this.pitch = pitch; | |||
|
|||
|
|||
this.getChunkOrNew((int) posX, (int) posZ); | |||
//this.getChunkOrNew((int) Math.floor(posX), (int) Math.floor(posZ)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Оно еще надо? 🤔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
хотел проверить несколько кейсов:
переход с фильтра с капчей со схемой на аутх без схемы
переход с фильтра без капчи на аутх без схемы
просто аутх без схемы
по поводу ItemComponent'ов я сразу написал в комменте
примеры: |
а все {} я потом пересмотрю и добавлю toString на не примитивных объектах |
Для мерджа нужны тесты item components и set entity data
Так же необходимо порешать все TODO (тот что в AbstractItemComponent надо сделать тем же путём что и в новых версиях апи пейпера, а именно через кучу интерфейсов и кучу бридж методов)
А так же доделать систему сборки (вернуть все плагины, добавить плагин на пуш плагина на modrinth и нормальный libs.versions.toml составить)