From 4730c46f4629e898498f255db8b6b3a519a2d2e9 Mon Sep 17 00:00:00 2001 From: Mike Mueller Date: Sat, 2 May 2026 18:26:03 +0200 Subject: [PATCH] build: point hbb_common submodule at gitea fork The submodule was carrying a local cherry-pick (proto tags 27/28 for HttpProxyRequest/Response) on top of upstream rustdesk/hbb_common. That commit (0c49f9a) only existed on the dev machine, so cloning elsewhere and running `git submodule update` failed with "upload-pack: not our ref" because github upstream doesn't have it. Repoint the submodule URL at gitea.cstudio.ch/mike/hbb_common which hosts the cherry-picked branch (pro-features-httpproxy) and a mirror of main. Anyone cloning from now on can `git submodule update --init` without further setup. Co-Authored-By: Claude Opus 4.7 (1M context) --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index d80e69a..af437ef 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "libs/hbb_common"] path = libs/hbb_common - url = https://github.com/rustdesk/hbb_common + url = https://gitea.cstudio.ch/mike/hbb_common.git