28e7e2c37e
yoda: use local dbus settings bindings
Continuous Integration / formatting (push) Waiting to run
Continuous Integration / linting (push) Waiting to run
2026-05-25 09:55:11 +02:00
6c24edfae2
chore: align applets with local stack
Continuous Integration / linting (push) Has been cancelled
Continuous Integration / formatting (push) Has been cancelled
2026-05-23 20:49:24 +02:00
Votre Nom
22d6f353f1
fix(wayland): graceful exit on compositor disconnect
...
Continuous Integration / formatting (push) Has been cancelled
Continuous Integration / linting (push) Has been cancelled
Replace 3 panicking unwrap() in cosmic-app-list/wayland_handler.rs
(event loop dispatch + 2 conn.flush in screencopy) with logged
errors that break/return None instead.
Wrap cosmic-applets/main.rs entry point in panic::catch_unwind to
catch panics propagating from libcosmic/iced/winit (which we cannot
patch locally without forking) when the COSMIC compositor closes
the Wayland connection at logout. This eliminates the cascade of
~12 SIGABRT coredumps observed at session shutdown.
Panic strategy is unwind (default), catch_unwind is sound here.
Leyoda 2026 – GPLv3
2026-04-26 11:10:19 +02:00
28010fd260
yoda: smooth animated fisheye for dock hover (phase B v3, closes b)
...
Continuous Integration / formatting (push) Has been cancelled
Continuous Integration / linting (push) Has been cancelled
Inter-icon hover changes were snapping because icon_scale_for read the
hovered icon's real rectangle directly. This adds a small animation
layer so the bell center lerps toward the target and the whole effect
fades in/out at the dock's edges.
CosmicAppList gains three fields:
- anim_hover_center: Option<(f32, f32)> — virtual cursor position,
chases the hovered icon's center across ticks.
- anim_hover_intensity: f32 (0..1) — global fade-in/out of the
fisheye. Target 1.0 while a dock icon is hovered, 0.0 otherwise.
- anim_last_tick: Option<Instant> — for dt-based exponential smoothing
(time-constant tau = 60ms, ~99% of target reached in ~120ms).
A new Message::AnimTick(Instant) is emitted at ~60 fps by a
conditional iced::time::every subscription — only active when the
pointer is over a dock icon OR intensity hasn't faded back to ~0 yet,
so the panel stays idle when no one is hovering the dock.
icon_scale_for now reads anim_hover_center instead of rectangles[hovered]
and multiplies the bell's peak by anim_hover_intensity. Behaviour:
- Pointer slides A → B: bell glides continuously, both icons animate.
- Pointer enters dock: icons inflate smoothly over ~120 ms.
- Pointer leaves dock: icons deflate smoothly over ~120 ms.
Fallback paths (first frame, missing rectangles) still respond
instantly so the feature never looks 'stuck' before the animation
kicks in.
2026-04-24 14:15:43 +02:00
a7cd859317
yoda: fisheye magnification for dock hover (phase B v2 / c)
...
Continuous Integration / formatting (push) Waiting to run
Continuous Integration / linting (push) Waiting to run
Replaces the binary 1.3× hover with a true gaussian bell curve — the
hovered icon still peaks at ~1.35×, but the ±1 neighbours also bulge
noticeably, ±2 a bit, and ±3+ relax to 1.0×. Footprint ~5 icons wide,
matching the macOS Dock fisheye feel.
Implementation in fn icon_scale_for(id):
- Reads the hovered icon's and the current icon's bounds from
self.rectangles (already populated by the existing RectangleTracker
subscription — no new plumbing).
- Distance = |this_center - hovered_center| along the panel's long axis
(horizontal for Top/Bottom anchors, vertical for Left/Right).
- sigma = hovered_extent * 1.4 so the bell's half-width matches one
icon width (neighbors clearly pulled, far icons untouched).
- scale = 1.0 + PEAK * exp(-(d/sigma)²) with PEAK = 0.35.
- Falls back to binary 1.35×/1.0× when rectangle data isn't populated
yet (first render / resize) — visibly responsive even before the
tracker catches up.
No widget signature changes vs v1, just a smarter formula. All five
as_icon call sites already pass the result of icon_scale_for so this
update propagates everywhere.
Still on the TODO list: smooth animation (b). Right now icon→icon
transitions snap instantly; a smoothed_hover_center + tick subscription
would lerp it. Deferred to a follow-up commit.
2026-04-24 13:13:52 +02:00
5cb0dbb0c5
yoda: dock icon hover magnification (macOS Tahoe-style, phase B v1)
...
Continuous Integration / formatting (push) Waiting to run
Continuous Integration / linting (push) Waiting to run
First pass at the signature macOS Dock effect — the icon under the
pointer grows, adjacent icons stay at base size. Full fisheye (smooth
bell-curve scaling on neighbors) can be a later iteration.
Changes in cosmic-app-list/src/app.rs:
- CosmicAppList gains a hovered_dock_item: Option<DockItemId>
auto-initialized to None via #[derive(Default)].
- New Message::DockItemHover(Option<DockItemId>) handled in update()
by just writing the field; view() then reads it to decide scale.
- DockItem::as_icon gains an icon_scale: f32 parameter. Inside it the
cosmic_icon width/height = (base_icon_size * icon_scale) clamped
to u16; indicator dot and other surrounding layout stay at base
size so only the icon visually bulges.
- New App::icon_scale_for(id) helper: 1.3 if Some(id) == hovered,
1.0 otherwise. Single place to tune the magnification factor.
- The two main dock rows (favorites + filtered_active_list) wrap
their rendered applet_tooltip in widget::mouse_area with
on_enter(DockItemHover(Some(id))) / on_exit(DockItemHover(None))
and call icon_scale_for before rendering.
- The three remaining as_icon call sites (DnD preview, favorites
overflow popup, active overflow popup) pass icon_scale = 1.0 —
hover magnification on those surfaces would look jittery and isn't
needed anyway.
Build: cargo build --release -p cosmic-app-list (≈ 7s). Binary
installed at /usr/local/bin/cosmic-app-list, backup kept as
.pre-magnification.
2026-04-24 12:39:19 +02:00
Ashley Wulber
1d0e662365
chore: cargo fmt
2026-04-16 15:27:25 -06:00
Ashley Wulber
e125ae0b58
update libcosmic after reexports are removed
2026-04-16 15:27:25 -06:00
Hosted Weblate
f66a8971b8
i18n: translation updates from weblate
...
Co-authored-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
Co-authored-by: Amadɣas <massiin@proton.me>
Co-authored-by: Anonymous <noreply@weblate.org>
Co-authored-by: Asier Saratsua Garmendia <asier.sarasua@gmail.com>
Co-authored-by: ButterflyOfFire <boffire@users.noreply.hosted.weblate.org>
Co-authored-by: David Carvalho <david.snt.carvalho@gmail.com>
Co-authored-by: Deleted User <noreply+129037@weblate.org>
Co-authored-by: Deleted User <noreply+85233@weblate.org>
Co-authored-by: Dmitry Yarygin <dmitryy7@gmail.com>
Co-authored-by: Ettore Atalan <atalanttore@googlemail.com>
Co-authored-by: Feike Donia <feikedonia@proton.me>
Co-authored-by: Geeson Wan <wang14240@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Hugo Carvalho <hugokarvalho@hotmail.com>
Co-authored-by: Julien Brouillard <julienbrouillard1@gmail.com>
Co-authored-by: Jun Hwi Ku <siguning@gmail.com>
Co-authored-by: Nara Díaz Viñolas <nara.diaz.vinolas@gmail.com>
Co-authored-by: Thomas Worofsky <thomas.worofsky@gmail.com>
Co-authored-by: Urocissa Caerulea.Tw <urocissa.tw@proton.me>
Co-authored-by: Walter William Beckerleg Bruckman <spayk.99@protonmail.com>
Co-authored-by: defaultUser822 <defaultuser822@users.noreply.hosted.weblate.org>
Co-authored-by: jonnysemon <jonnysemon@users.noreply.hosted.weblate.org>
Co-authored-by: oddib <60390653+oddib@users.noreply.github.com>
Co-authored-by: taijuin Lee <taijuin@gmail.com>
Co-authored-by: therealmate <hellogaming91@gmail.com>
Co-authored-by: 麋麓 BigELK176 <BigELK176@gmail.com>
Co-authored-by: 김유빈 <k.sein1016@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/de/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-a11y/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/ca/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/pt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/nb_NO/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/de/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/pt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/kab/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/nb_NO/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/ru/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/de/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/kab/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/pt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-time/kab/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/de/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/fr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/ko/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/pt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-input-sources-applet/pt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-workspaces-applet/pt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-workspaces-applet/pt_BR/
Translation: Pop OS/COSMIC Accessibility Applet
Translation: Pop OS/COSMIC App List Applet
Translation: Pop OS/COSMIC Applets Desktop Entries
Translation: Pop OS/COSMIC Battery Applet
Translation: Pop OS/COSMIC Bluetooth Applet
Translation: Pop OS/COSMIC Input Sources Applet
Translation: Pop OS/COSMIC Network Applet
Translation: Pop OS/COSMIC Notifications Applet
Translation: Pop OS/COSMIC Power Applet
Translation: Pop OS/COSMIC Tiling Applet
Translation: Pop OS/COSMIC Time Applet
Translation: Pop OS/COSMIC Workspaces Applet
2026-04-12 18:50:17 +02:00
Jeremy Soller
fa682cb812
feat(app-list): implement workspace and configured-output filtering ( #1236 )
2026-04-09 15:15:02 -06:00
Ashley Wulber
71d9d6d5bb
chore: updates after iced-rebase
2026-03-31 22:34:59 +02:00
José DE SOUSA
79621c1955
feat: add middle mouse button support to close toplevel applications
2026-03-26 17:04:36 -04:00
Hosted Weblate
3601a878bf
i18n: translation updates from weblate
...
Co-authored-by: Amadɣas <massiin@proton.me>
Co-authored-by: Aman Alam <aalam@users.noreply.hosted.weblate.org>
Co-authored-by: Anonymous <noreply@weblate.org>
Co-authored-by: ButterflyOfFire <boffire@users.noreply.hosted.weblate.org>
Co-authored-by: David Carvalho <david.snt.carvalho@gmail.com>
Co-authored-by: Ettore Atalan <atalanttore@googlemail.com>
Co-authored-by: Geeson Wan <wang14240@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Hugo Carvalho <hugokarvalho@hotmail.com>
Co-authored-by: Jiri Grönroos <jiri.gronroos@iki.fi>
Co-authored-by: Joonas Tuomi <joonastapanituomi@gmail.com>
Co-authored-by: Tommi Nieminen <translator@legisign.org>
Co-authored-by: Urocissa Caerulea.Tw <urocissa.tw@proton.me>
Co-authored-by: Walter William Beckerleg Bruckman <spayk.99@protonmail.com>
Co-authored-by: taijuin Lee <taijuin@gmail.com>
Co-authored-by: Димко <Dymkovych@proton.me>
Co-authored-by: 麋麓 BigELK176 <BigELK176@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/fi/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/kab/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/pt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-a11y/kab/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-a11y/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-a11y/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/kab/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/kab/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/pt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/fi/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/kab/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/pt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/de/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/kab/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/kab/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/pt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/fi/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/kab/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/pa/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/fi/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-time/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-time/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/de/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/fi/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/kab/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/pt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-input-sources-applet/kab/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-input-sources-applet/pt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-input-sources-applet/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-input-sources-applet/zh_Hant/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-workspaces-applet/kab/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-workspaces-applet/zh_Hant/
Translation: Pop OS/COSMIC Accessibility Applet
Translation: Pop OS/COSMIC App List Applet
Translation: Pop OS/COSMIC Applets Desktop Entries
Translation: Pop OS/COSMIC Audio Applet
Translation: Pop OS/COSMIC Battery Applet
Translation: Pop OS/COSMIC Bluetooth Applet
Translation: Pop OS/COSMIC Input Sources Applet
Translation: Pop OS/COSMIC Network Applet
Translation: Pop OS/COSMIC Notifications Applet
Translation: Pop OS/COSMIC Power Applet
Translation: Pop OS/COSMIC Tiling Applet
Translation: Pop OS/COSMIC Time Applet
Translation: Pop OS/COSMIC Workspaces Applet
2026-03-23 15:11:12 +01:00
Hosted Weblate
6b1ecc5448
i18n: translation updates from weblate
...
Co-authored-by: Aindriú Mac Giolla Eoin <aindriu80@gmail.com>
Co-authored-by: Aman Alam <aalam@users.noreply.hosted.weblate.org>
Co-authored-by: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Co-authored-by: Ettore Atalan <atalanttore@googlemail.com>
Co-authored-by: Geeson Wan <wang14240@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Jiri Grönroos <jiri.gronroos@iki.fi>
Co-authored-by: Joonas Tuomi <joonastapanituomi@gmail.com>
Co-authored-by: Julien Brouillard <julienbrouillard1@gmail.com>
Co-authored-by: Tommi Nieminen <translator@legisign.org>
Co-authored-by: Vilius Paliokas <viliuspaliokas@gmail.com>
Co-authored-by: Zahid Rizky Fakhri <zahidrizkyfakhri@gmail.com>
Co-authored-by: jonnysemon <jonnysemon@users.noreply.hosted.weblate.org>
Co-authored-by: lorduskordus <lorduskordus@gmail.com>
Co-authored-by: Димко <Term0@ukr.net>
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/cs/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/fr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/ga/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/pa/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-a11y/lt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-a11y/pa/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-a11y/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/fi/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/pa/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/pa/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/pa/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/de/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/fi/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/pa/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/pa/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/fr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/lt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/pa/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/pa/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-time/pa/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/de/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/fr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/ga/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/kk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/lt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/pa/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-input-sources-applet/pa/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-workspaces-applet/pa/
Translation: Pop OS/COSMIC Accessibility Applet
Translation: Pop OS/COSMIC App List Applet
Translation: Pop OS/COSMIC Applets Desktop Entries
Translation: Pop OS/COSMIC Audio Applet
Translation: Pop OS/COSMIC Battery Applet
Translation: Pop OS/COSMIC Bluetooth Applet
Translation: Pop OS/COSMIC Input Sources Applet
Translation: Pop OS/COSMIC Network Applet
Translation: Pop OS/COSMIC Notifications Applet
Translation: Pop OS/COSMIC Power Applet
Translation: Pop OS/COSMIC Tiling Applet
Translation: Pop OS/COSMIC Time Applet
Translation: Pop OS/COSMIC Workspaces Applet
2026-03-08 10:10:40 +01:00
Michael Murphy
28e76e2ce9
i18n: translation update from Hosted Weblate ( #1334 )
2026-03-04 00:00:54 +01:00
Vukašin Vojinović
7029fcccf6
Use ellipsizing and replace chrono with jiff ( #1323 )
...
* refactor(time): use `jiff` instead of `chrono`
* improv: use text ellipsizing
2026-03-03 15:57:49 -07:00
Hosted Weblate
b1e3b49c0a
i18n: translation updates from weblate
...
Co-authored-by: David Carvalho <david.snt.carvalho@gmail.com>
Co-authored-by: Fedorov Alexei <aleksejfedorov963@gmail.com>
Co-authored-by: Geeson Wan <wang14240@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Jiri Grönroos <jiri.gronroos@iki.fi>
Co-authored-by: Joonas Tuomi <joonastapanituomi@gmail.com>
Co-authored-by: Tommi Nieminen <translator@legisign.org>
Co-authored-by: Zahid Rizky Fakhri <zahidrizkyfakhri@gmail.com>
Co-authored-by: therealmate <hellogaming91@gmail.com>
Co-authored-by: Димко <Term0@ukr.net>
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/ru/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/fi/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/fi/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/ru/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applets-desktop-entries/zh_Hans/
Translation: Pop OS/COSMIC App List Applet
Translation: Pop OS/COSMIC Applets Desktop Entries
Translation: Pop OS/COSMIC Power Applet
2026-03-03 23:15:53 +01:00
Michael Murphy
9ce90a740a
i18n: translate desktop entries with xdgen ( #1328 )
2026-03-02 11:33:29 -07:00
Hosted Weblate
cf753d56a9
i18n: translation updates from weblate
...
Co-authored-by: Aindriú Mac Giolla Eoin <aindriu80@gmail.com>
Co-authored-by: Anonymous <noreply@weblate.org>
Co-authored-by: Because789 <hubiontheroad@yahoo.com>
Co-authored-by: Ettore Atalan <atalanttore@googlemail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Hosted Weblate user 130202 <yakup@users.noreply.hosted.weblate.org>
Co-authored-by: Jiri Grönroos <jiri.gronroos@iki.fi>
Co-authored-by: Joonas Tuomi <joonastapanituomi@gmail.com>
Co-authored-by: Konstantinos <kostas.lampropoulos94@gmail.com>
Co-authored-by: Michael Murphy <michael@mmurphy.dev>
Co-authored-by: Muha Aliss <muhaaliss@users.noreply.hosted.weblate.org>
Co-authored-by: Quentin PAGÈS <quentinantonin@free.fr>
Co-authored-by: Walter William Beckerleg Bruckman <spayk.99@protonmail.com>
Co-authored-by: jonnysemon <jonnysemon@users.noreply.hosted.weblate.org>
Co-authored-by: yakup <mtopac2018@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/el/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/fi/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/tr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-a11y/fi/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/fi/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/tr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/fi/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/ga/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/tr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/de/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/el/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/fi/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/oc/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/tr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/de/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/el/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/fi/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/oc/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/tr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/de/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/fi/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/tr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/de/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/el/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/fi/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/ga/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/tr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/de/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/fi/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/tr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-time/fi/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-time/tr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-input-sources-applet/fi/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-input-sources-applet/tr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-workspaces-applet/fi/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-workspaces-applet/pt_BR/
Translation: Pop OS/COSMIC Accessibility Applet
Translation: Pop OS/COSMIC App List Applet
Translation: Pop OS/COSMIC Audio Applet
Translation: Pop OS/COSMIC Battery Applet
Translation: Pop OS/COSMIC Bluetooth Applet
Translation: Pop OS/COSMIC Input Sources Applet
Translation: Pop OS/COSMIC Network Applet
Translation: Pop OS/COSMIC Notifications Applet
Translation: Pop OS/COSMIC Power Applet
Translation: Pop OS/COSMIC Tiling Applet
Translation: Pop OS/COSMIC Time Applet
Translation: Pop OS/COSMIC Workspaces Applet
2026-03-02 16:12:36 +00:00
Hosted Weblate
45cb645ff8
i18n: translation updates from weblate
...
Co-authored-by: Aliaksandr Truš <evils.mail@gmail.com>
Co-authored-by: Because789 <hubiontheroad@yahoo.com>
Co-authored-by: Benmak Kizuna <benmakworkshop@gmail.com>
Co-authored-by: David Carvalho <david.snt.carvalho@gmail.com>
Co-authored-by: Ettore Atalan <atalanttore@googlemail.com>
Co-authored-by: Feike Donia <feikedonia@proton.me>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Marko X <duffsd@gmail.com>
Co-authored-by: Mateus Liberale Gomes <sergiogomes209403@gmail.com>
Co-authored-by: Vilius Paliokas <viliuspaliokas@gmail.com>
Co-authored-by: Walter William Beckerleg Bruckman <spayk.99@protonmail.com>
Co-authored-by: Yauhen <bugomol@users.noreply.hosted.weblate.org>
Co-authored-by: Ziad El-sayed <ziadelsayed1797@tutamail.com>
Co-authored-by: jonnysemon <jonnysemon@users.noreply.hosted.weblate.org>
Co-authored-by: Димко <Term0@ukr.net>
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/de/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/lt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-a11y/de/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-a11y/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/de/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/de/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/be/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/lt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/lt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/be/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/lt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-time/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-input-sources-applet/nl/
Translation: Pop OS/COSMIC Accessibility Applet
Translation: Pop OS/COSMIC App List Applet
Translation: Pop OS/COSMIC Audio Applet
Translation: Pop OS/COSMIC Battery Applet
Translation: Pop OS/COSMIC Bluetooth Applet
Translation: Pop OS/COSMIC Input Sources Applet
Translation: Pop OS/COSMIC Network Applet
Translation: Pop OS/COSMIC Notifications Applet
Translation: Pop OS/COSMIC Power Applet
Translation: Pop OS/COSMIC Tiling Applet
Translation: Pop OS/COSMIC Time Applet
2026-02-23 12:11:53 +01:00
Hosted Weblate
4c670f28f8
i18n: translation updates from weblate
...
Co-authored-by: Because789 <hubiontheroad@yahoo.com>
Co-authored-by: Benmak Kizuna <benmakworkshop@gmail.com>
Co-authored-by: David Carvalho <david.snt.carvalho@gmail.com>
Co-authored-by: Ettore Atalan <atalanttore@googlemail.com>
Co-authored-by: Feike Donia <feikedonia@proton.me>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Mateus Liberale Gomes <sergiogomes209403@gmail.com>
Co-authored-by: Walter William Beckerleg Bruckman <spayk.99@protonmail.com>
Co-authored-by: Ziad El-sayed <ziadelsayed1797@tutamail.com>
Co-authored-by: jonnysemon <jonnysemon@users.noreply.hosted.weblate.org>
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/de/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-a11y/de/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/de/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/de/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/pt_BR/
Translation: Pop OS/COSMIC Accessibility Applet
Translation: Pop OS/COSMIC App List Applet
Translation: Pop OS/COSMIC Audio Applet
Translation: Pop OS/COSMIC Battery Applet
Translation: Pop OS/COSMIC Bluetooth Applet
Translation: Pop OS/COSMIC Network Applet
2026-02-17 10:10:56 +00:00
Dymkom
3ca8be5a6e
Update com.system76.CosmicAppList.desktop
...
Add Ukrainian translation
2026-02-11 19:39:21 +02:00
Hosted Weblate
707c92473f
i18n: translation updates from weblate
...
Co-authored-by: Aliaksandr Truš <evils.mail@gmail.com>
Co-authored-by: Anonymous <noreply@weblate.org>
Co-authored-by: David Carvalho <david.snt.carvalho@gmail.com>
Co-authored-by: Fedorov Alexei <aleksejfedorov963@gmail.com>
Co-authored-by: Feike Donia <feikedonia@proton.me>
Co-authored-by: Hafidz Nasruddin <hafidz@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Languages add-on <noreply-addon-languages@weblate.org>
Co-authored-by: Quentin PAGÈS <quentinantonin@free.fr>
Co-authored-by: Yauhen <bugomol@users.noreply.hosted.weblate.org>
Co-authored-by: Yelysei <yelysei.matviienko@proton.me>
Co-authored-by: Zahid Rizky Fakhri <zahidrizkyfakhri@gmail.com>
Co-authored-by: jickson john <jickson.john@gmail.com>
Co-authored-by: jonnysemon <jonnysemon@users.noreply.hosted.weblate.org>
Co-authored-by: Димко <Term0@ukr.net>
Co-authored-by: кубик круглый <megarainbow29@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/ru/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-a11y/be/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-a11y/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-a11y/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-a11y/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/ru/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/ru/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/be/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/ru/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/be/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/be/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/fr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/ru/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/ru/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-time/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-time/ru/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-input-sources-applet/be/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-input-sources-applet/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-workspaces-applet/id/
Translation: Pop OS/COSMIC Accessibility Applet
Translation: Pop OS/COSMIC App List Applet
Translation: Pop OS/COSMIC Audio Applet
Translation: Pop OS/COSMIC Battery Applet
Translation: Pop OS/COSMIC Bluetooth Applet
Translation: Pop OS/COSMIC Input Sources Applet
Translation: Pop OS/COSMIC Network Applet
Translation: Pop OS/COSMIC Notifications Applet
Translation: Pop OS/COSMIC Power Applet
Translation: Pop OS/COSMIC Tiling Applet
Translation: Pop OS/COSMIC Time Applet
Translation: Pop OS/COSMIC Workspaces Applet
2026-02-09 20:28:14 +01:00
Hosted Weblate
57e55a98a0
i18n: translation updates from weblate
...
Co-authored-by: Aliaksandr Truš <evils.mail@gmail.com>
Co-authored-by: Anonymous <noreply@weblate.org>
Co-authored-by: David Carvalho <david.snt.carvalho@gmail.com>
Co-authored-by: Hafidz Nasruddin <hafidz@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Languages add-on <noreply-addon-languages@weblate.org>
Co-authored-by: Quentin PAGÈS <quentinantonin@free.fr>
Co-authored-by: Yauhen <bugomol@users.noreply.hosted.weblate.org>
Co-authored-by: Yelysei <yelysei.matviienko@proton.me>
Co-authored-by: Zahid Rizky Fakhri <zahidrizkyfakhri@gmail.com>
Co-authored-by: Димко <Term0@ukr.net>
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-a11y/be/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-a11y/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-a11y/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/be/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/be/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/be/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-time/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-input-sources-applet/be/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-input-sources-applet/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-workspaces-applet/id/
Translation: Pop OS/COSMIC Accessibility Applet
Translation: Pop OS/COSMIC App List Applet
Translation: Pop OS/COSMIC Audio Applet
Translation: Pop OS/COSMIC Battery Applet
Translation: Pop OS/COSMIC Bluetooth Applet
Translation: Pop OS/COSMIC Input Sources Applet
Translation: Pop OS/COSMIC Network Applet
Translation: Pop OS/COSMIC Notifications Applet
Translation: Pop OS/COSMIC Power Applet
Translation: Pop OS/COSMIC Tiling Applet
Translation: Pop OS/COSMIC Time Applet
Translation: Pop OS/COSMIC Workspaces Applet
2026-02-02 22:58:00 +01:00
Hosted Weblate
87a7b3b88f
i18n: translation updates from weblate
...
Co-authored-by: Anonymous <noreply@weblate.org>
Co-authored-by: David Carvalho <david.snt.carvalho@gmail.com>
Co-authored-by: Hafidz Nasruddin <hafidz@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Languages add-on <noreply-addon-languages@weblate.org>
Co-authored-by: Yelysei <yelysei.matviienko@proton.me>
Co-authored-by: Zahid Rizky Fakhri <zahidrizkyfakhri@gmail.com>
Co-authored-by: Димко <Term0@ukr.net>
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-a11y/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-time/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-input-sources-applet/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-workspaces-applet/id/
Translation: Pop OS/COSMIC Accessibility Applet
Translation: Pop OS/COSMIC App List Applet
Translation: Pop OS/COSMIC Audio Applet
Translation: Pop OS/COSMIC Battery Applet
Translation: Pop OS/COSMIC Bluetooth Applet
Translation: Pop OS/COSMIC Input Sources Applet
Translation: Pop OS/COSMIC Network Applet
Translation: Pop OS/COSMIC Notifications Applet
Translation: Pop OS/COSMIC Power Applet
Translation: Pop OS/COSMIC Tiling Applet
Translation: Pop OS/COSMIC Time Applet
Translation: Pop OS/COSMIC Workspaces Applet
2026-01-30 21:12:26 +01:00
Jeremy Soller
055befb30a
Merge branch 'master' into bulgarian
2026-01-27 10:38:05 -07:00
Hosted Weblate
cf5f36176c
i18n: translation updates from weblate
...
Co-authored-by: Aman Alam <aalam@users.noreply.hosted.weblate.org>
Co-authored-by: Anonymous <noreply@weblate.org>
Co-authored-by: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Co-authored-by: David Carvalho <david.snt.carvalho@gmail.com>
Co-authored-by: Geeson Wan <wang14240@gmail.com>
Co-authored-by: Gyro Zeppeli <omazurenko@proton.me>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Jacques Hakvoort <jacques.hakvoort@nedap.com>
Co-authored-by: Jun Hwi Ku <siguning@gmail.com>
Co-authored-by: Stepan Denysenko <stepden04@gmail.com>
Co-authored-by: Walter William Beckerleg Bruckman <spayk.99@protonmail.com>
Co-authored-by: Yelysei <yelysei.matviienko@proton.me>
Co-authored-by: gift983 <983649@my.leicestercollege.ac.uk>
Co-authored-by: lorduskordus <lorduskordus@gmail.com>
Co-authored-by: summoner001 <summoner@disroot.org>
Co-authored-by: therealmate <hellogaming91@gmail.com>
Co-authored-by: Димко <Term0@ukr.net>
Co-authored-by: 铺盖崽 <i@pugai.life>
Co-authored-by: 김유빈 <k.sein1016@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/kk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/ko/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-a11y/kk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-a11y/ko/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-a11y/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-a11y/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/kk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/ko/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/kk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/ko/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/kk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/ko/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/kk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/ko/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/kk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/ko/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/cs/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/kk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/ko/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/cs/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/kk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/ko/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-time/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-time/kk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-time/ko/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-input-sources-applet/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-input-sources-applet/kk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-input-sources-applet/ko/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-workspaces-applet/kk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-workspaces-applet/ko/
Translation: Pop OS/COSMIC Accessibility Applet
Translation: Pop OS/COSMIC App List Applet
Translation: Pop OS/COSMIC Audio Applet
Translation: Pop OS/COSMIC Battery Applet
Translation: Pop OS/COSMIC Bluetooth Applet
Translation: Pop OS/COSMIC Input Sources Applet
Translation: Pop OS/COSMIC Network Applet
Translation: Pop OS/COSMIC Notifications Applet
Translation: Pop OS/COSMIC Power Applet
Translation: Pop OS/COSMIC Tiling Applet
Translation: Pop OS/COSMIC Time Applet
Translation: Pop OS/COSMIC Workspaces Applet
2026-01-27 08:42:17 +01:00
Levi Portenier
80836cb941
Merge branch 'master' into tobsch/app-list-filtering
2026-01-22 15:27:15 -07:00
lucamosca1
4a84269158
Update com.system76.CosmicAppList.desktop
2026-01-21 09:43:40 -07:00
Hosted Weblate
37b1a877a6
i18n: translation updates from weblate
...
Co-authored-by: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Mateus Liberale Gomes <sergiogomes209403@gmail.com>
Co-authored-by: Walter William Beckerleg Bruckman <spayk.99@protonmail.com>
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/pt_BR/
Translation: Pop OS/COSMIC Notifications Applet
Translation: Pop OS/COSMIC Tiling Applet
2026-01-16 10:13:16 -07:00
Michael Aaron Murphy
f06c6a0b80
chore: update dependencies and debian changelog
2026-01-13 15:33:04 -05:00
Ashley Wulber
1ff85a8a1e
chore: update dependencies
2026-01-09 21:41:16 +01:00
Hosted Weblate
6534939ba6
i18n: translation updates from weblate
...
Co-authored-by: Anonymous <noreply@weblate.org>
Co-authored-by: Geeson Wan <wang14240@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Walter William Beckerleg Bruckman <spayk.99@protonmail.com>
Co-authored-by: therealmate <hellogaming91@gmail.com>
Co-authored-by: 铺盖崽 <i@pugai.life>
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-a11y/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-a11y/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-time/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-input-sources-applet/hu/
Translation: Pop OS/COSMIC Accessibility Applet
Translation: Pop OS/COSMIC App List Applet
Translation: Pop OS/COSMIC Audio Applet
Translation: Pop OS/COSMIC Battery Applet
Translation: Pop OS/COSMIC Bluetooth Applet
Translation: Pop OS/COSMIC Input Sources Applet
Translation: Pop OS/COSMIC Network Applet
Translation: Pop OS/COSMIC Notifications Applet
Translation: Pop OS/COSMIC Power Applet
Translation: Pop OS/COSMIC Tiling Applet
Translation: Pop OS/COSMIC Time Applet
2026-01-06 20:35:32 +01:00
Tobias Schaffner
8ea267abfe
feat(app-list): implement workspace and configured-output filtering
...
Implement optional filtering of apps by active workspace or configured
output. The filter_top_levels config option accepts None (no filtering),
ActiveWorkspace (workspace-only), or ConfiguredOutput (monitor and
workspace filtering).
Signed-off-by: Tobias Schaffner <tobiasschaffner87@outlook.com>
2026-01-01 17:57:25 +01:00
Michael Murphy
869ee06cfe
i18n: removing translation for Frankish
2025-12-30 08:45:29 -07:00
Hosted Weblate
5e0208e779
i18n: translation updates from weblate
...
Co-authored-by: Aindriú Mac Giolla Eoin <aindriu80@gmail.com>
Co-authored-by: Amadɣas <massiin@proton.me>
Co-authored-by: Anonymous <noreply@weblate.org>
Co-authored-by: Arve Eriksson <031299870@telia.com>
Co-authored-by: David Carvalho <david.snt.carvalho@gmail.com>
Co-authored-by: Guilherme Aiolfi <gradinf@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Mateus Liberale Gomes <sergiogomes209403@gmail.com>
Co-authored-by: Vilius Paliokas <viliuspaliokas@gmail.com>
Co-authored-by: therealmate <hellogaming91@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-a11y/lt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/ga/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/sv/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/lt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/lt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/lt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-input-sources-applet/lt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-workspaces-applet/lt/
Translation: Pop OS/COSMIC Accessibility Applet
Translation: Pop OS/COSMIC App List Applet
Translation: Pop OS/COSMIC Audio Applet
Translation: Pop OS/COSMIC Battery Applet
Translation: Pop OS/COSMIC Input Sources Applet
Translation: Pop OS/COSMIC Network Applet
Translation: Pop OS/COSMIC Notifications Applet
Translation: Pop OS/COSMIC Power Applet
Translation: Pop OS/COSMIC Tiling Applet
Translation: Pop OS/COSMIC Workspaces Applet
2025-12-30 08:45:29 -07:00
Vukašin Vojinović
7a2bad8f34
feat(app-list): close toplevel button
2025-12-30 08:34:00 +01:00
Vukašin Vojinović
90a46e915a
chore: update dependencies
2025-12-30 08:34:00 +01:00
Vukašin Vojinović
018a326f89
chore: bump versions to 1.0.0
2025-12-30 08:34:00 +01:00
Hosted Weblate
e2dcfeac7c
i18n: translation updates from weblate
...
Co-authored-by: Aindriú Mac Giolla Eoin <aindriu80@gmail.com>
Co-authored-by: Anonymous <noreply@weblate.org>
Co-authored-by: David Carvalho <david.snt.carvalho@gmail.com>
Co-authored-by: Ekramul Reza <ekramulreza@users.noreply.hosted.weblate.org>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Temuri Doghonadze <temuri.doghonadze@gmail.com>
Co-authored-by: Vilius Paliokas <viliuspaliokas@gmail.com>
Co-authored-by: jonnysemon <jonnysemon@users.noreply.hosted.weblate.org>
Co-authored-by: zefr0x <zer0-x.7ty50@aleeas.com>
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/ga/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/lt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-a11y/ga/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/ga/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/lt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/ga/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/ga/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/lt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/ga/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/lt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/ga/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/lt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/ga/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/lt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/ga/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/lt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-time/ga/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-time/lt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-input-sources-applet/ga/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-workspaces-applet/ga/
Translation: Pop OS/COSMIC Accessibility Applet
Translation: Pop OS/COSMIC App List Applet
Translation: Pop OS/COSMIC Audio Applet
Translation: Pop OS/COSMIC Battery Applet
Translation: Pop OS/COSMIC Bluetooth Applet
Translation: Pop OS/COSMIC Input Sources Applet
Translation: Pop OS/COSMIC Network Applet
Translation: Pop OS/COSMIC Notifications Applet
Translation: Pop OS/COSMIC Power Applet
Translation: Pop OS/COSMIC Tiling Applet
Translation: Pop OS/COSMIC Time Applet
Translation: Pop OS/COSMIC Workspaces Applet
2025-12-16 16:50:23 +01:00
Hosted Weblate
0838a29544
i18n: translation updates from weblate
...
Co-authored-by: Aindriú Mac Giolla Eoin <aindriu80@gmail.com>
Co-authored-by: Anonymous <noreply@weblate.org>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Ziad El-sayed <ziadelsayed1797@tutamail.com>
Co-authored-by: jonnysemon <jonnysemon@users.noreply.hosted.weblate.org>
Co-authored-by: lorduskordus <lorduskordus@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/ga/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/ga/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/cs/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/ga/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/ga/
Translation: Pop OS/COSMIC App List Applet
Translation: Pop OS/COSMIC Battery Applet
Translation: Pop OS/COSMIC Bluetooth Applet
Translation: Pop OS/COSMIC Network Applet
Translation: Pop OS/COSMIC Notifications Applet
Translation: Pop OS/COSMIC Power Applet
2025-12-09 16:16:47 +01:00
Hosted Weblate
f3f8b9d8cf
i18n: translation updates from weblate
...
Co-authored-by: Arve Eriksson <031299870@telia.com>
Co-authored-by: CYAXXX <cyaxxx@users.noreply.hosted.weblate.org>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Julien Brouillard <julienbrouillard1@gmail.com>
Co-authored-by: Mattias Eriksson <snaggen@gmail.com>
Co-authored-by: Omer I.S. <omeritzicschwartz@gmail.com>
Co-authored-by: VandaL <vandalhj@gmail.com>
Co-authored-by: Ziad El-sayed <ziadelsayed1797@tutamail.com>
Co-authored-by: jonnysemon <jonnysemon@users.noreply.hosted.weblate.org>
Co-authored-by: lorduskordus <lorduskordus@gmail.com>
Co-authored-by: therealmate <hellogaming91@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/fr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/cs/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/fr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/he/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/cs/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/fr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/pl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/sv/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/fr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-input-sources-applet/ar/
Translation: Pop OS/COSMIC App List Applet
Translation: Pop OS/COSMIC Audio Applet
Translation: Pop OS/COSMIC Battery Applet
Translation: Pop OS/COSMIC Bluetooth Applet
Translation: Pop OS/COSMIC Input Sources Applet
Translation: Pop OS/COSMIC Network Applet
Translation: Pop OS/COSMIC Notifications Applet
Translation: Pop OS/COSMIC Power Applet
Translation: Pop OS/COSMIC Tiling Applet
2025-12-05 09:18:23 -07:00
twlvnn
6476ea0052
i18n(bg): updated app tray translation
2025-11-25 14:24:50 +01:00
Hosted Weblate
71da01a66d
i18n: translation updates from weblate
...
Co-authored-by: Arve Eriksson <031299870@telia.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Julien Brouillard <julienbrouillard1@gmail.com>
Co-authored-by: Mattias Eriksson <snaggen@gmail.com>
Co-authored-by: VandaL <vandalhj@gmail.com>
Co-authored-by: Ziad El-sayed <ziadelsayed1797@tutamail.com>
Co-authored-by: jonnysemon <jonnysemon@users.noreply.hosted.weblate.org>
Co-authored-by: lorduskordus <lorduskordus@gmail.com>
Co-authored-by: therealmate <hellogaming91@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/fr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/cs/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/fr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/cs/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/fr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/pl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/sv/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/fr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-input-sources-applet/ar/
Translation: Pop OS/COSMIC App List Applet
Translation: Pop OS/COSMIC Audio Applet
Translation: Pop OS/COSMIC Battery Applet
Translation: Pop OS/COSMIC Bluetooth Applet
Translation: Pop OS/COSMIC Input Sources Applet
Translation: Pop OS/COSMIC Network Applet
Translation: Pop OS/COSMIC Notifications Applet
Translation: Pop OS/COSMIC Power Applet
Translation: Pop OS/COSMIC Tiling Applet
2025-11-24 07:35:23 -07:00
Ashley Wulber
3e4f68b3d0
fix(app-tray): window id for active list overflow icon buttons
2025-11-20 17:26:29 +01:00
Ashley Wulber
ba20b1268d
fix(app-tray): overflow popup active list calculation
2025-11-20 17:26:29 +01:00
Hosted Weblate
0c3fd9571a
i18n: translation updates from weblate
...
Co-authored-by: ANTOINE Daniel <univac55@gmail.com>
Co-authored-by: Aisyk <aisyko@gmail.com>
Co-authored-by: Anonymous <noreply@weblate.org>
Co-authored-by: Arve Eriksson <031299870@telia.com>
Co-authored-by: Feike Donia <feikedonia@proton.me>
Co-authored-by: GerardWassink <gerard.wassink@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Julien Brouillard <julienbrouillard1@gmail.com>
Co-authored-by: Michael Murphy <michael@mmurphy.dev>
Co-authored-by: VandaL <vandalhj@gmail.com>
Co-authored-by: jonnysemon <jonnysemon@users.noreply.hosted.weblate.org>
Co-authored-by: lorduskordus <lorduskordus@gmail.com>
Co-authored-by: therealmate <hellogaming91@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/fr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-a11y/fr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-a11y/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/fr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-audio/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/fr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/fr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-bluetooth/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/cs/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/fr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/pl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/sv/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/fr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/fr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/fr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-time/fr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-input-sources-applet/nl/
Translation: Pop OS/COSMIC Accessibility Applet
Translation: Pop OS/COSMIC App List Applet
Translation: Pop OS/COSMIC Audio Applet
Translation: Pop OS/COSMIC Battery Applet
Translation: Pop OS/COSMIC Bluetooth Applet
Translation: Pop OS/COSMIC Input Sources Applet
Translation: Pop OS/COSMIC Network Applet
Translation: Pop OS/COSMIC Notifications Applet
Translation: Pop OS/COSMIC Power Applet
Translation: Pop OS/COSMIC Tiling Applet
Translation: Pop OS/COSMIC Time Applet
2025-11-18 21:31:12 +01:00
Weblate (bot)
1e27c3f2f4
i18n: translation updates from weblate ( #1141 )
...
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-app-list/bg/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-battery/bg/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/bg/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-network/he/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-notifications/bg/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/cs/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-power/he/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-tiling/bg/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-applet-time/bg/
Translation: Pop OS/COSMIC App List Applet
Translation: Pop OS/COSMIC Battery Applet
Translation: Pop OS/COSMIC Network Applet
Translation: Pop OS/COSMIC Notifications Applet
Translation: Pop OS/COSMIC Power Applet
Translation: Pop OS/COSMIC Tiling Applet
Translation: Pop OS/COSMIC Time Applet
Co-authored-by: Aleks Gerenski <agerenski@hotmail.com>
Co-authored-by: Feike Donia <feikedonia@proton.me>
Co-authored-by: Roi Gabay <roigby@gmail.com>
Co-authored-by: lorduskordus <lorduskordus@gmail.com>
Co-authored-by: twlvnn kraftwerk <kraft_werk@tutanota.com>
2025-11-12 10:21:49 -07:00
Ashley Wulber
836c0e378b
applet overlap
...
chore: mpris dep
fix: dock buttons
improv: battery and audio improvements
feat: overlapping padding
fix: input source text button
fix: apply panel spacing to app tray
chore: update libcosmic
fix: spacing and padding
fix(minimize): hide when empty
2025-11-11 16:49:48 -05:00
twlvnn
4fa0ea082e
i18n(bg): update desktop info
2025-11-09 11:27:31 +01:00