summaryrefslogtreecommitdiff
path: root/buildstream/_frontend/linuxapp.py
Commit message (Collapse)AuthorAgeFilesLines
* _frontend/linuxapp.py: Fixing fallout from !693Tristan Van Berkom2018-08-231-4/+4
| | | | | | When fixing terminal notifications, I had introduced a bug with accesses to `os.environ` which triggered KeyError, this patch fixes it.
* _frontend/linuxapp.py: Fix special casing around desktop notification escape ↵Tristan Van Berkom2018-08-221-3/+34
| | | | | | | | | | | sequence Now we allow the notification to happen on any TERM which starts with 'xterm' or 'vte', and we only do it if the VTE_VERSION is >= 4600, where we know for sure that VTE will not print garbage on the terminal. Fixes #385
* Remove shebangs from python filesGökçen Nurlu2018-06-191-1/+0
| | | | Fixes #424
* _frontend/linuxapp.py: Fixed crash in previous commitTristan Van Berkom2018-05-171-1/+1
| | | | | Commit e023beb56b180316a58f409d48f158e9dc1ece95 introduced a crash with an invalid access to os.environ, this fixes it.
* _frontend: Notify failures when on linuxtristan/platform-appTristan Van Berkom2018-05-171-0/+34
Opens the door to platform specific frontend features, and implements a platform specific "notify" method. This is based on Valentin David's patch on merge request 447, and this fixes issue #385.