mirror of
https://git.outfoxxed.me/quickshell/quickshell.git
synced 2026-04-10 06:11:54 +10:00
Compare commits
No commits in common. "26531fc46ef17e9365b03770edd3fb9206fcb460" and "d24e8e9736287d01ee73ef9d573d2bc316a62d5c" have entirely different histories.
26531fc46e
...
d24e8e9736
4 changed files with 2 additions and 5 deletions
|
|
@ -28,7 +28,6 @@ set shell id.
|
||||||
- Fixed volumes not initializing if a pipewire device was already loaded before its node.
|
- Fixed volumes not initializing if a pipewire device was already loaded before its node.
|
||||||
- Fixed hyprland active toplevel not resetting after window closes.
|
- Fixed hyprland active toplevel not resetting after window closes.
|
||||||
- Fixed hyprland ipc window names and titles being reversed.
|
- Fixed hyprland ipc window names and titles being reversed.
|
||||||
- Fixed missing signals for system tray item title and description updates.
|
|
||||||
|
|
||||||
## Packaging Changes
|
## Packaging Changes
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
}: let
|
}: let
|
||||||
unwrapped = stdenv.mkDerivation {
|
unwrapped = stdenv.mkDerivation {
|
||||||
pname = "quickshell${lib.optionalString debug "-debug"}";
|
pname = "quickshell${lib.optionalString debug "-debug"}";
|
||||||
version = "0.2.1";
|
version = "0.2.0";
|
||||||
src = nix-gitignore.gitignoreSource "/default.nix\n" ./.;
|
src = nix-gitignore.gitignoreSource "/default.nix\n" ./.;
|
||||||
|
|
||||||
dontWrapQtApps = true; # see wrappers
|
dontWrapQtApps = true; # see wrappers
|
||||||
|
|
|
||||||
|
|
@ -461,7 +461,7 @@ int runCommand(int argc, char** argv, QCoreApplication* coreApplication) {
|
||||||
QTextStream(stdout) << "\033[31mCOMPATIBILITY WARNING: Quickshell was built against Qt "
|
QTextStream(stdout) << "\033[31mCOMPATIBILITY WARNING: Quickshell was built against Qt "
|
||||||
<< QT_VERSION_STR << " but the system has updated to Qt " << qVersion()
|
<< QT_VERSION_STR << " but the system has updated to Qt " << qVersion()
|
||||||
<< " without rebuilding the package. This is likely to cause crashes, so "
|
<< " without rebuilding the package. This is likely to cause crashes, so "
|
||||||
"you must rebuild the quickshell package.\n\033[0m";
|
"you must rebuild the quickshell package.\n";
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -207,8 +207,6 @@ private:
|
||||||
QS_BINDING_SUBSCRIBE_METHOD(StatusNotifierItem, bOverlayIconPixmaps, updatePixmapIndex, onValueChanged);
|
QS_BINDING_SUBSCRIBE_METHOD(StatusNotifierItem, bOverlayIconPixmaps, updatePixmapIndex, onValueChanged);
|
||||||
QS_BINDING_SUBSCRIBE_METHOD(StatusNotifierItem, bAttentionIconPixmaps, updatePixmapIndex, onValueChanged);
|
QS_BINDING_SUBSCRIBE_METHOD(StatusNotifierItem, bAttentionIconPixmaps, updatePixmapIndex, onValueChanged);
|
||||||
QS_BINDING_SUBSCRIBE_METHOD(StatusNotifierItem, bMenuPath, onMenuPathChanged, onValueChanged);
|
QS_BINDING_SUBSCRIBE_METHOD(StatusNotifierItem, bMenuPath, onMenuPathChanged, onValueChanged);
|
||||||
QS_BINDING_SUBSCRIBE_METHOD(StatusNotifierItem, bTooltip, tooltipTitleChanged, onValueChanged);
|
|
||||||
QS_BINDING_SUBSCRIBE_METHOD(StatusNotifierItem, bTooltip, tooltipDescriptionChanged, onValueChanged);
|
|
||||||
Q_OBJECT_BINDABLE_PROPERTY(StatusNotifierItem, quint32, pixmapIndex);
|
Q_OBJECT_BINDABLE_PROPERTY(StatusNotifierItem, quint32, pixmapIndex);
|
||||||
Q_OBJECT_BINDABLE_PROPERTY(StatusNotifierItem, QString, bIcon, &StatusNotifierItem::iconChanged);
|
Q_OBJECT_BINDABLE_PROPERTY(StatusNotifierItem, QString, bIcon, &StatusNotifierItem::iconChanged);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue