~mythbuntu-dev/mythtv/+git/mythtv:dependabot/npm_and_yarn/mythtv/html/backend/ip-1.1.9

Last commit made on 2024-02-20
Get this branch:
git clone -b dependabot/npm_and_yarn/mythtv/html/backend/ip-1.1.9 https://git.launchpad.net/~mythbuntu-dev/mythtv/+git/mythtv

Branch merges

Branch information

Name:
dependabot/npm_and_yarn/mythtv/html/backend/ip-1.1.9
Repository:
lp:~mythbuntu-dev/mythtv/+git/mythtv

Recent commits

652bb40... by "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>

Bump ip from 1.1.8 to 1.1.9 in /mythtv/html/backend

Bumps [ip](https://github.com/indutny/node-ip) from 1.1.8 to 1.1.9.
- [Commits](https://github.com/indutny/node-ip/compare/v1.1.8...v1.1.9)

---
updated-dependencies:
- dependency-name: ip
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <email address hidden>

5e2af89... by Nick Morrott

Translations: Fix opening/ending tag mismatch in Italian mythfrontend source file

fe6a812... by DFdario

Translations: Update mythfrontend translation source file (Italian) (#869)

b54a0d8... by Nick Morrott

Translations: Update mythfrontend translation binary files

449c839... by Nick Morrott

Translations: Update mythfrontend translation source file (British English)

97f9e5d... by Piotr Oniszczuk <email address hidden>

Translations: Update mythfrontend translation source file (Polish) (#866)

Closes #866

47b8793... by David Hampton <email address hidden>

Fix configure to work on debian sid with vulkan.

Debian sid no longer provides the -lHLSL and -lOGLCompiler libraries.
MythTV compiles fine on unstable without them. Since it doesn't seem
possible to tell debian trixie and sid apart without resorting to
version code names (neither provides a version number) and that seems
like a rat hole, just try the libglslang test compile with/without
these two libraries. If either succeeds then allow the compilation to
continue.

c445c2d... by David Hampton <email address hidden>

tidy: Convert mythedid loop to a range-for loop.

Tidy didn't notice this loop before because it was based on the
count() function. The new loop is what tidy suggested.

0532d29... by David Hampton <email address hidden>

Prepare for Qt6 version 6.6. (QSqlDatabase)

The QSqlDatabase::exec function was deprecated in Qt 6.6. The
documentation states that QSqlQuery::exec() should be used instead.
Since the replacement function exists in Qt5, go ahead and perform the
conversion.

c17b851... by David Hampton <email address hidden>

Prepare for Qt6 version 6.6. (qAsConst)

The qAsConst() macro was deprecated in Qt 6.6. The documentation
strongly advises against using it in new code, and recommends the use
of std::as_const() instead. Since std::as_const is a C++17 function
and MythTV requires a C++17 compiler, go ahead and perform the
conversion.