Skip to content
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

Draft
wants to merge 8 commits into
base: master
Choose a base branch
from
Draft

1.2.0 #173

wants to merge 8 commits into from

Conversation

mdxd44
Copy link
Member

@mdxd44 mdxd44 commented Nov 27, 2024

Для мерджа нужны тесты item components и set entity data
Так же необходимо порешать все TODO (тот что в AbstractItemComponent надо сделать тем же путём что и в новых версиях апи пейпера, а именно через кучу интерфейсов и кучу бридж методов)
А так же доделать систему сборки (вернуть все плагины, добавить плагин на пуш плагина на modrinth и нормальный libs.versions.toml составить)

@mdxd44 mdxd44 requested review from hevav and UserNugget November 27, 2024 13:17
Copy link
Member

@UserNugget UserNugget left a 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 с лицензионного клиента
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Может перевести этот текст на английский?

Copy link
Member Author

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: "Кот должен сесть."
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Также, может перевести этот текст на английский?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

забыл

plugin/mappings_generator.gradle Outdated Show resolved Hide resolved
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)) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Может выполнять проверку обновлений в другом потоке чтобы оно не увеличивало время запуска?
(не уверен что это хоть на что-то сильно повлияет, но все же)

Copy link
Member Author

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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ломает последний релиз Velocitab, но не уверен стоит ли оставлять, так как сам Velocitab поправил это у себя неделю назад

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

я проверил что getDeclaredField достаёт до оригинальных и удалил за ненадобностью, так что лучше уж ответственность на разрабов плагинов которым оно надо повесить

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

вообще я так подумал и надо будет сделать чтобы доставались ещё и оригинальные таб листы чтобы наши служили как мост, либо просто копировали существующие энтри

@@ -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));
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Оно еще надо? 🤔

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

хотел проверить несколько кейсов:
переход с фильтра с капчей со схемой на аутх без схемы
переход с фильтра без капчи на аутх без схемы
просто аутх без схемы

@mdxd44
Copy link
Member Author

mdxd44 commented Nov 27, 2024

по поводу ItemComponent'ов я сразу написал в комменте

тот что в AbstractItemComponent надо сделать тем же путём что и в новых версиях апи пейпера, а именно через кучу интерфейсов и кучу бридж методов

примеры:
https://github.com/PaperMC/Paper/blob/d38624bdd8757f167552a278e6a355289aec7c48/patches/api/0495-DataComponent-API.patch#L1359
https://github.com/PaperMC/Paper/blob/d38624bdd8757f167552a278e6a355289aec7c48/patches/server/1035-DataComponent-API.patch#L1411

https://github.com/PaperMC/Paper/blob/d38624bdd8757f167552a278e6a355289aec7c48/patches/api/0495-DataComponent-API.patch#L1692

@mdxd44
Copy link
Member Author

mdxd44 commented Nov 27, 2024

а все {} я потом пересмотрю и добавлю toString на не примитивных объектах

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants