refactor asset serving & fix typos

- Added necessary libraries for Linux build in build-linux.yml
- Updated submodule reference for zupdater
- Added new video resource for wireless gallery import
- use UDID instead of UUID across multiple files
- Improved user interface messages and layout in various widgets
- Refactor http server
This commit is contained in:
uncor3
2025-11-13 05:14:37 +00:00
parent 9584538f0e
commit 8b0a673a55
21 changed files with 402 additions and 535 deletions
+3 -1
View File
@@ -38,6 +38,7 @@ WirelessGalleryImportWidget::WirelessGalleryImportWidget(QWidget *parent)
{
setupUI();
setMinimumSize(800, 600);
setWindowTitle("Wireless Gallery Import - iDescriptor");
QTimer::singleShot(100, this,
&WirelessGalleryImportWidget::setupTutorialVideo);
}
@@ -131,7 +132,8 @@ void WirelessGalleryImportWidget::setupTutorialVideo()
QSizePolicy::Expanding);
m_tutorialPlayer->setVideoOutput(m_tutorialVideoWidget);
m_tutorialPlayer->setSource(QUrl("qrc:/resources/airplayer-tutorial.mp4"));
m_tutorialPlayer->setSource(
QUrl("qrc:/resources/wireless-gallery-import.mp4"));
m_tutorialVideoWidget->setAspectRatioMode(
Qt::AspectRatioMode::KeepAspectRatioByExpanding);