Your ROOT_URL in app.ini is https://scm.trinitydesktop.org/gitea/ but you are visiting https://scm.trinitydesktop.net/gitea/TDE/tdepim/src/commit/c4b3c076ff7d33a8205c616611477ae3c7532de7/libkmime/kmime_version.h You should set ROOT_URL correctly, otherwise the web may not work correctly.
tdepim/libkmime/kmime_version.h

11 lines
279 B

#ifndef __KMIME_VERSION_H__
#define __KMIME_VERSION_H__
#define KMIME_MAJOR 0;
#define KMIME_MINOR 1;
#define KMIME_PATCHLEVEL 0;
#define KMIME_VERSION (KMIME_MAJOR * 100 + KMIME_MINOR * 10 + KMIME_PATCHLEVEL)
#define KMIME_VERSION_STRING "0.1.0"
#endif // __KMIME_VERSION_H__