Commit Graph

1493 Commits

Author SHA1 Message Date
Thilo Graf
d533372aa8 CLastChannel: fix narrowing conversion warnings in lastchannel.cpp
- 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.
2024-07-05 17:26:08 +02:00
Thilo Graf
c1fa8595de system/ping.cpp: Conditionally use register keyword for backward compatibility;
remove for C++17 and later where it is not allowed
2024-07-05 17:26:08 +02:00
vanhofen
e58aea8b6d rename YOUTUBE_DEV_KEY => YOUTUBE_API_KEY
Origin commit data
------------------
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
# Conflicts:
#	data/locale/slovak.locale
2024-05-09 21:34:03 +02:00
vanhofen
c3db7b4847 locale: add LOCALE_MENU_HINT_WEATHER_API_VERSION
Origin commit data
------------------
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-04 09:23:03 +02:00
vanhofen
aa95a4338d rename weather-dev-ver => weather-api-version
Origin commit data
------------------
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-04 09:23:00 +02:00
TangoCash
27fadb7864 add option to change openweather api to 3.0, since 2.5 will be deactivated in June 2024
Origin commit data
------------------
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-04 09:21:55 +02:00
vanhofen
14240c3c4a turn some comparsions for a better readability
Origin commit data
------------------
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-27 07:12:41 +01:00
vanhofen
01b1610aa9 helpers: add ø to GetSpecialName()
Origin commit data
------------------
Commit: 4d89394141
Author: vanhofen <vanhofen@gmx.de>
Date: 2024-02-18 (Sun, 18 Feb 2024)

Origin message was:
------------------
- helpers: add ø to GetSpecialName()

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

------------------
This commit was generated by Migit
2024-02-26 12:56:26 +01:00
vanhofen
2e55a370a1 debug: formatting code using astyle; remove unused code
Origin commit data
------------------
Commit: 5c6909edf9
Author: vanhofen <vanhofen@gmx.de>
Date: 2024-01-05 (Fri, 05 Jan 2024)

Origin message was:
------------------
- debug: formatting code using astyle; remove unused code

------------------
No further description and justification available within origin commit message!
2024-01-07 14:29:05 +01:00
GetAway
3e6d45b65a Fix set lastmode; introduce sending an actionKey for LCD4linux
We have a problem since the introduction of moviebrowser_mode.
Lastmode is no longer reset correctly, because the new mode is overlaid by another mode
and thus the original mode cannot be restored. Neutrino becomes unusable and has to be
restarted. (Example below)
Generally the opening of a window, like the MB or Channellist is also no Neutrino_mode in
the sense as it was invented once. It is just a window and not a mode that Neutrino is in.
Example: Neutrino is in TV_MODUS and you open the MB. You can see, Neutrino is still in TV_MODUS.
I reverted the code and now an open window can say for example to the lcd4linux 'hello i'm open, here is mb'.
When running a window we send some kind of AktionKey. After the actions in the window, the AktionKey is cleared.
Now to the current bug:

1. boot on a TV channel.
2. switch to a WebTV channel. (in my case PlutoTV Star Trek)
3. play a TS over the Moviebrowser and stop it. (MODE_WEBTV is detected and the WebTV stream is restarted)
4. call the MB a second time and start and stop the TS.
5. the WebTV stream does not restart anymore.
6. exit the MB now.
7. neutrino becomes not operable.
2023-09-14 18:53:26 +02:00
BPanther
d13780e893 glcd: new option for scroll text on/off added
Origin commit data
------------------
Commit: a1aa348882
Author: BPanther <bpanther_ts@hotmail.com>
Date: 2023-08-13 (Sun, 13 Aug 2023)

Origin message was:
------------------
nglcd: new option for scroll text on/off added

Signed-off-by: Thilo Graf <dbt@novatux.de>
2023-08-15 21:18:37 +02:00
BPanther
0822265af9 new option added for eof retries on lost server connections
Conflicts:
	src/gui/mediaplayer_setup.cpp
2023-07-26 21:54:21 +02:00
BPanther
aa13ff5fba system/lastchannel.cpp: increase channel history from 10 to 21
Signed-off-by: Thilo Graf <dbt@novatux.de>

No reason given, but shouldn't break anything.
2023-06-11 21:29:25 +02:00
Thilo Graf
b06321104d setting_helpers: suplement to "setting_helpers: reduce dub code parts"
Init of zone was incomplete
2023-05-09 18:26:42 +02:00
Thilo Graf
6ef0bd0f90 system/debug.h: try for more thread save implementation
Replacing printf() with fprintf() in this code section aims to
prevent unpredictable behavior in multi-threaded environments that
could be caused by printf()'s non-atomic nature. The change is
intended to enhance output consistency and prevent potential race conditions.
Additionally, it is important to note that many other plain calls to printf()
in the Neutrino code could also cause issues and require further investigation.
Whether this change will have a positive impact remains to be seen.
2023-05-09 16:47:23 +02:00
vanhofen
452f35adef - acinclude/configure: rework HAVE_LIBSTB_HAL handling; drop USE_STB_HAL
Conflicts:
	src/gui/imageinfo_ni.cpp
2023-04-25 15:53:22 +02:00
Thilo Graf
6aded31eb3 setting_helpers: reduce dub code parts
Note: This line: 'TARGET_PREFIX "/share/zoneinfo/" + zone' will be
found in other source files too. It could make
sense to unify it globally to avoid duplicating code.
2023-04-25 15:52:50 +02:00
vanhofen
b4bf491a46 - locales: unify inetradio locales
Conflicts:
	data/locale/deutsch.locale
	data/locale/english.locale
	src/system/locals.h
	src/system/locals_intern.h

Signed-off-by: Thilo Graf <dbt@novatux.de>
2023-04-13 18:58:44 +02:00
vanhofen
0cd00137c5 - locales: clarify omdb locales
Signed-off-by: Thilo Graf <dbt@novatux.de>

 Conflicts:
	data/locale/deutsch.locale
	data/locale/english.locale
	src/system/locals.h
	src/system/locals_intern.h

Detected: LOCALE_INETRADIO_AUTOSTART,
 	  LOCALE_INETRADIO_NAME,

These entries were messed because of different use of dots and
underlines in locales.
2023-04-11 17:43:54 +02:00
Thilo Graf
8211526e8e opkg_manager: Major overhaul of the package manager
- Contains more user interactions
- No disabled menu items, this allows getting package information
  for all items.
- Menu list is now divided into sections for updates, plugins and
  system packs, each sorted by installed or not installed.
- Install/reinstall and uninstall takes place via user dialogue
- Expert mode has been revised. Problematic packages may not be touched
  here either.
- Simplified progress display
- and some minor changes
2023-03-07 10:34:02 +01:00
Thilo Graf
60a0049f47 opkg_manager: add localized separators to describe contents of package list 2023-03-07 10:34:01 +01:00
Thilo Graf
283a0e539a system/helpers: Add new Parameter 'start_pos' to str_replace()
This allows flexibility to specify a starting position from where to search
for the first occurrence of the search string. By default,
the position is set to 0 and the function will behave as before.
However, when a position is provided,
the function will replace only the first occurrence of
the search string after that position.
2023-02-26 01:58:22 +01:00
GetAway
2a219b342e fix for newer libcurl 2023-01-12 21:08:40 +01:00
vanhofen
d9f7525b95 Revert "introduce hdmi_cec to driver"
This reverts commit c8a58afe2feb95954a69e681a4234cd9c1a3f178 and the following hdmi_cec commits.

 Conflicts:
	src/neutrino.cpp
2023-01-05 16:05:36 +01:00
TangoCash
47727e504a introduce hdmi_cec to driver
Conflicts:
	data/locale/deutsch.locale
	src/driver/Makefile.am
	src/neutrino.cpp
	src/system/locals.h
	src/system/locals_intern.h
2023-01-05 16:05:36 +01:00
vanhofen
3a7888c792 Revert "- videosettings: reduce videomenu.zappingmode to mute and hold"
This reverts commit a66671e642.

Signed-off-by: Thilo Graf <dbt@novatux.de>

Sometimes it would be nice to know why any commits
will be reverted, but who cares ...
2023-01-05 16:05:36 +01:00
vanhofen
516d1e1d98 - vfd-setup: add hint, hinticon and key to graphlcd item 2023-01-05 16:05:36 +01:00
vanhofen
b7be8ebaaf - locale: resort locale with reworked helpers
Conflicts:
	data/locale/deutsch.locale
	data/locale/english.locale
	src/system/locals.h
	src/system/locals_intern.h
2023-01-05 16:05:35 +01:00
vanhofen
24299980fc - glcd/weather: split temperature and weather icon 2023-01-05 16:05:35 +01:00
vanhofen
2a968e11cd - glcd: unify/resort locales
Conflicts:
	data/locale/slovak.locale
2023-01-05 16:05:35 +01:00
vanhofen
f8b3cbf476 - remove youtube player
Conflicts:
	acinclude.m4
	data/icons/headers/ytplay.png
	data/icons/hints/hint_ytplay.png
	data/locale/slovak.locale
	src/gui/moviebrowser/mb.cpp
	src/gui/user_menue_setup.cpp
	src/neutrino.cpp
	src/system/settings.h
2023-01-05 16:05:35 +01:00
TangoCash
6099c396c7 fix glcd brightness defaults 2023-01-05 16:05:35 +01:00
TangoCash
f1688525d3 rework streaming part2
Signed-off-by: Thilo Graf <dbt@novatux.de>

Some build errors fixed with this pick.
2023-01-05 16:05:19 +01:00
vanhofen
02d77e3b1a - proc_tools: introduce proc_put_hex() 2023-01-05 16:05:18 +01:00
vanhofen
d0511c6be0 - moviebrowser: allow configurable keys to toggle view 2023-01-05 16:05:18 +01:00
vanhofen
4ca19059a0 - rename PIP_ROFF => PIP_NO_POS; add default statement 2023-01-05 16:05:18 +01:00
TangoCash
1249a61edf add option to rotate PiP clockwise/counterclockwise 2023-01-05 16:05:18 +01:00
TangoCash
d2febb0fb7 - glcd: rework
contains:
84e96916bf
0391fe435e
9fdbdc8717
3d1f5b6a8a
2023-01-05 16:05:18 +01:00
vanhofen
83f6267e0a - add protek4k
Signed-off-by: Thilo Graf <dbt@novatux.de>

# Conflicts:
#	src/driver/simple_display.cpp
2023-01-05 16:05:18 +01:00
Hendi
d0d0c0004a tzif-display.cpp: Fix compiling for nevis 2022-12-21 19:11:51 +01:00
svenhoefer
c8a1e6d7b6 - some fixes for e4hdu
Signed-off-by: Thilo Graf <dbt@novatux.de>
2022-11-07 21:22:46 +01:00
TangoCash
83d9596a63 fix glcd icons, add to menu
Signed-off-by: Thilo Graf <dbt@novatux.de>
2022-11-07 21:22:46 +01:00
Thilo Graf
baadcb3406 src/system/tzif-display.cpp: fix wrong var type in debug output 2022-11-07 21:21:38 +01:00
svenhoefer
794cd0d850 - keybind-setup: add key_sleep
Signed-off-by: Thilo Graf <dbt@novatux.de>
2022-11-07 21:21:38 +01:00
GetAway
4a372252bb setting_helpers.cpp: fix set timezone if build with uclibc 2022-11-06 14:27:23 +01:00
GetAway
94ee52dbcb - flashtool.cpp: align more to Ni 2022-10-06 21:55:33 +02:00
Thilo Graf
9edb2877db fsmounter.cpp: remove udp option 2022-09-19 11:06:56 +02:00
svenhoefer
45d0a0558c - add multibox
Signed-off-by: Thilo Graf <dbt@novatux.de>

# Conflicts:
#	src/neutrino.cpp
2022-09-16 22:47:14 +02:00
svenhoefer
a82536d38a - neutrino: add mode_moviebrowser
Signed-off-by: Thilo Graf <dbt@novatux.de>
2022-09-13 20:34:33 +02:00
svenhoefer
2594c7967b - scan-setup: add addScanMenuFrontendOptions() only once
Conflicts:
	src/gui/scan_setup.cpp

Signed-off-by: Thilo Graf <dbt@novatux.de>
Fixed build, because of missing locales and members.
2022-09-12 20:12:15 +02:00