Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion repos/Inkay
Submodule Inkay updated 57 files
+13 −0 .github/dependabot.yml
+6 −4 .github/workflows/ci.yml
+6 −1 .gitignore
+3 −2 Dockerfile
+30 −20 Makefile
+33 −4 README.md
+0 −0 common/Notification.cpp
+0 −0 common/Notification.h
+21 −0 common/inkay_config.h
+44 −0 common/lang.cpp
+22 −0 common/lang.h
+115 −0 common/sysconfig.cpp
+4 −0 common/sysconfig.h
+13 −0 common/utils/scope_exit.h
+149 −0 plugin/Makefile
+234 −0 plugin/src/config.cpp
+24 −0 plugin/src/config.h
+71 −0 plugin/src/main.cpp
+93 −0 plugin/src/module.cpp
+30 −0 plugin/src/module.h
+36 −0 plugin/src/utils/logger.h
+0 −0 plugin/src/wut_extra.h
+5 −239 src/config.cpp
+4 −24 src/config.h
+25 −0 src/export.h
+13 −10 src/lang/de_DE.lang
+15 −0 src/lang/en@uwu.lang
+3 −0 src/lang/en_US.lang
+5 −2 src/lang/es_ES.lang
+13 −10 src/lang/fr_FR.lang
+13 −10 src/lang/it_IT.lang
+13 −10 src/lang/ja_JP.lang
+13 −10 src/lang/nl_NL.lang
+13 −10 src/lang/pt_BR.lang
+13 −10 src/lang/ru_RU.lang
+13 −10 src/lang/zh_CN.lang
+3 −0 src/lang/zh_Hant.lang
+107 −65 src/main.cpp
+59 −29 src/patches/account_settings.cpp
+3 −3 src/patches/account_settings.h
+33 −8 src/patches/dns_hooks.cpp
+20 −0 src/patches/dns_hooks.h
+46 −17 src/patches/eshop_applet.cpp
+20 −0 src/patches/eshop_applet.h
+1 −1 src/patches/game_matchmaking.cpp
+131 −0 src/patches/game_peertopeer.cpp
+16 −0 src/patches/game_peertopeer.h
+45 −13 src/patches/olv_applet.cpp
+20 −0 src/patches/olv_applet.h
+1 −1 src/patches/olv_urls.cpp
+3 −2 src/patches/olv_urls.h
+3 −3 src/utils/logger.h
+29 −0 src/utils/replace_mem.cpp
+6 −0 src/utils/replace_mem.h
+64 −0 src/utils/rpl_info.cpp
+30 −0 src/utils/rpl_info.h
+0 −57 src/utils/sysconfig.cpp
Loading