Cherry-picking upstream release 0.12.0.
* Bumped Standards to 4.1.1 - no changes needed * Bumped liblxqt dependency to >= 0.12.0
This commit is contained in:
parent
9060714af9
commit
e6fcba4535
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,2 +0,0 @@
|
|||||||
build
|
|
||||||
translations/lxqt-sudo
|
|
2
AUTHORS
2
AUTHORS
@ -2,7 +2,7 @@ Upstream Authors:
|
|||||||
LXQt team: http://lxqt.org
|
LXQt team: http://lxqt.org
|
||||||
|
|
||||||
Copyright:
|
Copyright:
|
||||||
Copyright (c) 2015-2016 LXQt team
|
Copyright (c) 2015-2017 LXQt team
|
||||||
|
|
||||||
License: LGPL-2.1+
|
License: LGPL-2.1+
|
||||||
The full text of the licenses can be found in the 'LICENSE' file.
|
The full text of the licenses can be found in the 'LICENSE' file.
|
||||||
|
12
CHANGELOG
12
CHANGELOG
@ -1,7 +1,17 @@
|
|||||||
|
|
||||||
lxqt-sudo-0.11.1 / 2017-01-01
|
lxqt-sudo-0.12.0 / 2017-10-21
|
||||||
=============================
|
=============================
|
||||||
|
|
||||||
|
* Set informal patch version
|
||||||
|
* Added basic .gitattributes
|
||||||
|
* Drops Qt5Core_VERSION_STRING
|
||||||
|
* set Qt::AA_UseHighDpiPixmaps to true
|
||||||
|
* Bump year
|
||||||
|
|
||||||
|
0.11.1 / 2017-01-01
|
||||||
|
===================
|
||||||
|
|
||||||
|
* Release 0.11.1: Update changelog
|
||||||
* Make CMakeLists.txt more uniform.
|
* Make CMakeLists.txt more uniform.
|
||||||
|
|
||||||
0.11.0 / 2016-09-24
|
0.11.0 / 2016-09-24
|
||||||
|
@ -12,10 +12,13 @@ option(UPDATE_TRANSLATIONS "Update source translation translations/*.ts files" O
|
|||||||
option(PULL_TRANSLATIONS "Pull translations" ON)
|
option(PULL_TRANSLATIONS "Pull translations" ON)
|
||||||
|
|
||||||
find_package(Qt5Widgets REQUIRED)
|
find_package(Qt5Widgets REQUIRED)
|
||||||
message(STATUS "Building with Qt${Qt5Core_VERSION_STRING}")
|
message(STATUS "Building with Qt${Qt5Core_VERSION}")
|
||||||
|
|
||||||
find_package(lxqt REQUIRED)
|
find_package(lxqt REQUIRED)
|
||||||
|
|
||||||
|
# Patch version 0
|
||||||
|
|
||||||
|
|
||||||
include(LXQtCompilerSettings NO_POLICY_SCOPE)
|
include(LXQtCompilerSettings NO_POLICY_SCOPE)
|
||||||
|
|
||||||
set ( LINK_LXSU "lxsu")
|
set ( LINK_LXSU "lxsu")
|
||||||
|
8
debian/changelog
vendored
8
debian/changelog
vendored
@ -1,3 +1,11 @@
|
|||||||
|
lxqt-sudo (0.12.0-1) experimental; urgency=medium
|
||||||
|
|
||||||
|
* Cherry-picking upstream release 0.12.0.
|
||||||
|
* Bumped Standards to 4.1.1 - no changes needed
|
||||||
|
* Bumped liblxqt dependency to >= 0.12.0
|
||||||
|
|
||||||
|
-- Alf Gaida <agaida@siduction.org> Tue, 24 Oct 2017 21:33:45 +0200
|
||||||
|
|
||||||
lxqt-sudo (0.11.1-2) unstable; urgency=medium
|
lxqt-sudo (0.11.1-2) unstable; urgency=medium
|
||||||
|
|
||||||
* Bumped Standards to 4.0.0 - no changes needed
|
* Bumped Standards to 4.0.0 - no changes needed
|
||||||
|
8
debian/control
vendored
8
debian/control
vendored
@ -7,13 +7,13 @@ Section: x11
|
|||||||
Priority: optional
|
Priority: optional
|
||||||
Build-Depends: debhelper (>= 10),
|
Build-Depends: debhelper (>= 10),
|
||||||
libkf5windowsystem-dev,
|
libkf5windowsystem-dev,
|
||||||
liblxqt0-dev (>= 0.11.1),
|
liblxqt0-dev (>= 0.12.0),
|
||||||
libqt5svg5-dev,
|
libqt5svg5-dev,
|
||||||
libqt5x11extras5-dev,
|
libqt5x11extras5-dev,
|
||||||
libx11-dev
|
libx11-dev
|
||||||
Standards-Version: 4.0.0
|
Standards-Version: 4.1.1
|
||||||
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-lxqt/lxqt-sudo.git/?h=debian/sid
|
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-lxqt/lxqt-sudo.git/?h=debian/experimental
|
||||||
Vcs-Git: https://anonscm.debian.org/git/pkg-lxqt/lxqt-sudo.git -b debian/sid
|
Vcs-Git: https://anonscm.debian.org/git/pkg-lxqt/lxqt-sudo.git -b debian/experimental
|
||||||
Homepage: https://github.com/lxde/lxqt-sudo
|
Homepage: https://github.com/lxde/lxqt-sudo
|
||||||
|
|
||||||
Package: lxqt-sudo
|
Package: lxqt-sudo
|
||||||
|
2
main.cpp
2
main.cpp
@ -32,6 +32,8 @@ int main(int argc, char **argv)
|
|||||||
{
|
{
|
||||||
LXQt::Application app(argc, argv, true);
|
LXQt::Application app(argc, argv, true);
|
||||||
app.setQuitOnLastWindowClosed(false);
|
app.setQuitOnLastWindowClosed(false);
|
||||||
|
app.setAttribute(Qt::AA_UseHighDpiPixmaps, true);
|
||||||
|
|
||||||
Sudo s;
|
Sudo s;
|
||||||
return s.main();
|
return s.main();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user