-
Notifications
You must be signed in to change notification settings - Fork 16.2k
fix: use gio as default linux trash impl #15399
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
docs/api/environment-variables.md
Outdated
@@ -80,6 +80,16 @@ Don't attach to the current console session. | |||
|
|||
Don't use the global menu bar on Linux. | |||
|
|||
### `ELECTRON_DEFAULT_TRASH` _Linux_ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
### `ELECTRON_DEFAULT_TRASH` _Linux_ | |
### `ELECTRON_TRASH` _Linux_ |
The environment variable is ELECTRON_TRASH
, the C++ compiler macro used to define the default trash implementation is ELECTRON_DEFAULT_TRASH
.
Otherwise looks good to me, thanks for working on this. :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh whoops, thanks for catching this; fixed!
773642c
to
0a308ab
Compare
* `trash-cli` | ||
* `kioclient5` | ||
* `kioclient` | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Release Notes Persisted
|
We have automatically backported this PR to "3-0-x", please check out #15421 |
We have automatically backported this PR to "4-0-x", please check out #15422 |
Description of Change
Resolves #15011.
Switches the default trash implementation away from
gvfs-trash
togio trash
now thatgvfs-trash
has ben largely deprecated and is no longer appropriate as the default./cc @ckerr @eli-schwartz
Checklist
npm test
passesRelease Notes
Notes: fix default trash impl on linux to use gio