~navit-project/navit/+git/trunk:ci-fdroid-buildserver

Last commit made on 2022-10-17
Get this branch:
git clone -b ci-fdroid-buildserver https://git.launchpad.net/~navit-project/navit/+git/trunk

Branch merges

Branch information

Name:
ci-fdroid-buildserver
Repository:
lp:~navit-project/navit/+git/trunk

Recent commits

9efeeef... by mvglasow <michael -at- vonglasow.com>

Add:ci:Fix some environment variables for F-Droid build

Signed-off-by: mvglasow <michael -at- vonglasow.com>

6fcbba0... by mvglasow <michael -at- vonglasow.com>

Add:ci:Run F-Droid build on fdroidserver image

Signed-off-by: mvglasow <michael -at- vonglasow.com>

aae00d4... by Michael von Glasow

Fix:vehicle/android:Never use fused provider for precise location (#1202)

Signed-off-by: mvglasow <michael -at- vonglasow.com>

Signed-off-by: mvglasow <michael -at- vonglasow.com>
Co-authored-by: mvglasow <michael -at- vonglasow.com>

54df123... by Michael von Glasow

Fix:ci:use F-Droid server version compatible with OS image (#1204)

Signed-off-by: mvglasow <michael -at- vonglasow.com>

Signed-off-by: mvglasow <michael -at- vonglasow.com>
Co-authored-by: mvglasow <michael -at- vonglasow.com>

e798254... by OLFDB <email address hidden>

Fix:doc:build:linux:Added missing dependency libspeechd-dev for Raspberry Pi OS.

4e37073... by Stefan Wildemann <email address hidden>

Merge pull request #1198 from bkoppelmann/warnings

Fix some of the many compiler warning

69d870e... by Stefan Wildemann <email address hidden>

fix:core:Forcefully terminate string read with fgets

cb4216d... by Bastian Koppelmann

Fix:gui:qt5_qml: Fix -Wunused-variable for proxy.c

This fixes the warning:

proxy.c:35:52: warning: unused variable ‘img’ [-Wunused-variable]
   35 | struct graphics_image *img;
      |

eb03d7e... by Bastian Koppelmann

Fix:gui/qt5_qml: Fix -Wreorder

member variables ought to be initialized in the same order as they are
declared. This fixes the warning:

qml_poi.h:47:13: warning: ‘PoiObject::m_icon’ will be initialized after [-Wreorder]
   47 | QString m_icon;
      | ^~~~~~

9279593... by Bastian Koppelmann

Fix:gui:qt5_qml: Fix -Wunused-variable

this fixes the warnings:

backend.cpp:176:25: warning: unused variable ‘nav’ [-Wunused-variable]
  176 | struct navigation * nav = NULL;
      | ^~~