summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAge
* Fix dist to find cairosvgHEADdhcpcd-ui-0.7.8masterRoy Marples2020-12-28
|
* Use cairosvg rather than librsvg to convert SVG to PNG.Roy Marples2020-12-28
| | | | | | | | librsvg now uses rust which I really don't want in my build chain. cairosvg on the other hand uses python, which already is in my chain. The downside is that we need to detect the binary name as often it's based on the python version.
* Release dhcpcd-ui-0.7.8Roy Marples2020-12-28
|
* Add support dhcpcd NOCARRIER_ROAMINGRoy Marples2020-12-28
|
* libdhcpcd: Work once more with data which does not yield an interfaceHanno Zysik2020-12-08
| | | | | | Such has INFORM6. An interface could not be created for other reasons, so just read all the data and try to create all interfaces from it.
* curses: ncurses may define curs_set outside of cursesRoy Marples2020-08-10
| | | | | | | | This is a very poor design decision that sadly we need to work around. There is no technical reason why all curses functions are not defined in libcurses. Thanks to Lars Wendler <polynomial-c@gentoo.org> for the initial patch.
* dhcpcd-qt: Remove support for KDE NotificationsRoy Marples2020-08-09
| | | | | | | | | | Qt Notifications are fine and highly portable. KDE Notifications are now more tricky as they require a per app config file to be installed and of course don't work with other Qt based desktops. If anyone wants them back, we should try and create dhcpcd-kde instead of dhcpcd-qt.
* dhcpcd-qt: Use 22x22 png icon with system trayRoy Marples2020-08-09
| | | | SVG no longer renders with Qt5 :/
* whitespaceRoy Marples2020-08-08
|
* dhcpcd-qt: Add support for KDE5 NotificationsRoy Marples2020-08-08
|
* configure: Fix notify for gtkRoy Marples2020-08-08
|
* libdhcpcd: harden reading of dhcpcd socketRoy Marples2020-08-04
| | | | Matches recent dhcpcd internal socket behaviour.
* ui: Don't notify new scan results if ANY interface is connectedRoy Marples2020-08-04
| | | | We don't want to be spammed if wired is connected and wireless isn't.
* vwprintw -> vw_printw as the former is deprecated.Roy Marples2019-12-21
|
* libdhcpcd: Limit messages to SSIZE_MAXRoy Marples2019-12-11
| | | | | | | We need to add one to it for allocation to terminate it and this is a stupidly big string anyway. Found by LGMT.
* Add guard headers.Roy Marples2019-12-11
| | | | | | Found by LGTM. While here, tidy configure output.
* Release dhcpcd-ui-0.7.7dhcpcd-ui-0.7.7Roy Marples2019-12-03
|
* Support the up and coming dhcpcd-9.Roy Marples2019-11-29
|
* libdhcpcd: decode escaped \2XX and \\ correctlyRoy Marples2019-09-19
|
* Release dhcpcd-ui-0.7.6dhcpcd-ui-0.7.6Roy Marples2019-06-26
|
* Fix making dist files.Roy Marples2019-06-26
|
* Preverse profile and fallback blocks.Roy Marples2019-05-31
|
* I don't use Phabricator anymore.Roy Marples2019-01-19
|
* Hide hidden SSIDsPeter Ryan2018-04-09
|
* wpa: update frequency on each dhcpcd eventRoy Marples2018-03-01
| | | | | | | This fixes an issue with the AP reconnecting to the same AP but not updating the frequency correctly. Thanks to Simon Long.
* wpa: Match exact ctrl message string lengthRoy Marples2018-03-01
|
* wpa: add better frequency support.Roy Marples2018-02-26
| | | | | | Add flags indicate if a given AP is 2G, 5G or both. When a wpa_supplicant connection is made, set the frequency for the connected interface.
* Add debug flags if git checkout is present.Roy Marples2018-02-26
|
* WhitespaceRoy Marples2017-11-06
|
* Don't spam the user about new AP's if we're connected already.Roy Marples2017-11-06
|
* Use an icon if using >=Qt-5.9 in notificaions.Roy Marples2017-10-21
|
* We changed enough of dhcpcd-qt in 2017 to warrant a copyright bump.Roy Marples2017-10-21
|
* Stop using iostream, stdio is smaller binary.Roy Marples2017-10-21
|
* Note the debug settings needed for Qt-5.Roy Marples2017-10-21
|
* Update systemd service file.Roy Marples2017-10-20
|
* Note that Qt5 now builds also.Roy Marples2017-10-20
|
* Stock buttons have been deprecated, so roll our own.Roy Marples2017-10-20
|
* Fix starting in LXQt by starting after it's panel.Roy Marples2017-10-20
|
* Whitespace fixesRoy Marples2017-10-20
|
* Ignore the .qmake.stash file from Qt5.Roy Marples2017-10-20
|
* Qt5 updatemir3x2017-10-20
|
* Fix priorRoy Marples2017-09-08
|
* Fix building dhcpcd-qt by default if some binaries are not available.Roy Marples2017-09-03
|
* use getpwuid_r(3) instead of getlogin(3)Roy Marples2017-09-03
| | | | | | | getlogin(3) isn't thread safe and apparently has some issues. Also, on Linux Mint at least it always returns NULL. Use getpwuid_r(3) instead so we are thread safe and always seems to work.
* Add an .arcconfig file to hook arcanist with phabricator.Roy Marples2017-03-24
|
* Add some markdown loving.Roy Marples2017-03-14
|
* Add some .gitignore files.Roy Marples2017-03-14
|
* Remove distinfo files before making them and keep distinfo in signed result.Roy Marples2016-11-05
|
* Add distinfo target from dhcpcd to produce signed distinfo files.Roy Marples2016-11-04
|
* Fix offline icon if update_online repeatedly called when carrier and onlineRoy Marples2016-08-12
| | | | are both false. Thanks to Simon Long.