summaryrefslogtreecommitdiff
path: root/kde-misc/plasma-redshift-control/files
diff options
context:
space:
mode:
Diffstat (limited to 'kde-misc/plasma-redshift-control/files')
-rw-r--r--kde-misc/plasma-redshift-control/files/plasma-redshift-control-1.0.18-fix-custom-icc-profiles.patch39
-rw-r--r--kde-misc/plasma-redshift-control/files/plasma-redshift-control-1.0.18-reset-gamma-ramps.patch25
2 files changed, 64 insertions, 0 deletions
diff --git a/kde-misc/plasma-redshift-control/files/plasma-redshift-control-1.0.18-fix-custom-icc-profiles.patch b/kde-misc/plasma-redshift-control/files/plasma-redshift-control-1.0.18-fix-custom-icc-profiles.patch
new file mode 100644
index 000000000000..28a1cc00cf0d
--- /dev/null
+++ b/kde-misc/plasma-redshift-control/files/plasma-redshift-control-1.0.18-fix-custom-icc-profiles.patch
@@ -0,0 +1,39 @@
+From 1e2a920633d7085fc4e48f1163f434525b777c5b Mon Sep 17 00:00:00 2001
+From: John Salatas <jsalatas@gmail.com>
+Date: Wed, 6 Mar 2019 14:25:28 -0800
+Subject: Preserve screen colour doesn't work as expected
+
+Summary:
+using a custom .icc profile, running redshift from a command line works good but the applet seems to mess with it, the preserve option doesn't work, either in randr mode or vidmode the .icc is ignored even if it is running in daytime.
+
+See also:
+https://github.com/kotelnik/plasma-applet-redshift-control/issues/54
+
+Reviewers: #Plasma, martinkostolny, broulik
+
+Reviewed By: broulik
+
+Subscribers: broulik, plasma-devel
+
+Tags: #plasma
+
+Differential Revision: https://phabricator.kde.org/D17249
+---
+ package/contents/ui/main.qml | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/package/contents/ui/main.qml b/package/contents/ui/main.qml
+index 2ea8fd3..268cb33 100644
+--- a/package/contents/ui/main.qml
++++ b/package/contents/ui/main.qml
+@@ -96,7 +96,7 @@ Item {
+
+ function stopRedshift() {
+ print('disabling redshift')
+- redshiftDS.connectedSources.length = 0
++ redshiftDS.removeSource(redshiftCommand)
+ redshiftDS.connectedSources.push(redshiftDS.redshiftStopSource)
+ active = false
+ }
+--
+cgit v1.1
diff --git a/kde-misc/plasma-redshift-control/files/plasma-redshift-control-1.0.18-reset-gamma-ramps.patch b/kde-misc/plasma-redshift-control/files/plasma-redshift-control-1.0.18-reset-gamma-ramps.patch
new file mode 100644
index 000000000000..5e2b36822137
--- /dev/null
+++ b/kde-misc/plasma-redshift-control/files/plasma-redshift-control-1.0.18-reset-gamma-ramps.patch
@@ -0,0 +1,25 @@
+From a26a425145120b8e7782d0225e146fcef7b0640f Mon Sep 17 00:00:00 2001
+From: grmat <grmat@sub.red>
+Date: Wed, 20 Jun 2018 10:14:40 +0200
+Subject: [PATCH] add -P switch to one-shot redshift call
+
+---
+ package/contents/ui/main.qml | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/package/contents/ui/main.qml b/package/contents/ui/main.qml
+index 2ea8fd3..38d7b8a 100644
+--- a/package/contents/ui/main.qml
++++ b/package/contents/ui/main.qml
+@@ -67,7 +67,7 @@ Item {
+ // - commands
+ property string redshiftCommand: 'redshift' + locationCmdPart + modeCmdPart + ' -t ' + dayTemperature + ':' + nightTemperature + brightnessAndGamma + (smoothTransitions ? '' : ' -r')
+ property string redshiftOneTimeBrightnessAndGamma: ' -b ' + (currentBrightness*0.01).toFixed(2) + ':' + (currentBrightness*0.01).toFixed(2) + ' -g ' + gammaR + ':' + gammaG + ':' + gammaB
+- property string redshiftOneTimeCommand: 'redshift -O ' + manualTemperature + redshiftOneTimeBrightnessAndGamma + ' -r'
++ property string redshiftOneTimeCommand: 'redshift -PO ' + manualTemperature + redshiftOneTimeBrightnessAndGamma + ' -r'
+ property string redshiftPrintCommand: 'LANG=C ' + redshiftCommand + ' -p'
+
+ property bool inTray: (plasmoid.parent === null || plasmoid.parent.objectName === 'taskItemContainer')
+--
+2.17.1
+