7 Commits

Author SHA1 Message Date
neru 8830d1abdb Merge branch 'main' of https://git.neru.rip/neru/HexUnlocked
Build / build (push) Failing after 23m50s
2026-06-20 11:46:43 -03:00
neru 71fe1c6549 fix: icon missing from tray 2026-06-20 10:57:10 -03:00
neru e70323c86b docs: add icon to readme
Build / build (push) Has been cancelled
2026-06-20 09:21:48 -03:00
neru 9f5abefb34 docs: add images and sources
Build / build (push) Successful in 9m28s
2026-06-20 09:18:59 -03:00
neru f6ac12962d fix: remove unneeded def 2026-06-20 09:18:29 -03:00
neru 6d176c2020 build: fix weird compile bug
Build / build (push) Successful in 9m23s
2026-06-20 08:25:13 -03:00
neru 83c1fba265 build: bring back minsizerel
Build / build (push) Failing after 6m7s
2026-06-20 08:17:03 -03:00
8 changed files with 7 additions and 6 deletions
+1
View File
@@ -74,6 +74,7 @@ jobs:
- name: Configure CMake
run: |
cmake -B build -S . -G Ninja \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_SYSTEM_NAME=Windows \
-DCMAKE_C_COMPILER=x86_64-w64-mingw32-gcc \
-DCMAKE_CXX_COMPILER=x86_64-w64-mingw32-g++ \
+3
View File
@@ -147,6 +147,9 @@ set_target_properties(hex-unlocked PROPERTIES OUTPUT_NAME "${RANDOM_EXE_NAME}")
# compiler / IDE config
if(NOT MSVC)
target_link_options(hex-unlocked PRIVATE -static -static-libgcc -static-libstdc++)
if(CMAKE_BUILD_TYPE MATCHES "Release|MinSizeRel")
target_link_options(hex-unlocked PRIVATE -s)
endif()
else()
set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT hex-unlocked)
endif()
+2
View File
@@ -1,4 +1,6 @@
<h1 align="center">
<img src="img/favicon.ico" height="64">
<br/>
<b>Hex: Unlocked</b>
</h1>
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 156 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 607 KiB

BIN
View File
Binary file not shown.
-5
View File
@@ -17,11 +17,6 @@
#include <processthreadsapi.h>
#include <handleapi.h>
#ifndef CREATE_NO_WINDOW
// from: WinBase.h
#define CREATE_NO_WINDOW 0x08000000
#endif
bool running = true;
TinyMITMProxy* proxy = nullptr;
ProxyConfigurator* conf = nullptr;
+1 -1
View File
@@ -84,7 +84,7 @@ bool TrayIcon::init()
nid.uFlags = NIF_ICON | NIF_MESSAGE | NIF_TIP;
nid.uCallbackMessage = WM_TRAYICON;
nid.hIcon = LoadIcon(NULL, IDI_APPLICATION);
nid.hIcon = LoadIconA(GetModuleHandle(NULL), "IDI_ICON1");
strncpy_s(nid.szTip, "HexUnlocked", sizeof(nid.szTip) - 1);
nid.szTip[sizeof(nid.szTip) - 1] = '\0';