Compare commits
6 Commits
367447284b
...
a53b941bed
Author | SHA1 | Date | |
---|---|---|---|
a53b941bed | |||
92c6528f48 | |||
cea2db4378 | |||
08440da4d7 | |||
b23ea427eb | |||
20185ab419 |
16
debian/changelog
vendored
16
debian/changelog
vendored
@ -1,3 +1,13 @@
|
|||||||
|
lubuntu-default-settings (24.10.1) oracular; urgency=medium
|
||||||
|
|
||||||
|
* Switch back to qpdfview from okular.
|
||||||
|
* Port snap-installation-monitor to Qt 6.
|
||||||
|
* Switch to the Qt 6 LibreOffice frontend.
|
||||||
|
* Bump Standards-version to 4.7.0, no changes needed.
|
||||||
|
* Various Lintian complaints.
|
||||||
|
|
||||||
|
-- Simon Quigley <tsimonq2@ubuntu.com> Wed, 03 Jul 2024 10:16:33 -0500
|
||||||
|
|
||||||
lubuntu-default-settings (24.04.11) noble; urgency=medium
|
lubuntu-default-settings (24.04.11) noble; urgency=medium
|
||||||
|
|
||||||
* Do not show an actual popup, just the notification for the snap monitor.
|
* Do not show an actual popup, just the notification for the snap monitor.
|
||||||
@ -6,7 +16,7 @@ lubuntu-default-settings (24.04.11) noble; urgency=medium
|
|||||||
|
|
||||||
lubuntu-default-settings (24.04.10) noble; urgency=medium
|
lubuntu-default-settings (24.04.10) noble; urgency=medium
|
||||||
|
|
||||||
* Do not show hibernate option in the menu. (LP: #1902497)
|
* Do not show hibernate option in the menu. (LP: #1902497)
|
||||||
|
|
||||||
-- Walter Lapchynski <wxl@ubuntu.com> Tue, 16 Apr 2024 23:28:56 +0000
|
-- Walter Lapchynski <wxl@ubuntu.com> Tue, 16 Apr 2024 23:28:56 +0000
|
||||||
|
|
||||||
@ -39,13 +49,13 @@ lubuntu-default-settings (24.04.6) noble; urgency=medium
|
|||||||
|
|
||||||
lubuntu-default-settings (24.04.5) noble; urgency=medium
|
lubuntu-default-settings (24.04.5) noble; urgency=medium
|
||||||
|
|
||||||
* Setting Okular as default application for PDF files.
|
* Setting Okular as default application for PDF files.
|
||||||
|
|
||||||
-- Walter Lapchynski <wxl@ubuntu.com> Fri, 08 Mar 2024 22:55:46 +0000
|
-- Walter Lapchynski <wxl@ubuntu.com> Fri, 08 Mar 2024 22:55:46 +0000
|
||||||
|
|
||||||
lubuntu-default-settings (24.04.4) noble; urgency=medium
|
lubuntu-default-settings (24.04.4) noble; urgency=medium
|
||||||
|
|
||||||
* Updating quick launch for Firefox snap path.
|
* Updating quick launch for Firefox snap path.
|
||||||
|
|
||||||
-- Walter Lapchynski <wxl@ubuntu.com> Thu, 07 Mar 2024 21:50:30 +0000
|
-- Walter Lapchynski <wxl@ubuntu.com> Thu, 07 Mar 2024 21:50:30 +0000
|
||||||
|
|
||||||
|
7
debian/control
vendored
7
debian/control
vendored
@ -3,8 +3,8 @@ Section: x11
|
|||||||
Priority: optional
|
Priority: optional
|
||||||
Maintainer: Lubuntu Developers <lubuntu-devel@lists.ubuntu.com>
|
Maintainer: Lubuntu Developers <lubuntu-devel@lists.ubuntu.com>
|
||||||
Uploaders: Simon Quigley <tsimonq2@ubuntu.com>
|
Uploaders: Simon Quigley <tsimonq2@ubuntu.com>
|
||||||
Build-Depends: cmake, debhelper-compat (= 13), intltool, qtbase5-dev
|
Build-Depends: cmake, debhelper-compat (= 13), intltool, qt6-base-dev
|
||||||
Standards-Version: 4.6.2
|
Standards-Version: 4.7.0
|
||||||
Homepage: https://lubuntu.me
|
Homepage: https://lubuntu.me
|
||||||
Vcs-Browser: https://git.launchpad.net/lubuntu-default-settings?h=master
|
Vcs-Browser: https://git.launchpad.net/lubuntu-default-settings?h=master
|
||||||
Vcs-Git: https://git.launchpad.net/lubuntu-default-settings
|
Vcs-Git: https://git.launchpad.net/lubuntu-default-settings
|
||||||
@ -21,7 +21,8 @@ Depends: fonts-ubuntu,
|
|||||||
${misc:Depends}
|
${misc:Depends}
|
||||||
Recommends: breeze-gtk-theme
|
Recommends: breeze-gtk-theme
|
||||||
Description: default settings for Lubuntu
|
Description: default settings for Lubuntu
|
||||||
Various system settings tailored for Lubuntu.
|
Various system settings tailored for Lubuntu's default session. This includes
|
||||||
|
default settings, applications, and themes.
|
||||||
|
|
||||||
Package: lubuntu-snap-installation-monitor
|
Package: lubuntu-snap-installation-monitor
|
||||||
Architecture: amd64
|
Architecture: amd64
|
||||||
|
3
debian/lubuntu-default-settings.lintian-overrides
vendored
Normal file
3
debian/lubuntu-default-settings.lintian-overrides
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# These desktop files are not meant to be user-visible; ignore these flags
|
||||||
|
lubuntu-default-settings: desktop-entry-lacks-icon-entry usr/share/xsessions/Lubuntu.desktop
|
||||||
|
lubuntu-default-settings: desktop-entry-lacks-keywords-entry usr/share/xsessions/Lubuntu.desktop
|
@ -3,7 +3,10 @@ project(snap-installation-monitor)
|
|||||||
|
|
||||||
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
||||||
set(CMAKE_AUTOMOC ON)
|
set(CMAKE_AUTOMOC ON)
|
||||||
find_package(Qt5 COMPONENTS Widgets DBus REQUIRED)
|
find_package(Qt6 COMPONENTS Widgets DBus REQUIRED)
|
||||||
|
|
||||||
|
set(CMAKE_CXX_STANDARD 20)
|
||||||
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||||
|
|
||||||
add_executable(snap-installation-monitor main.cpp)
|
add_executable(snap-installation-monitor main.cpp)
|
||||||
target_link_libraries(snap-installation-monitor Qt5::Widgets Qt5::DBus)
|
target_link_libraries(snap-installation-monitor Qt6::Widgets Qt6::DBus)
|
||||||
|
@ -7,8 +7,7 @@ BROWSER=firefox
|
|||||||
GTK_CSD=0
|
GTK_CSD=0
|
||||||
GTK_OVERLAY_SCROLLING=0
|
GTK_OVERLAY_SCROLLING=0
|
||||||
TERM=qterminal
|
TERM=qterminal
|
||||||
SAL_USE_VCLPLUGIN=qt5
|
SAL_USE_VCLPLUGIN=qt6
|
||||||
SAL_VCL_QT5_USE_CAIRO=true
|
|
||||||
|
|
||||||
[Mouse]
|
[Mouse]
|
||||||
cursor_size=18
|
cursor_size=18
|
||||||
|
0
src/usr/share/Lubuntu/applications/lximage-qt-screenshot.desktop
Executable file → Normal file
0
src/usr/share/Lubuntu/applications/lximage-qt-screenshot.desktop
Executable file → Normal file
@ -1,2 +1,2 @@
|
|||||||
[Default Applications]
|
[Default Applications]
|
||||||
application/pdf=okularApplication_pdf.desktop
|
application/pdf=qpdfview.desktop
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
[Added Associations]
|
[Added Associations]
|
||||||
application/pdf=okularApplication_pdf.desktop
|
application/pdf=qpdfview.desktop
|
||||||
|
Loading…
x
Reference in New Issue
Block a user