File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
tooling/cli/src/interface Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ ' cli.js ' : patch
3+ ' cli.rs ' : patch
4+ ---
5+
6+ No longer adds the ` pkg-config ` dependency to ` .deb ` packages when the ` systemTray ` is used.
7+ This only works with recent versions of ` libappindicator-sys ` (including https://github.com/tauri-apps/libappindicator-rs/pull/38 ),
8+ so a ` cargo update ` may be necessary if you create ` .deb ` bundles and use the tray feature.
Original file line number Diff line number Diff line change @@ -862,7 +862,6 @@ fn tauri_config_to_bundle_settings(
862862 #[ cfg( target_os = "linux" ) ]
863863 {
864864 if let Some ( system_tray_config) = & system_tray_config {
865- depends. push ( "pkg-config" . to_string ( ) ) ;
866865 let tray = std:: env:: var ( "TAURI_TRAY" ) . unwrap_or_else ( |_| "ayatana" . to_string ( ) ) ;
867866 if tray == "ayatana" {
868867 depends. push ( "libayatana-appindicator3-1" . into ( ) ) ;
You can’t perform that action at this time.
0 commit comments