aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAge
* disable-common.inc updateLibravatar netblue302021-07-13
|
* Fix #4396 -- tracelog causes anki to segfaultLibravatar rusty-snake2021-07-11
|
* Fix file-roller.profileLibravatar rusty-snake2021-07-09
| | | | [skip ci]
* profcleaner.sh: Change "# CMD" and "#CMD" tooLibravatar rusty-snake2021-07-09
| | | | See https://github.com/netblue30/firejail/commit/00cb8b611f0e35a56585061d689fbcca2af0566b#commitcomment-53262808
* Merge pull request #4389 from rusty-snake/profcleaner.shLibravatar netblue302021-07-08
|\ | | | | Create profcleaner.sh
| * profcleaner.sh: Rename --all to --systemLibravatar rusty-snake2021-07-07
| | | | | | [skip ci]
| * Create profcleaner.shLibravatar rusty-snake2021-07-07
| | | | | | | | profcleaner.c is just sed, I was wondering why we need C for that.
* | Merge pull request #4388 from rusty-snake/allow-deny-zshLibravatar netblue302021-07-08
|\ \ | | | | | | allow/deny in zsh completion
| * | allow/deny in zsh completionLibravatar rusty-snake2021-07-07
| |/
* | Merge pull request #4390 from rusty-snake/git-blame-ignore-revsLibravatar netblue302021-07-08
|\ \ | | | | | | Exclude allow/deny move in profile from git blame
| * | Exclude allow/deny move in profile from git blameLibravatar rusty-snake2021-07-07
| |/ | | | | | | | | | | | | | | | | | | | | fe0f975f447d59977d90c3226cc8c623b31b20b3 (move whitelist/blacklist to allow/deny) is just a huge rename w/o effects to the profile. Ignoreing it in git blame to see which commits actually added/changed a allow/nodeny command. Configure git to use .git-blame-ignore-revs: git config blame.ignoreRevsFile .git-blame-ignore-revs
* | Merge pull request #4391 from vnepogodin/masterLibravatar netblue302021-07-08
|\ \ | | | | | | Update Clion profile and Add Clion EAP profile
| * | SortLibravatar Vladislav Nepogodin2021-07-08
| | |
| * | Add new directoriesLibravatar Vladislav Nepogodin2021-07-08
| | |
| * | Revert changesLibravatar Vladislav Nepogodin2021-07-07
| | |
| * | Revert changesLibravatar Vladislav Nepogodin2021-07-07
| | |
| * | Remove unnecessaryLibravatar Vladislav Nepogodin2021-07-07
| | |
| * | Fix clionLibravatar Vladislav Nepogodin2021-07-07
| |/ | | | | | | | | Add new clion-eap profile Fix broken clion profile
* | Merge pull request #4392 from rusty-snake/sort-disable-programs.incLibravatar netblue302021-07-08
|\ \ | |/ |/| LC_ALL=C sort disable-programs.inc
| * LC_ALL=C sort disable-programs.incLibravatar rusty-snake2021-07-07
|/
* allow/deny fbuilderLibravatar netblue302021-07-05
|
* move whitelist/blacklist to allow/denyLibravatar netblue302021-07-05
|
* deprecated whitelist=yes/no in /etc/firejail/firejail.configLibravatar netblue302021-07-04
|
* allow/deny help and man pagesLibravatar netblue302021-07-03
|
* allow/noallow/deny/nodeny aliases for ↵Libravatar netblue302021-07-03
| | | | whitelist/nowhitelist/blacklist/noblacklist
* deprecated --disable-whitelist at compile timeLibravatar netblue302021-07-03
|
* cleanup for the next development cycleLibravatar netblue302021-07-01
|
* Merge pull request #4365 from lxeiqr/sndio-fixLibravatar netblue302021-07-01
|\ | | | | Fix sndio support
| * Convert spaces to tabs in firejail/fs.cLibravatar lxeiqr2021-06-20
| |
| * Whitelist /tmp/sndio in private-tmpLibravatar lxeiqr2021-06-20
| |
| * Update etc/inc/whitelist-common.incLibravatar lxeiqr2021-06-20
| | | | | | Co-authored-by: rusty-snake <41237666+rusty-snake@users.noreply.github.com>
| * Remove a /tmp/ whitelist, move sndio whitelist to common in whitelist-commonLibravatar lxeiqr2021-06-20
| |
| * Add sndio supportLibravatar lxeiqr2021-06-20
| |
* | rel 0.9.66 is out, moving to 0.9.67Libravatar netblue302021-06-29
| |
* | Fix gnome-calendar crashes0.9.66Libravatar rusty-snake2021-06-29
| |
* | Merge branch 'master' of ssh://github.com/netblue30/firejailLibravatar netblue302021-06-28
|\ \
| * | Fix #4377 -- telegram-desktop 2.8.2 not starting using firejail-gitLibravatar rusty-snake2021-06-28
| | |
* | | release 0.9.66 testingLibravatar netblue302021-06-28
|/ /
* | Merge pull request #4332 from rusty-snake/bitwarden-electronLibravatar netblue302021-06-28
|\ \ | | | | | | Refactor bitwarden as electron redirect
| * | Refactor bitwarden as electron redirect (follow-up)Libravatar rusty-snake2021-06-08
| | |
| * | Refactor bitwarden as electron redirectLibravatar rusty-snake2021-06-08
| | |
* | | README updateLibravatar netblue302021-06-27
| | |
* | | README updateLibravatar netblue302021-06-27
| | |
* | | Merge pull request #4376 from kmk3/gcov-add-nop-functionsLibravatar netblue302021-06-27
|\ \ \ | | | | | | | | gcov: use no-op functions if not enabled
| * | | gcov: use no-op functions if not enabledLibravatar Kelvin M. Klann2021-06-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of wrapping every gcov function call in an ifdef. Note: The usage of `((void)0)` is based on section 7.2 of the C99 standard (N1256)[1] [2]: > 7.2 Diagnostics <assert.h> > > 1 The header <assert.h> defines the assert macro and refers to another > macro, > > NDEBUG > > which is not defined by <assert.h>. If NDEBUG is defined as a macro > name at the point in the source file where <assert.h> is included, the > assert macro is defined simply as > > #define assert(ignore) ((void)0) See also assert.h(0p) from POSIX.1-2017[3]. Note: This is a continuation of commit b408b20c7 ("gcov: fix build failure with gcc 11.1.0") / PR #4373. [1] http://www.open-std.org/JTC1/SC22/WG14/www/docs/n1256.pdf [2] https://port70.net/~nsz/c/c99/n1256.html#7.2 [3] https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/assert.h.html
| * | | gcov: fix indentationLibravatar Kelvin M. Klann2021-06-27
| | | |
* | | | Merge pull request #4369 from pirate486743186/rtvLibravatar netblue302021-06-27
|\ \ \ \ | | | | | | | | | | rtv profile correction
| * | | | Update rtv-addons.profileLibravatar pirate4867431862021-06-22
| | | | |
| * | | | commentsLibravatar pirate4867431862021-06-22
| | | | |
| * | | | correctionsLibravatar pirate4867431862021-06-22
| | | | |