aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* geoclue2: Use existing connection objectJon Lund Steffensen2017-08-191-6/+6
| | | | Use existing connection object when creating proxies.
* Merge pull request #500 from jonls/continuous-locationJon Lund Steffensen2017-08-1914-283/+843
|\ | | | | Continuous location updates
| * Appveyor, Travis: Test run redshift after buildJon Lund Steffensen2017-08-172-4/+17
| |
| * geoclue2: Update continuouslyJon Lund Steffensen2017-08-173-100/+209
| |
| * corelocation: Update continuouslyJon Lund Steffensen2017-08-174-62/+173
| |
| * 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.
* Merge pull request #498 from jonls/osx-travisJon Lund Steffensen2017-08-161-4/+13
|\ | | | | Enable Travis CI on macOS
| * Enable Travis CI on macOSJon Lund Steffensen2017-08-161-4/+13
|/
* Merge pull request #497 from jonls/remove-geoclue-1Jon Lund Steffensen2017-08-1611-358/+60
|\ | | | | Remove deprecated GeoClue 1 location provider
| * Remove deprecated geoclue 1 location providerJon Lund Steffensen2017-08-1611-358/+60
|/
* Merge pull request #494 from jonls/contributingJon Lund Steffensen2017-08-144-3/+2
|\ | | | | Rename HACKING.md to CONTRIBUTING.md
| * Rename HACKING.md to CONTRIBUTING.mdJon Lund Steffensen2017-08-144-3/+2
|/
* Merge pull request #493 from jonls/fix-xdgJon Lund Steffensen2017-08-071-9/+11
|\ | | | | Fix #492: Correctly import xdg modules
| * 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-016-17/+71
|\ | | | | Add icon for Windows build
| * Add Windows resourcesJon Lund Steffensen2017-07-305-4/+57
| |
| * Appveyor: Change to use MSYSTEM with MSYS to get correct MinGW toolsJon Lund Steffensen2017-07-301-13/+14
| | | | | | | | | | | | | | | | This fixes an issue where the configure script would prefer the tools in c:\msys64\usr\bin instead of the MinGW tools. This specifially failed when searching for windres while cross-compiling for i686 because the tool found in c:\msys64\usr\bin would generate 64-bit object files.
* | Merge pull request #491 from jonls/python-controllerJon Lund Steffensen2017-07-304-272/+351
|\ \ | |/ |/| Updates to redshift-gtk
| * 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
|/
* Merge pull request #489 from jonls/appveyor-distcheckJon Lund Steffensen2017-07-301-5/+17
|\ | | | | Appveyor: Run distcheck and improve zip package
| * Appveyor: Create zip package with txt filesJon Lund Steffensen2017-07-301-3/+12
| | | | | | | | | | | | Renames various text files to .txt extension to make it easier to open these files on Windows. Also bundles the sample configuration file.
| * Appveyor: Run distcheck as part of buildJon Lund Steffensen2017-07-301-3/+6
|/ | | | | This ensures that all files required for Windows build are correctly bundled in the source archive produced by autotools.
* Merge branch 'appveyor-x86-builds'Jon Lund Steffensen2017-07-302-10/+15
|\
| * AppVeyor: Build for 32-bit Windowsmanuc662017-07-302-10/+15
|/
* README: Only link to AppVeyor artifacts from masterJon Lund Steffensen2017-07-291-1/+1
|
* Merge pull request #481 from faheel/format-help-textJon Lund Steffensen2017-07-291-5/+4
|\ | | | | Formatted help text paragraph to 80 chars max
| * 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 #486 from jonls/appveyor-staticJon Lund Steffensen2017-07-271-1/+1
|\ \ | | | | | | Try to build static executable and disable NLS
| * | Try to build static executable and disable NLSJon Lund Steffensen2017-07-271-1/+1
|/ /
* | Merge pull request #484 from jonls/readme-configJon Lund Steffensen2017-07-271-2/+16
|\ \ | | | | | | README: Add notes on configuration file
| * | README: Add notes on configuration fileJon Lund Steffensen2017-07-271-2/+16
|/ /
* | Merge pull request #483 from jonls/travis-trustyJon Lund Steffensen2017-07-271-0/+2
|\ \ | | | | | | travis.yml: Explicitly use Ubuntu Trusty
| * | travis.yml: Use Ubuntu TrustyJon Lund Steffensen2017-07-271-0/+2
|/ /
* | Merge pull request #482 from jonls/appveyorJon Lund Steffensen2017-07-272-8/+38
|\ \ | |/ |/| Fix #438: Add AppVeyor configuration
| * README: Link to AppVeyor Windows buildJon Lund Steffensen2017-07-271-8/+14
| |
| * Add AppVeyor configurationmanuc662017-07-271-0/+24
|/
* Merge pull request #426 from Kcchouette/patch-1Jon Lund Steffensen2017-01-241-3/+3
|\ | | | | Change default temperature value
| * Change default temperature valueKcchouette2017-01-241-3/+3
|/ | | see more at #420 and #262
* 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.
* | Merge pull request #419 from jonls/macos-plistJon Lund Steffensen2017-01-081-0/+22
|\ \ | | | | | | contrib: Add launchd file for macOS
| * | contrib: Add launchd file for macOSJon Lund Steffensen2017-01-081-0/+22
|/ /