diff --git a/plugins/builtin/source/lang/de_DE.cpp b/plugins/builtin/source/lang/de_DE.cpp index a8a5b7812..d9ddd5f08 100644 --- a/plugins/builtin/source/lang/de_DE.cpp +++ b/plugins/builtin/source/lang/de_DE.cpp @@ -26,9 +26,11 @@ namespace hex::plugin::builtin { { "hex.welcome.start.open_other", "Andere Provider" }, { "hex.welcome.header.help", "Hilfe" }, { "hex.welcome.help.repo", "GitHub Repository" }, - { "hex.welcome.help.repo.link", "https://github.com/WerWolv/ImHex" }, + { "hex.welcome.help.repo.link", "https://imhex.werwolv.net/git" }, { "hex.welcome.help.gethelp", "Hilfe erhalten" }, { "hex.welcome.help.gethelp.link", "https://github.com/WerWolv/ImHex/discussions/categories/get-help" }, + { "hex.welcome.help.discord", "Discord Server" }, + { "hex.welcome.help.discord.link", "https://imhex.werwolv.net/discord" }, { "hex.welcome.header.plugins", "Geladene Plugins" }, { "hex.welcome.plugins.plugin", "Plugin" }, { "hex.welcome.plugins.author", "Autor" }, diff --git a/plugins/builtin/source/lang/en_US.cpp b/plugins/builtin/source/lang/en_US.cpp index 9dbbdb271..b0a0a7e35 100644 --- a/plugins/builtin/source/lang/en_US.cpp +++ b/plugins/builtin/source/lang/en_US.cpp @@ -26,9 +26,11 @@ namespace hex::plugin::builtin { { "hex.welcome.start.open_other", "Other Providers" }, { "hex.welcome.header.help", "Help" }, { "hex.welcome.help.repo", "GitHub Repository" }, - { "hex.welcome.help.repo.link", "https://github.com/WerWolv/ImHex" }, + { "hex.welcome.help.repo.link", "https://imhex.werwolv.net/git" }, { "hex.welcome.help.gethelp", "Get Help" }, { "hex.welcome.help.gethelp.link", "https://github.com/WerWolv/ImHex/discussions/categories/get-help" }, + { "hex.welcome.help.discord", "Discord Server" }, + { "hex.welcome.help.discord.link", "https://imhex.werwolv.net/discord" }, { "hex.welcome.header.plugins", "Loaded Plugins" }, { "hex.welcome.plugins.plugin", "Plugin" }, { "hex.welcome.plugins.author", "Author" }, diff --git a/plugins/builtin/source/lang/it_IT.cpp b/plugins/builtin/source/lang/it_IT.cpp index 99e9e6669..a847a0ef2 100644 --- a/plugins/builtin/source/lang/it_IT.cpp +++ b/plugins/builtin/source/lang/it_IT.cpp @@ -26,9 +26,11 @@ namespace hex::plugin::builtin { //{ "hex.welcome.start.open_other", "Other Providers" }, { "hex.welcome.header.help", "Aiuto" }, { "hex.welcome.help.repo", "Repo GitHub" }, - { "hex.welcome.help.repo.link", "https://github.com/WerWolv/ImHex" }, + { "hex.welcome.help.repo.link", "https://imhex.werwolv.net/git" }, { "hex.welcome.help.gethelp", "Chiedi aiuto" }, { "hex.welcome.help.gethelp.link", "https://github.com/WerWolv/ImHex/discussions/categories/get-help" }, + //{ "hex.welcome.help.discord", "Discord Server" }, + //{ "hex.welcome.help.discord.link", "https://imhex.werwolv.net/discord" }, { "hex.welcome.header.plugins", "Plugins caricati" }, { "hex.welcome.plugins.plugin", "Plugin" }, { "hex.welcome.plugins.author", "Autore" }, diff --git a/plugins/builtin/source/lang/zh_CN.cpp b/plugins/builtin/source/lang/zh_CN.cpp index ac07078b0..dc7a4482b 100644 --- a/plugins/builtin/source/lang/zh_CN.cpp +++ b/plugins/builtin/source/lang/zh_CN.cpp @@ -26,9 +26,11 @@ namespace hex::plugin::builtin { //{ "hex.welcome.start.open_other", "Other Providers" }, { "hex.welcome.header.help", "帮助" }, { "hex.welcome.help.repo", "GitHub仓库" }, - { "hex.welcome.help.repo.link", "https://github.com/WerWolv/ImHex" }, + { "hex.welcome.help.repo.link", "https://imhex.werwolv.net/git" }, { "hex.welcome.help.gethelp", "获得帮助" }, { "hex.welcome.help.gethelp.link", "https://github.com/WerWolv/ImHex/discussions/categories/get-help" }, + //{ "hex.welcome.help.discord", "Discord Server" }, + //{ "hex.welcome.help.discord.link", "https://imhex.werwolv.net/discord" }, { "hex.welcome.header.plugins", "已加载插件" }, { "hex.welcome.plugins.plugin", "插件" }, { "hex.welcome.plugins.author", "作者" }, diff --git a/source/window/window.cpp b/source/window/window.cpp index 5d36b04cc..939a31f24 100644 --- a/source/window/window.cpp +++ b/source/window/window.cpp @@ -608,13 +608,14 @@ namespace hex { } } - ImGui::TableNextRow(ImGuiTableRowFlags_None, ImGui::GetTextLineHeightWithSpacing() * 5); + ImGui::TableNextRow(ImGuiTableRowFlags_None, ImGui::GetTextLineHeightWithSpacing() * 6); ImGui::TableNextColumn(); ImGui::UnderlinedText("hex.welcome.header.help"_lang); ImGui::SetCursorPosY(ImGui::GetCursorPosY() + 5 * SharedData::globalScale); { if (ImGui::IconHyperlink(ICON_VS_GITHUB, "hex.welcome.help.repo"_lang)) hex::openWebpage("hex.welcome.help.repo.link"_lang); if (ImGui::IconHyperlink(ICON_VS_ORGANIZATION, "hex.welcome.help.gethelp"_lang)) hex::openWebpage("hex.welcome.help.gethelp.link"_lang); + if (ImGui::IconHyperlink(ICON_VS_COMMENT_DISCUSSION, "hex.welcome.help.discord"_lang)) hex::openWebpage("hex.welcome.help.discord.link"_lang); } ImGui::TableNextRow(ImGuiTableRowFlags_None, ImGui::GetTextLineHeightWithSpacing() * 5);