Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Plasma
Plasma Desktop
Commits
212dbeaa
Commit
212dbeaa
authored
Nov 25, 2019
by
Yuri Chornoivan
Browse files
Use URL with transport encryption
parent
ff86f0ab
Changes
20
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
212dbeaa
...
...
@@ -106,7 +106,7 @@ endif()
find_package
(
UDev
)
set_package_properties
(
UDev PROPERTIES DESCRIPTION
"UDev library"
URL
"http://www.
kernel.org/pub/linux/utils/kernel/hotplug/udev.html
"
URL
"http
s
://www.
freedesktop.org/wiki/Software/systemd/
"
TYPE OPTIONAL
PURPOSE
"Required for device discovery in keyboard daemon"
)
...
...
applets/kickoff/package/contents/ui/FullRepresentation.qml
View file @
212dbeaa
...
...
@@ -677,7 +677,7 @@ Item {
target
:
tabBar
//Set the opacity and NOT the visibility, as visibility is recursive
//and this binding would be executed also on popup show/hide
//as recommended by the docs: http://doc.qt.io/qt-5/qml-qtquick-item.html#visible-prop
//as recommended by the docs: http
s
://doc.qt.io/qt-5/qml-qtquick-item.html#visible-prop
//plus, it triggers https://bugreports.qt.io/browse/QTBUG-66907
//in which a mousearea may think it's under the mouse while it isn't
opacity
:
tabBar
.
count
>
1
?
1
:
0
...
...
applets/kimpanel/backend/ibus/ibus15/gdkkeysyms_p.h
View file @
212dbeaa
...
...
@@ -18,11 +18,11 @@
/*
* File auto-generated from script http://git.gnome.org/
browse/gtk+/tree
/gdk/gdkkeysyms-update.pl
* File auto-generated from script http
s
://git
lab
.gnome.org/
GNOME/gtk/blob/master
/gdk/gdkkeysyms-update.pl
* using the input file
* http://cgit.freedesktop.org/xorg/proto/x11proto/plain/keysymdef.h
* http
s
://cgit.freedesktop.org/xorg/proto/x11proto/plain/keysymdef.h
* and
* http://cgit.freedesktop.org/xorg/proto/x11proto/plain/XF86keysym.h
* http
s
://cgit.freedesktop.org/xorg/proto/x11proto/plain/XF86keysym.h
*/
/*
...
...
applets/minimizeall/package/metadata.desktop
View file @
212dbeaa
...
...
@@ -66,7 +66,7 @@ X-KDE-PluginInfo-Author=Sebastian Kügler
X-KDE-PluginInfo-Email=sebas@kde.org
X-KDE-PluginInfo-Name=org.kde.plasma.minimizeall
X-KDE-PluginInfo-Version=1.0
X-KDE-PluginInfo-Website=http://
plasma.
kde.org/
X-KDE-PluginInfo-Website=http
s
://kde.org/
plasma-desktop
X-KDE-PluginInfo-Category=Windows and Tasks
X-KDE-PluginInfo-Depends=
X-KDE-PluginInfo-License=GPL-2.0+
...
...
applets/pager/package/contents/ui/main.qml
View file @
212dbeaa
...
...
@@ -108,7 +108,7 @@ MouseArea {
onWheel
:
{
// Magic number 120 for common "one click, see:
// http://
qt-project.org/doc
/qt-5/qml-qtquick-wheelevent.html#angleDelta-prop
// http
s
://
doc.qt.io
/qt-5/qml-qtquick-wheelevent.html#angleDelta-prop
wheelDelta
+=
wheel
.
angleDelta
.
y
||
wheel
.
angleDelta
.
x
;
var
increment
=
0
;
...
...
applets/pager/package/metadata.desktop
View file @
212dbeaa
...
...
@@ -163,7 +163,7 @@ X-KDE-PluginInfo-Author=The Plasma Team
X-KDE-PluginInfo-Email=plasma-devel@kde.org
X-KDE-PluginInfo-Name=org.kde.plasma.pager
X-KDE-PluginInfo-Version=4.0
X-KDE-PluginInfo-Website=http://userbase.kde.org/Plasma/Pager
X-KDE-PluginInfo-Website=http
s
://userbase.kde.org/Plasma/Pager
X-KDE-PluginInfo-Category=Windows and Tasks
X-KDE-PluginInfo-Depends=
X-KDE-PluginInfo-License=GPL-2.0+
...
...
applets/showdesktop/package/metadata.desktop
View file @
212dbeaa
...
...
@@ -69,7 +69,7 @@ X-KDE-PluginInfo-Author=Petri Damstén
X-KDE-PluginInfo-Email=damu@iki.fi
X-KDE-PluginInfo-Name=org.kde.plasma.showdesktop
X-KDE-PluginInfo-Version=1.0
X-KDE-PluginInfo-Website=http://
plasma.
kde.org/
X-KDE-PluginInfo-Website=http
s
://kde.org/
plasma-desktop
X-KDE-PluginInfo-Category=Windows and Tasks
X-KDE-PluginInfo-Depends=
X-KDE-PluginInfo-License=GPL-2.0+
...
...
attica-kde/kdeplugin/kdeplatformdependent.cpp
View file @
212dbeaa
...
...
@@ -258,6 +258,6 @@ QNetworkAccessManager* Attica::KdePlatformDependent::nam()
return
m_accessManager
;
}
// TODO: re-enable, see http://community.kde.org/Frameworks/Porting_Notes
// TODO: re-enable, see http
s
://community.kde.org/Frameworks/Porting_Notes
// Q_EXPORT_PLUGIN2(attica_kde, Attica::KdePlatformDependent)
desktoppackage/contents/configuration/panelconfiguration/SizeHandle.qml
View file @
212dbeaa
...
...
@@ -155,7 +155,7 @@ PlasmaComponents.Button {
wheelDelta
+=
wheel
.
delta
;
var
deltaThickness
=
0
;
// Magic number 120 for common "one click"
// See: http://
qt-project.org/doc
/qt-5/qml-qtquick-wheelevent.html#angleDelta-prop
// See: http
s
://
doc.qt.io
/qt-5/qml-qtquick-wheelevent.html#angleDelta-prop
while
(
wheelDelta
>=
120
)
{
wheelDelta
-=
120
;
deltaThickness
+=
1
;
...
...
kcms/icons/iconsmodel.cpp
View file @
212dbeaa
...
...
@@ -6,7 +6,7 @@
* Copyright (C) 2018 Kai Uwe Broulik <kde@privat.broulik.de>
*
* Requires the Qt widget libraries, available at no cost at
* http://www.
troll.n
o/
* http
s
://www.
qt.i
o/
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
kcms/icons/iconsmodel.h
View file @
212dbeaa
...
...
@@ -4,7 +4,7 @@
* Copyright (c) 2018 Kai Uwe Broulik <kde@privat.broulik.de>
*
* Requires the Qt widget libraries, available at no cost at
* http://www.
troll.n
o/
* http
s
://www.
qt.i
o/
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
kcms/icons/main.cpp
View file @
212dbeaa
...
...
@@ -8,7 +8,7 @@
* Copyright (C) 2018 Kai Uwe Broulik <kde@privat.broulik.de>
*
* Requires the Qt widget libraries, available at no cost at
* http://www.
troll.n
o/
* http
s
://www.
qt.i
o/
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
kcms/icons/main.h
View file @
212dbeaa
...
...
@@ -6,7 +6,7 @@
* Copyright (c) 2018 Kai Uwe Broulik <kde@privat.broulik.de>
*
* Requires the Qt widget libraries, available at no cost at
* http://www.
troll.n
o/
* http
s
://www.
qt.i
o/
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
kcms/keyboard/kcmmisc.cpp
View file @
212dbeaa
...
...
@@ -7,7 +7,7 @@
* Copyright (c) 1999 Dirk A. Mueller <dmuell@gmx.net>
*
* Requires the Qt widget libraries, available at no cost at
* http://www.
troll.n
o/
* http
s
://www.
qt.i
o/
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
kcms/keyboard/kcmmisc.h
View file @
212dbeaa
...
...
@@ -4,7 +4,7 @@
* Copyright (c) 1997 Patrick Dowler dowler@morgul.fsh.uvic.ca
*
* Requires the Qt widget libraries, available at no cost at
* http://www.
troll.n
o/
* http
s
://www.
qt.i
o/
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
kcms/keyboard/keyboard_hardware.cpp
View file @
212dbeaa
...
...
@@ -33,7 +33,7 @@
#include
<X11/keysym.h>
#include
<X11/Xlib.h>
// This code is taken from xset utility from XFree 4.3 (http://www.xfree86.org/)
// This code is taken from xset utility from XFree 4.3 (http
s
://www.xfree86.org/)
static
void
set_repeatrate
(
int
delay
,
double
rate
)
...
...
kcms/keyboard/xkb_rules.cpp
View file @
212dbeaa
...
...
@@ -94,7 +94,7 @@ void removeEmptyItems(QList<T*>& list)
{
#ifdef __GNUC__
#if __GNUC__ == 4 && (__GNUC_MINOR__ == 8 && __GNUC_PATCHLEVEL__ < 3) || (__GNUC_MINOR__ == 7 && __GNUC_PATCHLEVEL__ < 4)
#warning Compiling with a workaround for GCC < 4.8.3 || GCC < 4.7.4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58800
#warning Compiling with a workaround for GCC < 4.8.3 || GCC < 4.7.4 http
s
://gcc.gnu.org/bugzilla/show_bug.cgi?id=58800
Q_FOREACH
(
T
*
x
,
list
)
{
ConfigItem
*
y
=
static_cast
<
ConfigItem
*>
(
x
);
if
(
y
->
name
.
isEmpty
())
{
...
...
kcms/kfontinst/viewpart/generate-unicode-tables.pl
View file @
212dbeaa
...
...
@@ -41,7 +41,7 @@ Usage: $0 UNICODE-VERSION DIRECTORY
DIRECTORY should contain the following Unicode data files:
UnicodeData.txt Unihan.zip NamesList.txt Blocks.txt Scripts.txt
which can be found at http://www.unicode.org/Public/UNIDATA/
which can be found at http
s
://www.unicode.org/Public/UNIDATA/
EOF
}
...
...
kcms/lookandfeel/autotests/lookandfeel/metadata.desktop
View file @
212dbeaa
...
...
@@ -91,5 +91,5 @@ X-KDE-PluginInfo-Email=plasma-devel@kde.org
X-KDE-PluginInfo-License=GPL-2.0+
X-KDE-PluginInfo-Name=org.kde.test
X-KDE-PluginInfo-Version=2.0
X-KDE-PluginInfo-Website=http://www.kde.org
X-KDE-PluginInfo-Website=http
s
://www.kde.org
X-Plasma-MainScript=defaults
kcms/mouse/kapplymousetheme.cpp
View file @
212dbeaa
...
...
@@ -7,7 +7,7 @@
* Copyright (c) 2018 Roman Gilg <subdiff@gmail.com>
*
* Requires the Qt widget libraries, available at no cost at
* http://www.
troll.n
o/
* http
s
://www.
qt.i
o/
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment