Origin commit data
------------------
Commit: 3b94c1740e
Author: vanhofen <vanhofen@gmx.de>
Date: 2024-10-07 (Mon, 07 Oct 2024)
Origin message was:
------------------
- lua_curl: sync with tangocash
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
Origin commit data
------------------
Commit: f5acbb236e
Author: TangoCash <eric@loxat.de>
Date: 2024-10-07 (Mon, 07 Oct 2024)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
Origin commit data
------------------
Commit: 49d2cb3abf
Author: vanhofen <vanhofen@gmx.de>
Date: 2024-10-07 (Mon, 07 Oct 2024)
Origin message was:
------------------
- unify text-replacements in EPG
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
Origin commit data
------------------
Commit: cdea62ed25
Author: TangoCash <eric@loxat.de>
Date: 2024-10-07 (Mon, 07 Oct 2024)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
Origin commit data
------------------
Commit: 7faf515f1e
Author: TangoCash <eric@loxat.de>
Date: 2024-10-07 (Mon, 07 Oct 2024)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
Origin commit data
------------------
Commit: 4ebfb3d8ff
Author: TangoCash <eric@loxat.de>
Date: 2024-10-07 (Mon, 07 Oct 2024)
Origin message was:
------------------
- streamts: add fallback to FindChannel48()
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
Origin commit data
------------------
Commit: c902f2aac8
Author: vanhofen <vanhofen@gmx.de>
Date: 2024-09-22 (Sun, 22 Sep 2024)
Origin message was:
------------------
- weather-setup: change g_settings.weather_api_version to 3.0
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
Origin commit data
------------------
Commit: 2260d13704
Author: TangoCash <eric@loxat.de>
Date: 2024-09-18 (Wed, 18 Sep 2024)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
Origin commit data
------------------
Commit: d6c2dd31e5
Author: vanhofen <vanhofen@gmx.de>
Date: 2024-09-07 (Sat, 07 Sep 2024)
Origin message was:
------------------
- initial-settings: update matze settings
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
Origin commit data
------------------
Commit: c75df7211c
Author: vanhofen <vanhofen@gmx.de>
Date: 2024-09-02 (Mon, 02 Sep 2024)
Origin message was:
------------------
- weather-setup: fix typo
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
- Removed the 'const' specifier from CMenuOptionChooser's getOption method.
- Ensured that getOption methods in derived classes do not hide the base class methods.
This should avoid compiler warnings related to method hiding
and ensure that the correct getOption method is used without ambiguity.
Tested and verified that no new warnings or errors are introduced.
- Fixed the getHeight() method in CMenuSelector using the override keyword
to ensure it correctly overrides the virtual method from CMenuItem.
- Resolved -Woverloaded-virtual warnings related to hidden overloaded
virtual methods.
This change resolves -Woverloaded-virtual warnings.
Ensured that the init method is resolved at compile time,
as the base class version is not intended to be used in derived classes.
- Changed format specifiers from %ld to %" PRId64 " for `time_t` variables
to ensure compatibility across different platforms.
- Cast `time_t` variables to `int64_t` for proper formatting.
- Updated printf statements and debug macros accordingly.
- Fixes some translations and code formatting.
- Changed format specifiers from %ld to %" PRId64 " for time-related
variables to ensure cross-platform compatibility.
- Updated format specifiers from %lx to %" PRIx64 " for consistency
with 64-bit integers.
- Added casts to `int64_t` for accurate formatting.
This changes should address format warnings and ensure correct behavior on
systems with 64-bit integers.
- Changed format specifiers from %ld to %" PRId64 " for time-related
variables to ensure cross-platform compatibility.
- Added casts to `int64_t` for accurate formatting.
This should avoid format warnings and ensure correct behavior
on systems with 64-bit integers.
- Changed format specifier from %ld to %" PRId64 " for variables
of type `__suseconds64_t` to ensure cross-platform compatibility.
- Added casts to `int64_t` for accurate formatting.
- Included `<cinttypes>` for proper format macros.
This should avoid format warnings and ensure correct behavior
on systems where `__suseconds64_t` and similar types are 64-bit integers.
- Changed format specifiers from %ld to %" PRId64 " for time_t variables to ensure compatibility across different platforms.
- Cast time_t variables to int64_t for proper formatting.
- Updated printf and fprintf statements accordingly.
This should resolve format warnings and ensures correct behavior on
systems where time_t is a 64-bit integer.
- Changed _LastCh.timestamp to int64_t for compatibility with tv.tv_sec.
- Updated store method to cast tv.tv_sec to int64_t, preventing warnings.
- Ensured timestamp calculations use int64_t for consistency.
This shoold resolve compilation warnings and improve platform independence.
- Corrected the format specifiers in snprintf calls to match the data
types of the arguments.
- Used PRId64 for int64_t types to ensure compatibility across different
platforms.
- Added explicit type casting to int64_t for time_t variables
to resolve mismatched format warnings.
- Corrected the format specifiers in printf calls to match the data types
of arguments.
- Used PRIi64 for int64_t types to ensure compatibility across
different platforms.
- Added explicit type casting to int64_t for time_t variables to resolve
mismatched format warnings.
- Cast time_t variables to int64_t to match the expected format specifier.
This should fix addresses the warnings about mismatched format specifiers for time_t.
Changed the for-loop in the show method of CEpgData class to properly
check both conditions using the logical AND operator.
This should ensure that the return value of 'operator!=' is not ignored,
which addresses the compiler warning about the 'nodiscard' [-Wunused-result].
- Replaced ',' with '&&' in the loop condition.
- Changed long to time_t for event times.
- Used PRIu64, PRIdMAX, and %lld for formatting and parsing time_t
and event IDs.
- Updated sscanf and printf calls to handle time_t and uint64_t correctly.
- Added <inttypes.h> for correct format specifiers.
- Used PRIdMAX for formatting __suseconds64_t in print function.
- Updated sprintf call to handle __suseconds64_t correctly.
- Added <inttypes.h> for correct format specifiers.
- Used PRIdMAX for formatting time_t in paintItem and updateTimes functions.
- Updated snprintf calls to handle time_t correctly.
- Minor formatting adjustments for readability.
- Added <inttypes.h> for correct format specifiers.
- Used PRIuMAX or time_t handling to resolve [-Wformat=] warnings.
- Updated sscanf and snprintf calls in exec and show functions.
- Updated channelEPGformated to use time_t instead of long for _stoptime.
- Corrected sscanf format specifier in EpgCGI to handle time_t correctly.
- Changed handling of _stoptime in xmltvepgCGI to use time_t.
- Ensured gmtime and localtime functions receive time_t arguments.
These changes ensure compatibility with _TIME_BITS=64 and maintain
proper type usage for time functions, addressing different
definitions and maintaining robustness across kernel and library versions.
Ensure backward compatibility for rc_sync and channelEPGformated
- Added conditional compilation in rc_sync to check for input_event_sec macro.
- Used input_event_sec and input_event_usec macros if defined.
- Provided fallback to direct timeval members for older versions.
- Minor formatting adjustment in channelEPGformated for consistency.
This should ensure compatibility with both newer and older
kernel versions, different C library implementations,
and possible standard settings of build systems.
Addressing different definitions of the input_event structure maintains
robustness across kernel, library, and build system configurations.
supplement to commit:
rcinput: Fix build issues with _TIME_BITS=64
- Ensured compatibility with various definitions of input_event structure
as per input.h.
- Added conditional compilation to check for input_event_sec macro.
- Used input_event_sec and input_event_usec macros if defined.
- Provided fallback to direct timeval members for versions without
the macros.
This ensures compatibility with both newer and older kernel versions,
different C library implementations, and possible standard settings of
build systems. Addressing different definitions of the input_event structure
maintains robustness across kernel, library, and build system configurations.
- Updated rcinput.cpp to use input_event_sec and input_event_usec macros
for accessing time members of input_event structure.
- Included necessary headers for time functions and structures.
- Ensured compatibility with various definitions of input_event structure
as per input.h.
This should resolves compilation errors related to accessing time members
of input_event structure when _TIME_BITS=64 is defined.