Skip to content

Commit 5adb2f5

Browse files
authored
Merge branch 'main' into bf_pal_key
2 parents 6aead8d + 5a63f29 commit 5adb2f5

27 files changed

+598
-38
lines changed

NEWS

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
Version 0.10.0
2+
~~~~~~~~~~~~~
3+
Released: 2026-XX-XX
4+
5+
Features:
6+
* Add status icon mode setting in Preferences (no icon, normal, blinking).
7+
* [#711] Add macOS menu bar status item (NSStatusItem) with system tray icon.
8+
19
Version 0.9.4
210
~~~~~~~~~~~~~
311
Released: 2025-02-17

meson.build

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,13 @@ endif
1717
if (cc.has_argument('-Wno-c99-designator'))
1818
add_project_arguments('-Wno-c99-designator', language : 'cpp')
1919
endif
20-
if host_machine.system() == 'darwin' and get_option('werror')
21-
add_project_arguments('-U_LIBCPP_ENABLE_ASSERTIONS', language: 'cpp')
20+
if host_machine.system() == 'darwin'
21+
add_languages('objcpp')
22+
add_project_arguments('-DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_70', language : 'objcpp')
23+
if get_option('werror')
24+
add_project_arguments('-U_LIBCPP_ENABLE_ASSERTIONS', language: 'cpp')
25+
add_project_arguments('-U_LIBCPP_ENABLE_ASSERTIONS', language: 'objcpp')
26+
endif
2227
endif
2328

2429
so_version = 2
1000 Bytes
Loading
1.61 KB
Loading
1.83 KB
Loading
2.84 KB
Loading
5.36 KB
Loading
7.72 KB
Loading
7.72 KB
Loading

snap/snapcraft.yaml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ apps:
1818
extensions: [gnome]
1919
slots:
2020
- dbus-iptux
21-
plugs: [home, network, gsettings, unity7]
21+
plugs: [home, network, gsettings]
2222

2323
parts:
2424
iptux:
@@ -35,13 +35,7 @@ parts:
3535
appstream,
3636
]
3737
plugin: meson
38-
meson-parameters: ["--prefix=/snap/iptux/current/usr"]
39-
override-pull: |
40-
craftctl default
41-
override-build: |
42-
craftctl default
43-
organize:
44-
snap/iptux/current/usr: usr
38+
meson-parameters: ["--prefix=/usr"]
4539
stage-packages:
4640
- libjsoncpp25
4741
- libsigc++-2.0-0v5

0 commit comments

Comments
 (0)