• 1
  • 64
  • 65
  • 66(current)
  • 67
  • 68
  • 70
v19 LibreELEC Testbuilds for x86_64 (Kodi 19.0)
(2020-05-25, 15:03)kekomat Wrote: @Milhouse 

The database changes in #0511 seem to have both messed up the actor searching and caused the double listing of tv show actors after the refresh of episode details which I reported here:

https://forum.kodi.tv/showthread.php?tid...pid2951684

Maybe this PR is to blameHuh
Quote:[videodb] allow the same actor to appear multiple times in the same media with different roles (PR:17094, 1 commit, 1 file changed)

Anyone? What's the point of not replying to this report but to all the others that followed? I don't get it ... :/
Reply
(2020-06-19, 14:19)kekomat Wrote:
(2020-05-25, 15:03)kekomat Wrote: @Milhouse 

The database changes in #0511 seem to have both messed up the actor searching and caused the double listing of tv show actors after the refresh of episode details which I reported here:

https://forum.kodi.tv/showthread.php?tid...pid2951684

Maybe this PR is to blameHuh
Quote:[videodb] allow the same actor to appear multiple times in the same media with different roles (PR:17094, 1 commit, 1 file changed)

Anyone? What's the point of not replying to this report but to all the others that followed? I don't get it ... :/

I dunno, maybe because I missed it?

I can't find any debug log that might be useful. Or any explanation of how to reproduce the problem - how are you searching, is this using the Global Search script via Search local library, or something else (Kore, or some other addon?)

Feel free to post more details on PR17811 so that you can communicate directly with the developer (assuming that PR is responsible, of course).
Texture Cache Maintenance Utility: Preload your texture cache for optimal UI performance. Remotely manage media libraries. Purge unused artwork to free up space. Find missing media. Configurable QA check to highlight metadata issues. Aid in diagnosis of library and cache related problems.
Reply
hallo @Milhouse

any chance that you raise the version of your TvHeadEnd-addon to 4.3 too, like this:
http://build.mycvh.de/Tvh-LE9.2/

it seems it fixes this bug completely:
https://github.com/xbmc/xbmc/issues/17531

at least under LE 9.2.3  99,99 % of my artefacts and the crashes are completely gone !

I haven't tested to run @CvH's TvHeadEnd-build 4.3 under nightly yet, but I guess it won't run cause the python version in the header of the addon.xml will refuse this.
Reply
(2020-06-17, 17:39)Milhouse Wrote:
(2020-06-16, 12:27)wimb0 Wrote: Since build #0527 my Music library is not working anymore. (Movie library is fine)
Main menu says "Library Empty", opening it makes Kodi crash.
Same when opening files section only > Kodi crash.
I'm using a MariaDB on another server for my libraries.

In build #0519 it's working fine.

text:

2020-06-16 12:17:09.272 T:1765 DEBUG <general>: Initialize, updating databases...
2020-06-16 12:17:09.272 T:1765 INFO <general>: Running database version Addons27
2020-06-16 12:17:09.272 T:1765 INFO <general>: Running database version ViewModes6
2020-06-16 12:17:09.273 T:1765 INFO <general>: Running database version Textures13
2020-06-16 12:17:09.274 T:1765 INFO <general>: WakeOnAccess [192.168.1.4] trigged by accessing : MySQL : MyMusic77
2020-06-16 12:17:09.275 T:1765 INFO <general>: WakeOnAccess success exit, server already running
2020-06-16 12:17:09.276 T:1765 INFO <general>: MYSQL: Connected to version 10.4.13-MariaDB-1:10.4.13+maria~bionic-log
2020-06-16 12:17:09.278 T:1765 INFO <general>: Attempting to update the database MyMusic77 from version 75 to 77
2020-06-16 12:17:09.278 T:1765 DEBUG <general>: Mysql Start transaction
2020-06-16 12:17:09.279 T:1765 ERROR <general>: SQL: Can't determine list of routines to drop.
2020-06-16 12:17:09.279 T:1765 ERROR <general>: Exception updating database MyMusic77 from version 75 to 77
2020-06-16 12:17:09.279 T:1765 ERROR <general>: Error updating database MyMusic77 from version 75 to 77
2020-06-16 12:17:09.280 T:1765 DEBUG <general>: Mysql rollback transaction
2020-06-16 12:17:09.281 T:1765 INFO <general>: Old database found - updating from version 76 to 77
2020-06-16 12:17:09.282 T:1765 ERROR <general>: SQL: Can't create database for copy: 'MyMusic76' (1007)
2020-06-16 12:17:09.282 T:1765 ERROR <general>: Unable to copy old database MyMusic76 to new version MyMusic77
2020-06-16 12:17:09.284 T:1765 INFO <general>: Running database version MyVideos117
2020-06-16 12:17:09.285 T:1765 INFO <general>: Running database version TV36
2020-06-16 12:17:09.285 T:1765 INFO <general>: Running database version Epg13
2020-06-16 12:17:09.285 T:1765 DEBUG <general>: Initialize, updating databases... DONE

It looks like the database migration from MyMusic75 to MyMusic76 is failing for some reason - can you drop MyMusic77 and also MyMusic76 (if they exist), turn on debugging then upload a debug log after attempting another migration from MyMusic75 to MyMusic76?

Are you sure this issue started with #0527? Both #0527 and also #0519 are using MyMusic75, so #0527 should be your last working build (assuming there's nothing wrong with your MyMusic75 database, of course).

Build #0601 introduced MyMusic76 with PR17838, and build #0609 introduced MyMusic77 with PR17990, so probably best to test with #0601 until MyMusic76 has been migrated successfully.

The error you are seeing is in this piece of code: https://github.com/xbmc/xbmc/blob/941afd...t.cpp#L451 added by PR17838, which might suggest a permission problem of some kind in the MariaDB server, or possibly even a compatibility issue as the new code may not be compatible with MariaDB (either all, or only some MariaDB server versions - but that's a total guess).

Can you check if you are able to execute the following query against your MariaDB server while using the kodi sql user:
text:

SELECT routine_name
FROM information_schema.routines
WHERE routine_type = 'FUNCTION' and routine_schema = 'MyMusic76'

With a MySQL server 5.5.x, the above query returns the following:
text:

udfFirstNumberPos
udfNaturalSortFormat
udfSymbolShift

Please post any errors you see when executing the query.

Thanks for the reply and for digging in the logs.
I just verified it is indeed working correctly with #0527.

The user kodi has ALL PRIVILEGES on my sql server."

Checked the routine_name query:
text:

SELECT routine_name
FROM information_schema.routines
WHERE routine_type = 'FUNCTION' and routine_schema = 'MyMusic76'

Gave no results, 0 rows.

I dropped MyMusic76 and MyMusic77, and re-updated to #0601.
Upgrade seems to have worked fine this time.

text:

2020-06-22 11:43:13.395 T:1371     INFO <general>: WakeOnAccess [192.168.1.4] trigged by accessing : MySQL : MyMusic76
2020-06-22 11:43:13.396 T:1371     INFO <general>: WakeOnAccess success exit, server already running
2020-06-22 11:43:13.397 T:1371     INFO <general>: MYSQL: Connected to version 10.4.13-MariaDB-1:10.4.13+maria~bionic-log
2020-06-22 11:43:13.399 T:1371    ERROR <general>: Unable to open database: MyMusic76 [1049](Unknown database 'MyMusic76')
2020-06-22 11:43:13.401 T:1371     INFO <general>: Old database found - updating from version 75 to 76
2020-06-22 11:43:16.268 T:1371     INFO <general>: Attempting to update the database MyMusic76 from version 75 to 76
2020-06-22 11:43:17.357 T:1371     INFO <general>: UpdateTables - updating tables
2020-06-22 11:43:17.358 T:1371     INFO <general>: CreateAnalytics - creating indices
2020-06-22 11:43:24.207 T:1371     INFO <general>: create triggers
2020-06-22 11:43:24.276 T:1371     INFO <general>: Create native MySQL/MariaDB functions
2020-06-22 11:43:24.298 T:1371     INFO <general>: create song view
2020-06-22 11:43:24.302 T:1371     INFO <general>: create album view
2020-06-22 11:43:24.310 T:1371     INFO <general>: create artist view
2020-06-22 11:43:24.319 T:1371     INFO <general>: create albumartist view
2020-06-22 11:43:24.327 T:1371     INFO <general>: create songartist view
2020-06-22 11:43:24.391 T:1371     INFO <general>: Update to version 76 successful

Now when I run the query, it shows the correct result:
text:

SELECT routine_name
FROM information_schema.routines
WHERE routine_type = 'FUNCTION' and routine_schema = 'MyMusic76'

routine_name    
udfFirstNumberPos    
udfNaturalSortFormat    
udfSymbolShift    

Music library in Kodi working again in #0601.

After that I updated to #0617, and the database correctly upgraded itself to 77.
text:

2020-06-22 12:13:46.116 T:1377     INFO <general>: Update to version 77 successful

Now running #0617, and everything is working fine!

I have no idea what the exact cause was, but thanks for pointing me in the right direction.
Reply
One more thing I am noticing while running these builds:
Shutdown or reboot is extremely slow.

It takes about 5 to 10 seconds to shutdown or reboot when I press those buttons in Kodi.
Whatever is playing stops, web/chorus says disconnected, remote does not work, but nothing else is happening for 15 to 20 seconds.

Logfiles show this:
text:

2020-06-22 11:41:23.280 T:1398     INFO <general>: ## LibreELEC Addon ## updates::updateThread ## Stopped
2020-06-22 11:41:23.280 T:1399     INFO <general>: ## LibreELEC Addon ## xdbus Monitor stopped. ##
2020-06-22 11:41:23.282 T:1379     INFO <general>: CPythonInvoker(0, /usr/share/kodi/addons/service.libreelec.settings/service.py): script successfully run
2020-06-22 11:41:23.282 T:1379     INFO <general>: CPythonInvoker(0, /usr/share/kodi/addons/service.libreelec.settings/service.py): waiting on thread 139952977340160
2020-06-22 11:41:23.282 T:1400     INFO <general>: ## LibreELEC Addon ## _service_::run ## MESSAGE:exit
2020-06-22 11:41:28.290 T:1313    ERROR <general>: CPythonInvoker(0, /usr/share/kodi/addons/service.libreelec.settings/service.py): script didn't stop in 5 seconds - let's kill it
Reply
(2020-06-19, 19:59)Milhouse Wrote:
(2020-06-19, 14:19)kekomat Wrote:
(2020-05-25, 15:03)kekomat Wrote: @Milhouse 

The database changes in #0511 seem to have both messed up the actor searching and caused the double listing of tv show actors after the refresh of episode details which I reported here:

https://forum.kodi.tv/showthread.php?tid...pid2951684

Maybe this PR is to blameHuh

Anyone? What's the point of not replying to this report but to all the others that followed? I don't get it ... :/

I dunno, maybe because I missed it?

I can't find any debug log that might be useful. Or any explanation of how to reproduce the problem - how are you searching, is this using the Global Search script via Search local library, or something else (Kore, or some other addon?)

Feel free to post more details on PR17811 so that you can communicate directly with the developer (assuming that PR is responsible, of course).
I started posting about the problem here:

https://forum.kodi.tv/showthread.php?tid...pid2951686

And here I was detailing on how to reproduce the double actor listing problem:

https://forum.kodi.tv/showthread.php?tid...pid2952355

This is the link to my debug log:

http://ix.io/2neO

The problem occurs using the built-in search mechanism when opening episode or movie details and then selecting one of the actors to search the library for more content. I can't be the only one having this kind of freeze during the search and the problem of actors being listet twice ...
Reply
(2020-06-23, 18:30)kekomat Wrote:
(2020-06-19, 19:59)Milhouse Wrote:
(2020-06-19, 14:19)kekomat Wrote: Anyone? What's the point of not replying to this report but to all the others that followed? I don't get it ... :/

I dunno, maybe because I missed it?

I can't find any debug log that might be useful. Or any explanation of how to reproduce the problem - how are you searching, is this using the Global Search script via Search local library, or something else (Kore, or some other addon?)

Feel free to post more details on PR17811 so that you can communicate directly with the developer (assuming that PR is responsible, of course).
I started posting about the problem here:

https://forum.kodi.tv/showthread.php?tid...pid2951686

And here I was detailing on how to reproduce the double actor listing problem:

https://forum.kodi.tv/showthread.php?tid...pid2952355

This is the link to my debug log:

http://ix.io/2neO

The problem occurs using the built-in search mechanism when opening episode or movie details and then selecting one of the actors to search the library for more content. I can't be the only one having this kind of freeze during the search and the problem of actors being listet twice ...
Same problem here...The search for actors is broken..
Reply
(2020-06-21, 23:34)sixpack58 Wrote: any chance that you raise the version of your TvHeadEnd-addon to 4.3 too, like this:

Sorry I don't have any plans to bump tvheadend - I don't have the bandwidth to deal with even more bugs in unstable addons. Sad

Your best bet would be to petition LibreELEC developers on their forum to see if they'd be interested in updating the add-on.
Texture Cache Maintenance Utility: Preload your texture cache for optimal UI performance. Remotely manage media libraries. Purge unused artwork to free up space. Find missing media. Configurable QA check to highlight metadata issues. Aid in diagnosis of library and cache related problems.
Reply
(2020-06-22, 12:47)wimb0 Wrote: One more thing I am noticing while running these builds:
Shutdown or reboot is extremely slow.

It takes about 5 to 10 seconds to shutdown or reboot when I press those buttons in Kodi.
Whatever is playing stops, web/chorus says disconnected, remote does not work, but nothing else is happening for 15 to 20 seconds.

Logfiles show this:
text:

2020-06-22 11:41:23.280 T:1398     INFO <general>: ## LibreELEC Addon ## updates::updateThread ## Stopped
2020-06-22 11:41:23.280 T:1399     INFO <general>: ## LibreELEC Addon ## xdbus Monitor stopped. ##
2020-06-22 11:41:23.282 T:1379     INFO <general>: CPythonInvoker(0, /usr/share/kodi/addons/service.libreelec.settings/service.py): script successfully run
2020-06-22 11:41:23.282 T:1379     INFO <general>: CPythonInvoker(0, /usr/share/kodi/addons/service.libreelec.settings/service.py): waiting on thread 139952977340160
2020-06-22 11:41:23.282 T:1400     INFO <general>: ## LibreELEC Addon ## _service_::run ## MESSAGE:exit
2020-06-22 11:41:28.290 T:1313    ERROR <general>: CPythonInvoker(0, /usr/share/kodi/addons/service.libreelec.settings/service.py): script didn't stop in 5 seconds - let's kill it

Yeah, I think that's an issue with the LibreELEC Settings-addon has with dbus on shutdown. It's proving extremely difficult to diagnose.

I thought some progress had been made a month or 2 ago, but apparently not. Sad
Texture Cache Maintenance Utility: Preload your texture cache for optimal UI performance. Remotely manage media libraries. Purge unused artwork to free up space. Find missing media. Configurable QA check to highlight metadata issues. Aid in diagnosis of library and cache related problems.
Reply
(2020-06-23, 18:30)kekomat Wrote: The problem occurs using the built-in search mechanism when opening episode or movie details and then selecting one of the actors to search the library for more content. I can't be the only one having this kind of freeze during the search and the problem of actors being listet twice ...
Thanks.

I did do some investigation over the weekend and found the issue with "searching by cast member" from within the Information panel, and it's due to a horribly slow SQL query (both with SQLite and MySQL) since MyVideos76.

So I can confirm you're not the only one seeing the freeze - see my post on the github issue: https://github.com/xbmc/xbmc/pull/17094#...-647015144

This issue may also be the cause of your duplicate actors - maybe things are timing out, or the returned results are garbage, or John Favreau really had 2 roles in that episode (as that's the problem the change is designed to fix?) It's a little hard for me to say at this point as the query takes forever to finish with MySQL (30+ minutes).
Texture Cache Maintenance Utility: Preload your texture cache for optimal UI performance. Remotely manage media libraries. Purge unused artwork to free up space. Find missing media. Configurable QA check to highlight metadata issues. Aid in diagnosis of library and cache related problems.
Reply
(2020-06-24, 13:16)oneneo Wrote: Same problem here...The search for actors is broken..

Yep, very much so. Sad
Texture Cache Maintenance Utility: Preload your texture cache for optimal UI performance. Remotely manage media libraries. Purge unused artwork to free up space. Find missing media. Configurable QA check to highlight metadata issues. Aid in diagnosis of library and cache related problems.
Reply
(2020-06-25, 23:56)Milhouse Wrote:
(2020-06-23, 18:30)kekomat Wrote: The problem occurs using the built-in search mechanism when opening episode or movie details and then selecting one of the actors to search the library for more content. I can't be the only one having this kind of freeze during the search and the problem of actors being listet twice ...
Thanks.

I did do some investigation over the weekend and found the issue with "searching by cast member" from within the Information panel, and it's due to a horribly slow SQL query (both with SQLite and MySQL) since MyVideos76.

So I can confirm you're not the only one seeing the freeze - see my post on the github issue: https://github.com/xbmc/xbmc/pull/17094#...-647015144

This issue may also be the cause of your duplicate actors - maybe things are timing out, or the returned results are garbage, or John Favreau really had 2 roles in that episode (as that's the problem the change is designed to fix?) It's a little hard for me to say at this point as the query takes forever to finish with MySQL (30+ minutes).

Thank you so much forr digging into this and getting in touch with the developers. Although I'm kind of interested in the inner workings the coding and GitHub stuff is a whole different affair for me.

And about John Favreau being listed twice: No, he definitley did not have 2 roles. He just served as an example for several double listings I encountered after refreshing a couple of episodes that were missing ratings after the initial scraping.

Let's see. Maybe they get rid of the PR, I did not see the point anyway ...
Reply
(2020-06-25, 23:44)Milhouse Wrote: ...
Sorry I don't have any plans to bump tvheadend - I don't have the bandwidth to deal with even more bugs in unstable addons. Sad

Your best bet would be to petition LibreELEC developers on their forum to see if they'd be interested in updating the add-on.
Thanks, will try my luck.
Reply
New LibreELEC.tv Matrix build #0626: Generic
(Supercedes previous build)

SHA256 Checksum: 08de02a165fd6283afa3756e95c8924d435d45485b38e6dd7432d6d66f3db9a5 (Generic)

text:
# uname -a
Linux NUC 5.7.2 #1 SMP Fri Jun 26 14:00:22 BST 2020 x86_64 GNU/Linux

# lsb_release
LibreELEC (Milhouse): devel-20200626135925-#0626-gcc6e86c [Build #0626]

# Kodi version
Starting Kodi (19.0-ALPHA1 (18.9.701) Git:92756f3). Platform: Linux x86 64-bit

Based on tip of LibreELEC.tv master (cc6e86c, changelog) and tip of XBMC master (92756f3, changelog) with the following modifications: Build Highlights:
  1. Package updates (openssl, gnutls, Python3 etc.)
  2. Updated inputstream.rtmp SSL patch
  3. mesa-20.1.2
  4. kodi: continue building with ffmpeg-4.2.2
  5. kodi: Music library differential sync and better recentlly added handling
Build Details:
  1. LibreELEC.tv:
    • linux (RPi): update to 5.4.42+ (PR:4399, 17 commits, 8 files changed)
    • kodi addons update (PR:4429, 3 commits, 99 files changed)
    • April 2020 Package Updates (PR:4388, 9 commits, 9 files changed)
      • openssl: update to 1.1.1g
      • python: update to 3.7.7
      • gcc: use default C++ mode for host compiler
      • tz: update to 2020a
      • image: zstd: use compression level 19 by default
      • glibc: raise minimum compatible kernel for binaries to 5.4.0
      • zstd: update to 1.4.5
      • dav1d: update to 0.7.0
      • gnutls: update to 3.6.14
    • Make docker not slowing down boot proccess (PR:4393, 1 commit, 1 file changed)
    • alsa-lib: update to 1.2.3.1 (PR:4432, 1 commit, 1 file changed)
    • various iMX6 updates (PR:4433, 8 commits, 7 files changed)
    • RPi4: switch to KMS driver and enable v4l2 HEVC decoding (PR:4288, 10 commits, 13 files changed)
    • apache-ant: update to 1.10.8, switch to binary distribution (PR:4434, 1 commit, 1 file changed)
    • apache-ant: make sure ${TOOLCHAIN}/bin exists (PR:4435, 1 commit, 1 file changed)
    • dav1d: update to 0.7.1 (PR:4440, 1 commit, 1 file changed)
    • gcc: fix host-gcc-final when ccache is used (PR:4439, 1 commit, 1 file changed)
    • dvb tools update (PR:4442, 9 commits, 10 files changed)
    • ffmpeg tools update (PR:4444, 5 commits, 6 files changed)
    • system tools update (PR:4441, 16 commits, 20 files changed)
    • Update SSL 1.1 patches (PR:4437, 1 commit, 1 file changed)
    • NXP: disable driver add-ons (PR:4447, 1 commit, 1 file changed)
    • unrar: Fix compilation (PR:4448, 1 commit, 1 file changed)
    • mrxvt: dropped from system-tools (PR:4449, 1 commit, 4 files changed)
    • mpd: update to 0.21.24 (PR:4450, 3 commits, 4 files changed)
    • fix system-tools build (PR:4451, 2 commits, 2 files changed)
    • disable parallel build of ngrep and unrar (PR:4454, 2 commits, 2 files changed)
  2. XBMC:
    • [GUI] Don't touch plugin:// urls (PR:17867, 1 commit, 1 file changed)
    • fix addon label2 (PR:18074, 1 commit, 1 file changed)
    • Music library differential sync and better recentlly added handling (PR:18026, 2 commits, 22 files changed)
    • [Music]Fix MySQL syntax for trigger tgrInsertGenre (PR:18081, 1 commit, 1 file changed)
    • [Android] Fix drain in flushed state (PR:18077, 1 commit, 1 file changed)
    • [Album Scaper] provide detailed album selection dialog (PR:18051, 1 commit, 2 files changed)
    • fix manual album refresh (PR:18035, 2 commits, 1 file changed)
    • Albumscraper: allow fine-grained relevance values (PR:18041, 1 commit, 1 file changed)
    • Invoke PowerManager OnStart / OnStop (PR:18075, 1 commit, 2 files changed)
    • Fix build with x11/gles (PR:17702, 1 commit, 1 file changed)
    • [tools/depends] pythonmodule-pil update to 7.1.2 (PR:17794, 1 commit, 6 files changed)
    • FFmpeg: Bump to 4.3-Matrix-Alpha1 (PR:18071, 1 commit, 9 files changed)
    • [Android] Move PYTHON into cache folder (PR:18092, 1 commit, 2 files changed)
    • [cmake] allow passing additional flag to internal ffmpeg (PR:18093, 1 commit, 2 files changed)
    • [PVR] APIv7 crash when EPG_TAG structure contains null pointers (PR:18091, 1 commit, 1 file changed)
    • [addons] Fix data encapsulation violation for C++ PVR Addon API classes. (PR:18096, 1 commit, 9 files changed)
    • [Estuary] add missing back buttons for touchscreen users (PR:18061, 1 commit, 4 files changed)
    • Fix spelling errors identified by Lintian (PR:18100, 1 commit, 50 files changed)
    • [PVR] Clean up API v7 warnings generated on Microsoft compilers (PR:18090, 1 commit, 2 files changed)
  3. kernel-firmware:
    • rtl_nic: add firmware for RTL8125B (3890db36)
    • linux-firmware: Update firmware file for Intel Bluetooth AX200 (887d2a10)
    • linux-firmware: Update firmware file for Intel Bluetooth AX201 (39149439)
    • linux-firmware: Update firmware file for Intel Bluetooth 9560 (49669231)
    • linux-firmware: Update firmware file for Intel Bluetooth 9260 (5ee82c0c)
    • Mellanox: Add new mlxsw_spectrum firmware xx.2007.1168 (d9880b1a)
    • rtw88: RTL8822C: update firmware version to v9.9 (c2e313be)
    • Merge branch 'mrvl-prestera' of https://github.com/PLVision/linux-firmware (4d916641)
    • Merge branch 'for-upstream' of git://git.chelsio.net/pub/git/linux-firmware (a54dfbef)
    • cxgb4: Update firmware to revision 1.24.17.0 (51a773df)
    • mrvl: add firmware for Prestera ASIC devices (56110001)
    • Merge tag 'iwlwifi-fw-2020-05-19' of git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/linux-firmware (8ba6fa66)
    • iwlwifi: update and add new FWs from core50-70 and core52-81 releases (5ee1c7d6)
    • rtw88: RTL8821C: add firmware file v24.5 (401bd6de)
    • iwlwifi: update FWs to core47-142 release (2ae99744)
    • iwlwifi: update 8265 FW (50c1340b)
    • rtw88: update firmware information and README (f8d32e4c)
    • linux-firmware: add firmware for MT7915E (412f95a7)
    • QCA: Add Bluetooth firmware for QCA9377 (619d3395)
    • linux-firmware: add rebb firmware for mt7663 (13925915)
    • linux-firmware: Update firmware file for Intel Bluetooth AX200 (b2cad6a2)
    • linux-firmware: Update firmware file for Intel Bluetooth AX201 (c5ac1add)
    • linux-firmware: Update firmware file for Intel Bluetooth 9560 (642d1155)
    • linux-firmware: Update firmware file for Intel Bluetooth 9260 (dc3047c5)
  4. libnfs:
    • Fix seekdir (PR:324, 1 commit, 1 file changed)
  5. inputstream.adaptive:
    • [Android] only request and log (max)securitylevel and querykeystatus... (PR:474, 1 commit, 1 file changed)
    • [TTML] Fix wrong applied m_ptsOffset on first sub (9ff675f)
  6. inputstream.ffmpegdirect:
    • fix debian packaging (PR:50, 1 commit, 3 files changed)
    • changelog and version v1.14.2 (PR:51, 1 commit, 2 files changed)
    • Ffmpeg 4 3 (PR:52, 3 commits, 14 files changed)
    • [ubuntu packaging]: use kodi's own ffmpeg (PR:54, 2 commits, 3 files changed)
    • Use kodi's own FFmpeg for ubuntu packaging release (PR:55, 1 commit, 2 files changed)
  7. pvr.iptvsimple:
    • Inputstream check (PR:397, 2 commits, 3 files changed)
    • Adv option prop (PR:398, 2 commits, 8 files changed)
  8. pvr.nextpvr:
    • 6.0.1 ConnectionStateChange (#133) (3d985ab)
  9. pvr.octonet:
    • [Matrix] change to new C++ PVR interface way (PR:43, 5 commits, 16 files changed)
  10. Additional commits/pull requests/changes not yet merged upstream:
Texture Cache Maintenance Utility: Preload your texture cache for optimal UI performance. Remotely manage media libraries. Purge unused artwork to free up space. Find missing media. Configurable QA check to highlight metadata issues. Aid in diagnosis of library and cache related problems.
Reply
Shut down question:

When shutting down LibreELEC on an Intel HTPC, which command is preferred?

POWERDOWN() or QUIT()

Thanks in advance...
Matrix 19.x (LE), Aeon Nox SiLVO, NUC8i5BEK (i5-8259U, Intel Iris Plus Graphics 655, 16 GB ram, 128 GB M.2 SSD)
Samsung F6300 46" LED LCD TV, SMSL Q5 Pro amplifier, Pioneer HPM-100 speakers
Synology DS215j NAS fileserver (WD Gold 10TB x 2)
Reply
  • 1
  • 64
  • 65
  • 66(current)
  • 67
  • 68
  • 70

Logout Mark Read Team Forum Stats Members Help
LibreELEC Testbuilds for x86_64 (Kodi 19.0)3