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

Update all submodules to the latest HEAD #13

Merged
merged 2 commits into from
Sep 22, 2024
Merged
Show file tree
Hide file tree
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 Clients/Korangar
Submodule Korangar updated 220 files
2 changes: 1 addition & 1 deletion Clients/RagnarokRebuildTCP
2 changes: 1 addition & 1 deletion Clients/bevy_ro_client
Submodule bevy_ro_client updated 38 files
+117 −104 Cargo.lock
+5 −1 Cargo.toml
+117 −0 ragnarok_rebuild_assets/src/bin/rsm_debug.rs
+10 −6 ragnarok_rebuild_assets/src/gnd/mod.rs
+16 −5 ragnarok_rebuild_assets/src/rsw/mod.rs
+1 −1 ragnarok_rebuild_assets/src/rsw/sound.rs
+9 −0 ragnarok_rebuild_bevy/src/assets/gnd/components.rs
+39 −34 ragnarok_rebuild_bevy/src/assets/gnd/loader.rs
+7 −2 ragnarok_rebuild_bevy/src/assets/gnd/mod.rs
+5 −0 ragnarok_rebuild_bevy/src/assets/rsm/components.rs
+7 −0 ragnarok_rebuild_bevy/src/assets/rsm/events.rs
+131 −89 ragnarok_rebuild_bevy/src/assets/rsm/loader.rs
+41 −10 ragnarok_rebuild_bevy/src/assets/rsm/mod.rs
+25 −17 ragnarok_rebuild_bevy/src/assets/rsw/components.rs
+3 −0 ragnarok_rebuild_bevy/src/assets/rsw/events.rs
+195 −100 ragnarok_rebuild_bevy/src/assets/rsw/loader.rs
+214 −11 ragnarok_rebuild_bevy/src/assets/rsw/mod.rs
+6 −0 ragnarok_rebuild_bevy/src/assets/rsw/resources.rs
+3 −0 ragnarok_rebuild_bevy/src/audio/components.rs
+14 −1 ragnarok_rebuild_bevy/src/audio/events.rs
+49 −5 ragnarok_rebuild_bevy/src/audio/mod.rs
+187 −0 ragnarok_rebuild_bevy/src/debug/gnd_debug.rs
+7 −2 ragnarok_rebuild_bevy/src/debug/mod.rs
+187 −0 ragnarok_rebuild_bevy/src/debug/rsm_debug.rs
+362 −0 ragnarok_rebuild_bevy/src/debug/rsw_debug.rs
+0 −84 ragnarok_rebuild_bevy/src/debug/show_rsm_normals.rs
+4 −2 ragnarok_rebuild_bevy/src/lib.rs
+13 −0 ragnarok_rebuild_bevy/src/materials/mod.rs
+47 −0 ragnarok_rebuild_bevy/src/materials/rsm/mod.rs
+48 −0 ragnarok_rebuild_bevy/src/materials/rsm/rsm_shader.wgsl
+29 −0 ragnarok_rebuild_bevy/src/tables/mod.rs
+88 −0 ragnarok_rebuild_bevy/src/tables/name_table.rs
+0 −68 ragnarok_rebuild_bevy/src/world/mod.rs
+12 −3 ragnarok_rebuild_client/Cargo.toml
+1 −1 ragnarok_rebuild_client/src/client/components.rs
+95 −0 ragnarok_rebuild_client/src/client/mod.rs
+108 −0 ragnarok_rebuild_client/src/inspector_egui.rs
+23 −88 ragnarok_rebuild_client/src/main.rs
2 changes: 1 addition & 1 deletion Clients/roBrowser__Plugins
Submodule roBrowser__Plugins updated 1 files
+1 −1 README.md
2 changes: 1 addition & 1 deletion Clients/roBrowser__RemoteClientJS
2 changes: 1 addition & 1 deletion Clients/roBrowser__RemoteClientPHP
2 changes: 1 addition & 1 deletion Servers/Hercules
Submodule Hercules updated 54 files
+2 −2 .github/workflows/build.yml
+2 −2 .github/workflows/clang15_test.yml
+4 −4 .github/workflows/codeql-analysis.yml
+0 −4 .github/workflows/controller.yml
+2 −2 .github/workflows/gcc_test.yml
+2 −2 .github/workflows/gccold1.yml
+2 −2 .github/workflows/gccold2.yml
+0 −84 .github/workflows/gccold3.yml
+2 −2 .github/workflows/gccsnapshot_test.yml
+1 −1 .github/workflows/hwsapibot.yml
+2 −2 .github/workflows/macos_latest.yml
+2 −2 .github/workflows/macos_m1.yml
+2 −2 .github/workflows/mariadb.yml
+2 −2 .github/workflows/mysql.yml
+1 −1 .github/workflows/tools.yml
+1 −1 .github/workflows/windows.yml
+1 −0 AUTHORS
+40 −0 CHANGELOG.md
+21 −1 doc/constants_pre-re.md
+21 −1 doc/constants_re.md
+31 −114 doc/script_commands.txt
+ maps/re/iz_ac02.mcache
+ maps/re/iz_ac02_a.mcache
+ maps/re/iz_ac02_b.mcache
+ maps/re/iz_ac02_c.mcache
+ maps/re/iz_ac02_d.mcache
+5 −5 npc/custom/quests/hunting_missions.txt
+2 −4 npc/other/marriage.txt
+1 −2 npc/quests/guildrelay.txt
+4 −8 npc/quests/partyrelay.txt
+3 −6 npc/quests/quests_louyang.txt
+2 −6 npc/quests/quests_morocc.txt
+1 −2 npc/quests/quests_nameless.txt
+2 −3 npc/re/instances/MalangdoCulvert.txt
+48 −32 src/char/char.c
+2 −2 src/char/char.h
+1 −0 src/char/packets_hc_struct.h
+9 −0 src/common/HPMDataCheck.h
+1 −1 src/common/Makefile.in
+53 −0 src/common/charloginpackets.h
+1 −0 src/common/charmappackets.h
+12 −0 src/common/mapcharpackets.h
+1 −1 src/config/core.h
+24 −16 src/login/login.c
+12 −9 src/map/chrif.c
+1 −0 src/map/packets_struct.h
+125 −49 src/map/script.c
+12 −0 src/map/script.h
+10 −4 src/plugins/HPMHooking/HPMHooking.Defs.inc
+12 −12 src/plugins/HPMHooking/HPMHooking_char.Hooks.inc
+12 −0 src/plugins/HPMHooking/HPMHooking_map.HPMHooksCore.inc
+3 −0 src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc
+79 −0 src/plugins/HPMHooking/HPMHooking_map.Hooks.inc
+15 −10 tools/ci/travis.sh
2 changes: 1 addition & 1 deletion Servers/RustRO
Submodule RustRO updated 187 files
2 changes: 1 addition & 1 deletion Servers/rAthena
Submodule rAthena updated 55 files
+5 −0 conf/atcommands.yml
+3 −0 conf/msg_conf/map_msg.conf
+0 −5 db/pre-re/skill_db.yml
+7 −0 db/pre-re/status.yml
+40 −40 db/re/enchantgrade.yml
+20 −8 db/re/item_db_equip.yml
+46 −0 db/re/item_db_etc.yml
+5 −0 db/re/item_db_usable.yml
+10 −0 db/re/item_packages.yml
+562 −1,069 db/re/job_stats.yml
+1 −6 db/re/skill_db.yml
+12 −1 db/re/status.yml
+5 −0 doc/atcommands.txt
+10 −7 doc/status_change.txt
+110 −114 npc/jobs/2-1/assassin.txt
+3 −3 npc/re/merchants/barters/quests_18.yml
+2 −2 npc/re/mobs/dungeons/slabw01.txt
+2 −2 npc/re/quests/quests_18.txt
+1 −0 sql-files/main.sql
+1 −0 sql-files/upgrades/upgrade_20240914.sql
+1 −1 src/char/char.cpp
+7 −5 src/char/char_clif.cpp
+5 −3 src/char/int_guild.cpp
+1 −0 src/common/mmo.hpp
+58 −10 src/map/atcommand.cpp
+99 −91 src/map/battle.cpp
+2 −2 src/map/buyingstore.cpp
+8 −7 src/map/chat.cpp
+2 −2 src/map/chrif.cpp
+512 −513 src/map/clif.cpp
+24 −23 src/map/clif.hpp
+2 −199 src/map/clif_packetdb.hpp
+36 −28 src/map/guild.cpp
+2 −2 src/map/homunculus.cpp
+3 −3 src/map/mob.cpp
+6 −1 src/map/npc.hpp
+207 −0 src/map/packets.hpp
+8 −6 src/map/packets_struct.hpp
+1 −1 src/map/party.cpp
+39 −35 src/map/pc.cpp
+6 −2 src/map/pc.hpp
+7 −9 src/map/pet.cpp
+2 −2 src/map/quest.cpp
+5 −5 src/map/script.cpp
+14 −0 src/map/script.hpp
+19 −0 src/map/script_constants.hpp
+546 −527 src/map/skill.cpp
+30 −1 src/map/skill.hpp
+131 −106 src/map/status.cpp
+54 −54 src/map/status.hpp
+49 −45 src/map/trade.cpp
+11 −0 src/map/trade.hpp
+45 −35 src/map/unit.cpp
+2 −2 src/map/unit.hpp
+2 −2 src/map/vending.cpp
2 changes: 1 addition & 1 deletion Tools/BrowEdit3
Submodule BrowEdit3 updated 1 files
+68 −1 browedit/Config.cpp
2 changes: 1 addition & 1 deletion update-submodules.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ git submodule foreach '
git checkout $(git rev-parse --abbrev-ref HEAD)
git reset --hard origin/HEAD
'
git checkout HEAD
git checkout -b submodule-update-tracking
git add .
git commit -m "Update all submodules to the latest HEAD"