mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-05-04 11:00:09 -05:00
9554889964
### Problem description The current edlib submodule references a commit that's not present in <https://github.com/blawrence-ont/edlib>. This throws off submodule initialization and makes building an ImHex Flatpak using upstream Git HEAD require some nasty Git bodges. ### Implementation description Switching to <https://github.com/Martinsos/edlib> in `.gitmodules` is all that is necessary, since <https://github.com/Martinsos/edlib/commit/0ddc23ea06abd95ab6227442acb4c27bd7607b68> properly exists. ### Screenshots _This section was intentionally left blank._ ### Additional things For those curious, I'm currently working around this by manually appending ```gitconfig [url "https://github.com/Martinsos/edlib"] insteadOf = "https://github.com/blawrence-ont/edlib" ``` to `${flatpak_builder_state}/git/https_github.com_blawrence-ont_edlib/config` after `flatpak-builder` has cloned the repository and failed. I know this is a brittle solution.
50 lines
1.6 KiB
Plaintext
50 lines
1.6 KiB
Plaintext
[submodule "lib/third_party/nativefiledialog"]
|
|
path = lib/third_party/nativefiledialog
|
|
url = https://github.com/btzy/nativefiledialog-extended
|
|
ignore = dirty
|
|
[submodule "lib/third_party/yara/yara"]
|
|
path = lib/third_party/yara/yara
|
|
url = https://github.com/VirusTotal/yara
|
|
ignore = dirty
|
|
[submodule "lib/third_party/xdgpp"]
|
|
path = lib/third_party/xdgpp
|
|
url = https://github.com/WerWolv/xdgpp
|
|
ignore = dirty
|
|
[submodule "lib/third_party/fmt"]
|
|
path = lib/third_party/fmt
|
|
url = https://github.com/fmtlib/fmt
|
|
ignore = dirty
|
|
[submodule "lib/third_party/capstone"]
|
|
path = lib/third_party/capstone
|
|
url = https://github.com/capstone-engine/capstone
|
|
ignore = dirty
|
|
[submodule "lib/third_party/jthread/jthread"]
|
|
path = lib/third_party/jthread/jthread
|
|
url = https://github.com/josuttis/jthread
|
|
ignore = dirty
|
|
[submodule "lib/third_party/edlib"]
|
|
path = lib/third_party/edlib
|
|
url = https://github.com/Martinsos/edlib
|
|
ignore = dirty
|
|
[submodule "lib/third_party/lunasvg"]
|
|
path = lib/third_party/lunasvg
|
|
url = https://github.com/sammycage/lunasvg
|
|
ignore = dirty
|
|
|
|
[submodule "lib/external/libromfs"]
|
|
path = lib/external/libromfs
|
|
url = https://github.com/WerWolv/libromfs
|
|
[submodule "lib/external/pattern_language"]
|
|
path = lib/external/pattern_language
|
|
url = https://github.com/WerWolv/PatternLanguage
|
|
[submodule "lib/external/libwolv"]
|
|
path = lib/external/libwolv
|
|
url = https://github.com/WerWolv/libwolv
|
|
|
|
[submodule "lib/third_party/HashLibPlus"]
|
|
path = lib/third_party/HashLibPlus
|
|
url = https://github.com/WerWolv/HashLibPlus
|
|
[submodule "lib/external/disassembler"]
|
|
path = lib/external/disassembler
|
|
url = https://github.com/WerWolv/Disassembler
|