Commit Graph

16583 Commits

Author SHA1 Message Date
Thilo Graf
2c3e860a04 system/ping.cpp: Conditionally use register keyword for backward compatibility;
remove for C++17 and later where it is not allowed


Origin commit data
------------------
Branch: ni/coolstream
Commit: ef0d29f448
Author: Thilo Graf <dbt@novatux.de>
Date: 2024-09-02 (Mon, 02 Sep 2024)



------------------
This commit was generated by Migit
2024-09-02 21:06:01 +02:00
Thilo Graf
29f9743e15 lcd4l.cpp: Fix format warnings
- 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.


Origin commit data
------------------
Branch: ni/coolstream
Commit: 6370dc8185
Author: Thilo Graf <dbt@novatux.de>
Date: 2024-09-02 (Mon, 02 Sep 2024)

Origin message was:
------------------
lcd4l.cpp: Fix format warnings

- 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.


------------------
This commit was generated by Migit
2024-09-02 21:06:01 +02:00
Thilo Graf
19645e4f14 moviecut.cpp: Fix format warnings in moviecut.cpp
- 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.


Origin commit data
------------------
Branch: ni/coolstream
Commit: b8d13a1f7b
Author: Thilo Graf <dbt@novatux.de>
Date: 2024-09-02 (Mon, 02 Sep 2024)

Origin message was:
------------------
moviecut.cpp: Fix format warnings in moviecut.cpp

- 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.


------------------
This commit was generated by Migit
2024-09-02 21:06:01 +02:00
Thilo Graf
1353c97bde radiotools.cpp: Don't use register keyword with C++17 standard
Conditionally use register keyword for backward compatibility;
remove for C++17 and later where it is not allowed.


Origin commit data
------------------
Branch: ni/coolstream
Commit: c72cdb8612
Author: Thilo Graf <dbt@novatux.de>
Date: 2024-09-02 (Mon, 02 Sep 2024)



------------------
This commit was generated by Migit
2024-09-02 21:06:01 +02:00
Thilo Graf
6037fead85 ffmpegdec.cpp: Fix format specifiers for time_t for platform compatibility
- Use PRId64 in printf to format time_t variables correctly.
- Cast time_t variables to int64_t to avoid [-Wformat=] warnings.


Origin commit data
------------------
Branch: ni/coolstream
Commit: 23729d5b5a
Author: Thilo Graf <dbt@novatux.de>
Date: 2024-09-02 (Mon, 02 Sep 2024)



------------------
This commit was generated by Migit
2024-09-02 21:06:01 +02:00
Thilo Graf
a5c1cd4813 CUpnpBrowserGui: Fix format specifiers for time_t for platform compatibility
- Use PRId64 in snprintf to format time_t variables correctly.
- This avoids [-Wformat=] warnings and ensures platform-independent code.


Origin commit data
------------------
Branch: ni/coolstream
Commit: 2f229ef555
Author: Thilo Graf <dbt@novatux.de>
Date: 2024-09-02 (Mon, 02 Sep 2024)



------------------
This commit was generated by Migit
2024-09-02 21:06:01 +02:00
Thilo Graf
4d3e0dbda0 update.cpp: Fix format specifiers for time_t for platform compatibility
- 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.


Origin commit data
------------------
Branch: ni/coolstream
Commit: 91531a287a
Author: Thilo Graf <dbt@novatux.de>
Date: 2024-09-02 (Mon, 02 Sep 2024)



------------------
This commit was generated by Migit
2024-09-02 21:06:01 +02:00
Thilo Graf
ddd2881fdd epgview.cpp: Fix warning about ignored 'nodiscard' attribute in show method
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.


Origin commit data
------------------
Branch: ni/coolstream
Commit: d2d82e4b22
Author: Thilo Graf <dbt@novatux.de>
Date: 2024-09-02 (Mon, 02 Sep 2024)



------------------
This commit was generated by Migit
2024-09-02 21:06:01 +02:00
Thilo Graf
334ef62c67 controlapi.cpp: Fix format warnings and update types in CControlAPI::EpgCGI
- 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.


Origin commit data
------------------
Branch: ni/coolstream
Commit: 87d90833cc
Author: Thilo Graf <dbt@novatux.de>
Date: 2024-09-02 (Mon, 02 Sep 2024)

Origin message was:
------------------
controlapi.cpp: Fix format warnings and update types in CControlAPI::EpgCGI

- 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.


------------------
This commit was generated by Migit
2024-09-02 21:06:01 +02:00
Thilo Graf
b94589b497 libdvbsub/Debug.cpp: Fix format warnings for __suseconds64_t in Debug.cpp
- Added <inttypes.h> for correct format specifiers.
- Used PRIdMAX for formatting __suseconds64_t in print function.
- Updated sprintf call to handle __suseconds64_t correctly.


Origin commit data
------------------
Branch: ni/coolstream
Commit: a23f84104f
Author: Thilo Graf <dbt@novatux.de>
Date: 2024-09-02 (Mon, 02 Sep 2024)



------------------
This commit was generated by Migit
2024-09-02 21:06:01 +02:00
Thilo Graf
aee3131709 audioplayer.cpp: Fix format warnings for time_t in audioplayer.cpp
- 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.


Origin commit data
------------------
Branch: ni/coolstream
Commit: c71729cf48
Author: Thilo Graf <dbt@novatux.de>
Date: 2024-09-02 (Mon, 02 Sep 2024)



------------------
This commit was generated by Migit
2024-09-02 21:06:01 +02:00
Thilo Graf
650c087d23 followscreenings.cpp: Fix format issues for time_t portability
- 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.


Origin commit data
------------------
Branch: ni/coolstream
Commit: 91902a70d5
Author: Thilo Graf <dbt@novatux.de>
Date: 2024-09-02 (Mon, 02 Sep 2024)



------------------
This commit was generated by Migit
2024-09-02 21:06:01 +02:00
Thilo Graf
d690bdc4af controlapi.cpp: ensure type compatibility for time_t in multiple methods
- 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.


Origin commit data
------------------
Branch: ni/coolstream
Commit: 0a4e301035
Author: Thilo Graf <dbt@novatux.de>
Date: 2024-09-02 (Mon, 02 Sep 2024)



------------------
This commit was generated by Migit
2024-09-02 21:06:01 +02:00
Thilo Graf
157306a8da controlapi.cpp: try to fix build errors if member 'time' is not found
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.


Origin commit data
------------------
Branch: ni/coolstream
Commit: 1945b2f089
Author: Thilo Graf <dbt@novatux.de>
Date: 2024-09-02 (Mon, 02 Sep 2024)



------------------
This commit was generated by Migit
2024-09-02 21:06:01 +02:00
Thilo Graf
e5ab98d5fc rcinput: ensure backward compatibility
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.


Origin commit data
------------------
Branch: ni/coolstream
Commit: f65209c56c
Author: Thilo Graf <dbt@novatux.de>
Date: 2024-09-02 (Mon, 02 Sep 2024)

Origin message was:
------------------
rcinput: ensure backward compatibility

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.


------------------
This commit was generated by Migit
2024-09-02 21:06:01 +02:00
Thilo Graf
962feef005 rcinput: Fix build issues with _TIME_BITS=64
- 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.


Origin commit data
------------------
Branch: ni/coolstream
Commit: 022c51fef8
Author: Thilo Graf <dbt@novatux.de>
Date: 2024-09-02 (Mon, 02 Sep 2024)

Origin message was:
------------------
rcinput: Fix build issues with _TIME_BITS=64

- 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.


------------------
This commit was generated by Migit
2024-09-02 21:06:01 +02:00
Thilo Graf
0b6b5d04fa cc_timer.h: Fix missing include for std::string in cc_timer.h
Added the missing #include <string> directive to cc_timer.h to
resolve compilation error due to incomplete type 'std::string'.
Observed with g++ 13.


Origin commit data
------------------
Branch: ni/coolstream
Commit: e6c1a1dd6c
Author: Thilo Graf <dbt@novatux.de>
Date: 2024-06-10 (Mon, 10 Jun 2024)



------------------
This commit was generated by Migit
2024-06-10 22:46:51 +02:00
Thilo Graf
f0cbf2ce54 neutrino: Add method to check for empty files in neutrino Lua API
doc:
 -https://wiki.tuxbox-neutrino.org/wiki/Lua:Neutrino-API:empty:de
 -https://wiki.tuxbox-neutrino.org/wiki/Lua:Neutrino-API:empty:en


Origin commit data
------------------
Branch: ni/coolstream
Commit: 47f1fcbc92
Author: Thilo Graf <dbt@novatux.de>
Date: 2024-06-10 (Mon, 10 Jun 2024)



------------------
This commit was generated by Migit
2024-06-10 22:46:51 +02:00
TangoCash
7cc5c77eb1 add cmdline option to load xmltv epg
Origin commit data
------------------
Branch: ni/coolstream
Commit: 14e532ad76
Author: TangoCash <eric@loxat.de>
Date: 2024-06-05 (Wed, 05 Jun 2024)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2024-06-07 22:15:01 +02:00
TangoCash
70fcf212ff fix reload webchannels
Origin commit data
------------------
Branch: ni/coolstream
Commit: 2d5f0643bc
Author: TangoCash <eric@loxat.de>
Date: 2024-06-02 (Sun, 02 Jun 2024)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2024-06-02 21:53:58 +02:00
max_10
38306a6f00 terrestrial.xml: update
Origin commit data
------------------
Branch: ni/coolstream
Commit: a87fb11c82
Author: max_10 <max_10@gmx.de>
Date: 2024-05-21 (Tue, 21 May 2024)

Origin message was:
------------------
- terrestrial.xml: update

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2024-05-21 23:39:33 +02:00
max_10
a50c5d25a6 configure.ac: formatting code
Origin commit data
------------------
Branch: ni/coolstream
Commit: 1b79a3cd17
Author: max_10 <max_10@gmx.de>
Date: 2024-05-21 (Tue, 21 May 2024)

Origin message was:
------------------
- configure.ac: formatting code

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2024-05-21 23:39:33 +02:00
vanhofen
6839e43fb8 locale: change shoutcast locales
Origin commit data
------------------
Branch: ni/coolstream
Commit: d62b6bce66
Author: vanhofen <vanhofen@gmx.de>
Date: 2024-05-13 (Mon, 13 May 2024)

Origin message was:
------------------
- locale: change shoutcast locales

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2024-05-13 22:02:13 +02:00
vanhofen
aa9a6114ef configure.ac: minor cosmetics
Origin commit data
------------------
Branch: ni/coolstream
Commit: 62cac67fde
Author: vanhofen <vanhofen@gmx.de>
Date: 2024-05-13 (Mon, 13 May 2024)

Origin message was:
------------------
- configure.ac: minor cosmetics

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2024-05-13 22:02:13 +02:00
vanhofen
b5e26230b3 configure.ac: re-enable api key gui management by default
Origin commit data
------------------
Branch: ni/coolstream
Commit: 8fae540184
Author: vanhofen <vanhofen@gmx.de>
Date: 2024-05-13 (Mon, 13 May 2024)

Origin message was:
------------------
- configure.ac: re-enable api key gui management by default

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2024-05-13 22:02:13 +02:00
vanhofen
c629f8c344 configure.ac: remove fallback code
Origin commit data
------------------
Branch: ni/coolstream
Commit: e9333e1666
Author: vanhofen <vanhofen@gmx.de>
Date: 2024-05-13 (Mon, 13 May 2024)

Origin message was:
------------------
- configure.ac: remove fallback code

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2024-05-13 22:02:13 +02:00
vanhofen
2dd960f894 configure.ac: in shoutcast speach it's not an api key but a developer id
See 10th section in https://www.shoutcast.com/legal/agreements/api#4-license-restrictions


Origin commit data
------------------
Branch: ni/coolstream
Commit: bc49bc4d23
Author: vanhofen <vanhofen@gmx.de>
Date: 2024-05-13 (Mon, 13 May 2024)

Origin message was:
------------------
- configure.ac: in shoutcast speach it's not an api key but a developer id

See 10th section in https://www.shoutcast.com/legal/agreements/api#4-license-restrictions


------------------
This commit was generated by Migit
2024-05-13 22:02:13 +02:00
Thilo Graf
aafe499a69 configure.ac: More API key management security and improve backward compatibility
- GUI management of API keys is now disabled by default for OpenWeather,
 TMDb, OMDb, Shoutcast, and YouTube to enhance security.
 In particular, the risk of accidental activation of GUI-based management
 of API keys should be reduced.
- Introduced warning log messages to inform users about the risks of
 enabling GUI management, which could potentially expose sensitive API
 keys.
- Updated help strings to emphasize safe use of API keys.
- Added notices for users about the possible use of outdated API key
 options.
- Implemented missing backward compatibility for some API option names
 that have changed. This is necessary because build environments
 generated with 'buildenv' do not necessarily adjust automatically to
 the new options. This should prevent the risk of build failures and
 ensure that older configurations remain compatible.

These changes aim to secure configurations better and mitigate the risk
of unintentional exposure of API keys to end users and should avoid build errors.


Origin commit data
------------------
Branch: ni/coolstream
Commit: f46c4177d2
Author: Thilo Graf <dbt@novatux.de>
Date: 2024-05-13 (Mon, 13 May 2024)

Origin message was:
------------------
configure.ac: More API key management security and improve backward compatibility

- GUI management of API keys is now disabled by default for OpenWeather,
 TMDb, OMDb, Shoutcast, and YouTube to enhance security.
 In particular, the risk of accidental activation of GUI-based management
 of API keys should be reduced.
- Introduced warning log messages to inform users about the risks of
 enabling GUI management, which could potentially expose sensitive API
 keys.
- Updated help strings to emphasize safe use of API keys.
- Added notices for users about the possible use of outdated API key
 options.
- Implemented missing backward compatibility for some API option names
 that have changed. This is necessary because build environments
 generated with 'buildenv' do not necessarily adjust automatically to
 the new options. This should prevent the risk of build failures and
 ensure that older configurations remain compatible.

These changes aim to secure configurations better and mitigate the risk
of unintentional exposure of API keys to end users and should avoid build errors.


------------------
This commit was generated by Migit
2024-05-13 22:02:13 +02:00
Thilo Graf
5a516e7778 .gitignore: Add .vscode directory to prevent tracking of IDE settings
Origin commit data
------------------
Branch: ni/coolstream
Commit: 41b06505d5
Author: Thilo Graf <dbt@novatux.de>
Date: 2024-05-13 (Mon, 13 May 2024)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2024-05-13 22:02:13 +02:00
Thilo Graf
3d2bfb975e opkg_manager: Refactor version info saving logic in COPKGManager
Update logic in COPKGManager::pullPkgData() to handle various
package names including "neutrino-mp", "neutrino", or falling
back to the generic "PACKAGE" if specific names are not found.


Origin commit data
------------------
Branch: ni/coolstream
Commit: a48d607dab
Author: Thilo Graf <dbt@novatux.de>
Date: 2024-05-13 (Mon, 13 May 2024)



------------------
This commit was generated by Migit
2024-05-13 22:02:13 +02:00
vanhofen
5ede88f472 configure.ac: shorten/unify AS_HELP_STRINGs
Origin commit data
------------------
Branch: ni/coolstream
Commit: 340490fd76
Author: vanhofen <vanhofen@gmx.de>
Date: 2024-05-04 (Sat, 04 May 2024)

Origin message was:
------------------
- configure.ac: shorten/unify AS_HELP_STRINGs

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2024-05-04 23:25:35 +02:00
vanhofen
5742aaedba rename SHOUTCAST_DEV_KEY => SHOUTCAST_DEV_ID
Origin commit data
------------------
Branch: ni/coolstream
Commit: 6559455ce8
Author: vanhofen <vanhofen@gmx.de>
Date: 2024-05-04 (Sat, 04 May 2024)

Origin message was:
------------------
- rename SHOUTCAST_DEV_KEY => SHOUTCAST_DEV_ID

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2024-05-04 23:25:35 +02:00
vanhofen
fc93b17640 rename YOUTUBE_DEV_KEY => YOUTUBE_API_KEY
Origin commit data
------------------
Branch: ni/coolstream
Commit: 4d01fa773a
Author: vanhofen <vanhofen@gmx.de>
Date: 2024-05-04 (Sat, 04 May 2024)

Origin message was:
------------------
- rename YOUTUBE_DEV_KEY => YOUTUBE_API_KEY

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2024-05-04 23:25:35 +02:00
vanhofen
ddc4cfe645 rename TMDB_DEV_KEY => TMDB_API_KEY
Origin commit data
------------------
Branch: ni/coolstream
Commit: dbb48ff878
Author: vanhofen <vanhofen@gmx.de>
Date: 2024-05-04 (Sat, 04 May 2024)

Origin message was:
------------------
- rename TMDB_DEV_KEY => TMDB_API_KEY

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2024-05-04 23:25:35 +02:00
vanhofen
453c54ab16 rename WEATHER_DEV_KEY => WEATHER_API_KEY
Origin commit data
------------------
Branch: ni/coolstream
Commit: 7925297e03
Author: vanhofen <vanhofen@gmx.de>
Date: 2024-05-04 (Sat, 04 May 2024)

Origin message was:
------------------
- rename WEATHER_DEV_KEY => WEATHER_API_KEY

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2024-05-04 23:25:35 +02:00
vanhofen
14e345f53b weather: formatting code using astyle
Origin commit data
------------------
Branch: ni/coolstream
Commit: f63728bbb5
Author: vanhofen <vanhofen@gmx.de>
Date: 2024-05-03 (Fri, 03 May 2024)

Origin message was:
------------------
- weather: formatting code using astyle

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2024-05-03 23:12:40 +02:00
vanhofen
fd8202c674 weather-setup: disable api version chooser until api version 3.0 won't work
Origin commit data
------------------
Branch: ni/coolstream
Commit: fedb8d3b68
Author: vanhofen <vanhofen@gmx.de>
Date: 2024-05-03 (Fri, 03 May 2024)

Origin message was:
------------------
- weather-setup: disable api version chooser until api version 3.0 won't work

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2024-05-03 22:24:51 +02:00
vanhofen
d8985c2ed5 locale: add LOCALE_MENU_HINT_WEATHER_API_VERSION
Origin commit data
------------------
Branch: ni/coolstream
Commit: 4bb0243934
Author: vanhofen <vanhofen@gmx.de>
Date: 2024-05-03 (Fri, 03 May 2024)

Origin message was:
------------------
- locale: add LOCALE_MENU_HINT_WEATHER_API_VERSION

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2024-05-03 22:24:51 +02:00
vanhofen
3dd75cd07b rename weather-dev-ver => weather-api-version
Origin commit data
------------------
Branch: ni/coolstream
Commit: d083c61dbb
Author: vanhofen <vanhofen@gmx.de>
Date: 2024-05-03 (Fri, 03 May 2024)

Origin message was:
------------------
- rename weather-dev-ver => weather-api-version

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2024-05-03 22:24:51 +02:00
TangoCash
10a9a1a206 add option to change openweather api to 3.0, since 2.5 will be deactivated in June 2024
Origin commit data
------------------
Branch: ni/coolstream
Commit: 58cf5bf2f1
Author: TangoCash <eric@loxat.de>
Date: 2024-05-03 (Fri, 03 May 2024)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2024-05-03 22:24:51 +02:00
BPanther
0b8d7db3e8 fix rc (thx mohousch)
Origin commit data
------------------
Branch: ni/coolstream
Commit: 90a05b4b62
Author: BPanther <bpanther_ts@hotmail.com>
Date: 2024-05-03 (Fri, 03 May 2024)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2024-05-03 21:09:51 +02:00
BPanther
ba7f67e35a yWeb: /control/getchannelinfo changed.
Line 1: servicename
Line 2: epg now
Line 3: epg now duration X/Y
Line 4: epg next


Origin commit data
------------------
Branch: ni/coolstream
Commit: 9a26bc91aa
Author: BPanther <bpanther_ts@hotmail.com>
Date: 2024-05-03 (Fri, 03 May 2024)



------------------
This commit was generated by Migit
2024-05-03 21:09:51 +02:00
BPanther
4a6676262a yWeb: /control/getchannelinfo for short channel info added.
Line 1: servicename
Line 2: epg info
Line 3: duration X/Y


Origin commit data
------------------
Branch: ni/coolstream
Commit: b24077eeb9
Author: BPanther <bpanther_ts@hotmail.com>
Date: 2024-05-03 (Fri, 03 May 2024)



------------------
This commit was generated by Migit
2024-05-03 21:09:51 +02:00
GetAway
21465ade0c getservices.cpp: fix e2tv streaming on cable boxes
Origin commit data
------------------
Branch: ni/coolstream
Commit: bbed77d8d1
Author: GetAway <get-away@t-online.de>
Date: 2024-05-03 (Fri, 03 May 2024)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2024-05-03 21:09:51 +02:00
vanhofen
371f806fdc record-info: fix display of timeshift icon
Origin commit data
------------------
Branch: ni/coolstream
Commit: 04320a31fb
Author: vanhofen <vanhofen@gmx.de>
Date: 2024-04-23 (Tue, 23 Apr 2024)

Origin message was:
------------------
- record-info: fix display of timeshift icon

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2024-04-23 20:21:17 +02:00
vanhofen
e2576d8787 bouqueteditor: use NEUTRINO_ICON_BUTTON_CHECKED
Origin commit data
------------------
Branch: ni/coolstream
Commit: 7b7a794777
Author: vanhofen <vanhofen@gmx.de>
Date: 2024-04-23 (Tue, 23 Apr 2024)

Origin message was:
------------------
- bouqueteditor: use NEUTRINO_ICON_BUTTON_CHECKED

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2024-04-23 20:21:17 +02:00
vanhofen
edfd85e715 icons: introduce NEUTRINO_ICON_BUTTON_CHECKED
Origin commit data
------------------
Branch: ni/coolstream
Commit: 769990243b
Author: vanhofen <vanhofen@gmx.de>
Date: 2024-04-23 (Tue, 23 Apr 2024)

Origin message was:
------------------
- icons: introduce NEUTRINO_ICON_BUTTON_CHECKED

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2024-04-23 20:21:17 +02:00
vanhofen
5f7e98c4a4 turn some comparsions for a better readability; pt. 3
Origin commit data
------------------
Branch: ni/coolstream
Commit: 99bbb95519
Author: vanhofen <vanhofen@gmx.de>
Date: 2024-03-27 (Wed, 27 Mar 2024)

Origin message was:
------------------
- turn some comparsions for a better readability; pt. 3

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2024-03-27 00:10:12 +01:00
vanhofen
57ae2e0df5 turn some comparsions for a better readability; pt. 2
Origin commit data
------------------
Branch: ni/coolstream
Commit: 5284271ddb
Author: vanhofen <vanhofen@gmx.de>
Date: 2024-03-26 (Tue, 26 Mar 2024)

Origin message was:
------------------
- turn some comparsions for a better readability; pt. 2

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2024-03-26 23:34:30 +01:00
vanhofen
3d4a3889aa turn some comparsions for a better readability
Origin commit data
------------------
Branch: ni/coolstream
Commit: bee4cb4959
Author: vanhofen <vanhofen@gmx.de>
Date: 2024-03-25 (Mon, 25 Mar 2024)

Origin message was:
------------------
- turn some comparsions for a better readability

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2024-03-25 20:29:55 +01:00