aboutsummaryrefslogtreecommitdiffstats
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* | | quartz: Fix incorrect use of display identifierJon Lund Steffensen2017-10-121-3/+4
| | | | | | | | | | | | | | | | | | The quartz (macOS) adjustment method incorrectly used the display index instead of the associated CGDirectDisplayID. Incidentally this happened to work too but was incorrect.
* | | Fix bug where error code was not handledJon Lund Steffensen2017-10-121-1/+1
| | |
* | | Fix missing checks and verbose outputJon Lund Steffensen2017-10-121-12/+17
| | | | | | | | | | | | | | | | | | | | | Rearrange checks and verbose output in main() to bring back checks that were accidentally left out when time-based adjustments were enabled. This includes the output indicating the daytime/night temperatures and the check that the temperatures are valid.
* | | Time-based configurationJon Lund Steffensen2017-10-111-78/+274
| | | | | | | | | | | | | | | | | | | | | | | | Allow setting the time of the dawn and dusk transition periods directly in the configuration file. If these are specified, the location provider is not needed and is therefore not initialized. Based on patch by Martin Nicolay <edelschimmel1@gmx.de>.
* | | Fix #523: Retry SetDeviceGammaRamp before giving updev73556082017-09-271-5/+15
| | | | | | | | | | | | | | | | | | We have to retry SetDeviceGammaRamp a few times before giving up because some buggy drivers fail on the first invocation just to succeed on the second.
* | | w32gdi: Enable preserve by defaultJon Lund Steffensen2017-08-311-1/+1
| | |
* | | vidmode: Enable preserve by defaultJon Lund Steffensen2017-08-311-1/+1
| | |
* | | randr: Enable preserve by defaultJon Lund Steffensen2017-08-311-1/+1
| | |
* | | quartz: Enable preserve by defaultJon Lund Steffensen2017-08-311-1/+1
| | |
* | | redshift: Improve fade implementationJon Lund Steffensen2017-08-301-117/+164
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Simplify implementation of fades in continual mode. A fade is now applied anytime the change in color temperature, brightness or gamma is greater than a preset threshold. This means that a fade is applied if the location provider suddenly updates to a new location or if the currently time suddenly jumps e.g. after waking up the computer from sleep. An easing function is applied to the fade to make it more pleasant.
* | | Merge pull request #507 from jonls/fade-termJon Lund Steffensen2017-08-301-20/+19
|\ \ \ | | | | | | | | Use the term "fade" instead of "transition" for the short (~5s) fade between color temperatures
| * | | Change term transition to fadeJon Lund Steffensen2017-08-301-20/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use the term "fade" instead of "transition" for the short (~5s) fade between color temperatures. The term "transition" is now only used for the transition phase between daytime and night. The setting "transition" in the configuration file is now deprecated and "fade" should be used instead.
* | | | geoclue2: Show explanation of access denied errorJon Lund Steffensen2017-08-191-0/+22
| | | |
* | | | geoclue2: Use existing connection objectJon Lund Steffensen2017-08-191-6/+6
|/ / / | | | | | | | | | Use existing connection object when creating proxies.
* | | geoclue2: Update continuouslyJon Lund Steffensen2017-08-173-100/+209
| | |
* | | corelocation: Update continuouslyJon Lund Steffensen2017-08-173-61/+172
| | |
* | | pipeutils: Add utils for pipe signalsJon Lund Steffensen2017-08-173-0/+127
| | | | | | | | | | | | | | | | | | | | | Add pipeutils.c with utility functions for working with pipes as signals across threads. Using pipes for signals makes it easy for the main thread to wait on (multiple) file descriptors with or without a timeout.
* | | Change location providers to allow updatesJon Lund Steffensen2017-08-178-182/+382
| | | | | | | | | | | | | | | | | | | | | Change location provider implementations so it is possible for location providers to dynamically update the location. This commit adds the interfaces and infrastructure in redshift.c but none of the location provides are changed to become dynamic.
* | | Remove deprecated geoclue 1 location providerJon Lund Steffensen2017-08-164-301/+7
| | |
* | | Fix #492: Correctly import xdg modulesJon Lund Steffensen2017-08-071-9/+11
| | | | | | | | | | | | | | | | | | Although not named like modules, the BaseDirectory and DesktopEntry are really submodules of xdg that need to be imported for them to be available.
* | | Merge pull request #490 from jonls/windows-resourcesJon Lund Steffensen2017-08-014-2/+34
|\ \ \ | | | | | | | | Add icon for Windows build
| * | | Add Windows resourcesJon Lund Steffensen2017-07-304-2/+34
| | | |
* | | | statusicon: Use GtkWindow to avoid warningsJon Lund Steffensen2017-07-301-12/+20
| | | | | | | | | | | | | | | | | | | | | | | | Avoids warnings generated when a GtkDialog is used without a parent window. Also adds fixes for #220 using a solution provided by agnivade.
* | | | statusicon: Only add autostart control when supportedJon Lund Steffensen2017-07-301-10/+11
| | | |
* | | | controller: Emit signal when stoppedJon Lund Steffensen2017-07-302-2/+9
| | | |
* | | | utils: Make xdg module optionalJon Lund Steffensen2017-07-301-7/+25
| | | |
* | | | Move RedshiftController to controller.pyJon Lund Steffensen2017-07-303-251/+296
|/ / /
* | | Limit lines to 80 charsFaheel Ahmad2017-07-291-4/+4
| | |
* | | Fix #474: Format help text paragraph to 80 chars maxFaheel Ahmad2017-07-271-4/+3
| | |
* | | Merge pull request #420 from jonls/default-temperatureJon Lund Steffensen2017-01-141-2/+2
|\ \ \ | | | | | | | | redshift.c: Use 6500K and 4500K by default
| * | | redshift.c: Use 6500K and 4500K by defaultJon Lund Steffensen2017-01-081-2/+2
| |/ /
* | | Merge pull request #421 from jonls/randr-adjust-multipleJon Lund Steffensen2017-01-142-9/+59
|\ \ \ | |/ / |/| | XRandR: Allow multiple but not all CRTCs to be redshifted
| * | XRandR: Allow multiple but not all CRTCs to be redshiftedLennart Sauerbeck2017-01-082-9/+59
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously only one CRTC could be set in the configuration file for redshifting when XRandR mechanism was being used. That is fine for a setup with two displays but breaks when three or more displays are in use and one of those shouldn't be redshifted (e.g. two computer displays and one TV connected to the computer). The config value 'crtc' for method xrandr can now be entered as comma separated list of multiple CRTCs. All CRTCs in the list will be redshifted while all those not in the list will not be touched.
* | | Fix Windows build after e0a617fcada616a8112f7d9df51ac10bd58130afArne Janbu2016-10-192-2/+7
|/ /
* | Merge pull request #383 from jonls/icon-tooltipJon Lund Steffensen2016-10-151-0/+8
|\ \ | | | | | | add display of color temperature and period in the tooltip status icon
| * | add display of color temperature and period in the tooltip status iconAndreev Alexander2016-10-151-0/+8
| | |
* | | drm: Avoid using alloca()Jon Lund Steffensen2016-10-151-2/+3
|/ /
* | redshift-gtk: Make sure that child process is closed after signalsJon Lund Steffensen2016-01-021-27/+30
| | | | | | | | | | | | | | | | Instead of calling sys.exit() the signal handlers now try to terminate the child process. After the child exits, the process will be reaped by the GLib callback which will call Gtk.main_quit() which will then quit redshift-gtk. This ensures that the redshift process does not outlive the redshift-gtk process.
* | Fix #213: Merge branch 'pull-213'Jon Lund Steffensen2015-12-284-69/+149
|\ \
| * | Move signal processing functions and sigaction calls to signals from redshift.cMattias Andrée2015-12-284-72/+152
| | | | | | | | | | | | Signed-off-by: Mattias Andrée <maandree@operamail.com>
* | | Merge pull request #244 from jubalh/masterJon Lund Steffensen2015-12-285-8/+8
|\ \ \ | | | | | | | | Remove trailing whitespaces
| * | | Remove trailing whitespacesMichael Vetter2015-08-045-8/+8
| |/ /
* | | Fallback if AppIndicator3 req. version unavailableJavier Cantero2015-11-151-1/+1
| | | | | | | | | | | | | | | Catch in the except block the case when the required version of Appindicator3 is not available to also fallback in GtkStatusIcon widget.
* | | Also specify required AppIndicator3 versionJavier Cantero2015-11-141-0/+1
| | | | | | | | | | | | | | | Avoid another GObject Introspection warning in redshift-gtk by providing the required version of AppIndicator3 before import it.
* | | Specify required Gtk versionChristian Stadelmann2015-11-031-0/+3
|/ / | | | | This fixes a warning when starting redshift-gtk with gtk 3.18.
* | Merge pull request #197 from forivall/clamp-fixJon Lund Steffensen2015-05-101-7/+3
|\ \ | | | | | | Fix clamp issues
| * | Fix CLAMP macro overwritten by glib headersJordan Klassen2015-05-021-7/+3
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #188 When I moved the macro definition below all of the includes, I got the following compiler warning: /usr/include/glib-2.0/glib/gmacros.h:246:0: note: this is the location of the previous definition #define CLAMP(x, low, high) (((x) > (high)) ? (high) : (((x) < (low)) ? (low) : (x))) So, that's the macro definition that was being used whenever "CLAMP" was used. It's pretty obvious what went wrong.
* / remove unnecessary null-checks, it is safe to pass NULL to free (per documentation)Mattias Andrée2015-05-073-6/+5
|/ | | | Signed-off-by: Mattias Andrée <maandree@operamail.com>
* Fix #174: Use nanosleep() instead of usleep()Jon Lund Steffensen2015-02-221-1/+5
| | | | | usleep() cannot sleep for more than 1000000 microseconds on certain platforms. nanosleep() does not have this limitation.
* Fix #162: Ensure that interpolation alpha is in [0;1]Jon Lund Steffensen2015-01-151-3/+5
|