Levi Portenier
b76a974cfb
Merge pull request #755 from nicolasdanelon/new-tab-current-dir-with-config
...
feat: new tab on current dir with config
2026-04-28 11:40:08 -06:00
Levi Portenier
f5e21f2c98
Merge branch 'master' into new-tab-current-dir-with-config
2026-04-27 16:15:19 -06:00
Jeremy Soller
5879084287
Merge pull request #795 from obeme-qq/fix-zoom-bug
...
fix: change zoom reset scrope to active tab
2026-04-27 15:58:43 -06:00
obeme-qq
f689040c9c
fix: change zoom reset scope to active tab
...
fixed inconsistencies with zoom. Added a separate function for resetting the zoom for the current tab, used it for the ctrl 0 shortcut.
2026-04-27 21:05:31 +03:00
Nicolas Danelon
f3af51df61
Merge branch 'master' into new-tab-current-dir-with-config
2026-04-27 12:37:40 +02:00
Nicolas Danelon
7051cc53f7
Restrict /proc cwd lookup to Linux
2026-04-24 17:49:59 +02:00
Jeremy Soller
18f5f30673
Epoch 1.0.11 version update
...
Generated by cosmic-epoch scripts/version-update.sh
2026-04-21 14:21:35 -06:00
Levi Portenier
c930689b9a
Merge pull request #788 from kenz-gelsoft/fix_issue787
...
fix: Fix find panel of cosmic-term
2026-04-15 12:28:03 -06:00
KENZ
e37f73dcbb
fix: don't capture all mouse events
...
- this fixed find panel buttons
- similar fix for cosmic-edit of:
-
6ea24b8518
2026-04-16 01:03:19 +09:00
Jeremy Soller
95271e183d
Merge pull request #760 from weblate/weblate-pop-os-cosmic-term
...
i18n: translation update from Hosted Weblate
2026-04-14 09:52:30 -06:00
Jeremy Soller
aa0785a744
Merge pull request #782 from chrisglass/fix-clippy
...
Fix clippy warnings
2026-04-13 13:17:37 -06:00
Hosted Weblate
f501935393
i18n: translation updates from weblate
...
Co-authored-by: Academion <m.holzhausen@tutamail.com>
Co-authored-by: Amadɣas <massiin@proton.me>
Co-authored-by: Asier Saratsua Garmendia <asier.sarasua@gmail.com>
Co-authored-by: ButterflyOfFire <boffire@users.noreply.hosted.weblate.org>
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: Jun Hwi Ku <siguning@gmail.com>
Co-authored-by: Priit Jõerüüt <jrthwlate@users.noreply.hosted.weblate.org>
Co-authored-by: Thomas Worofsky <thomas.worofsky@gmail.com>
Co-authored-by: Tommi Nieminen <translator@legisign.org>
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: lorduskordus <lorduskordus@gmail.com>
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-term/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/cs/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/de/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/fi/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/kab/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/ko/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/nb_NO/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/zh_Hans/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/zh_Hant/
Translation: Pop OS/COSMIC Term
2026-04-12 18:50:10 +02:00
Chris Glass
724415b450
Review fix: revert format step name change
2026-04-11 09:06:39 +02:00
Chris Glass
cadbde034b
Bonus: run the tests if we are compiling for clippy
2026-04-10 19:33:32 +02:00
Chris Glass
6ba1ab9e44
Update the clippy github action to install deps
...
Unlike cargo format, clippy needs to actually build the project.
2026-04-10 19:10:56 +02:00
Chris Glass
27e2d682a5
Cargo fmt
2026-04-10 19:06:54 +02:00
Chris Glass
a747b03c17
Bonus: reduce size of Message further
...
Turns out we can reduce the size of Message even further by also boxing
the Config variant.
The size of the Message enum has now dropped from 900+ bytes to 64
bytes.
2026-04-10 19:00:25 +02:00
Chris Glass
14ec8d6760
Add a github action checking for clippy
2026-04-10 18:42:34 +02:00
Chris Glass
b654808734
Ingore clippy warnings about too many arguments
2026-04-10 18:40:26 +02:00
Chris Glass
eca9421e87
We don't need to match for only one case
...
Instead, let's use a simple if statement. If in the future we need to
care about other cases, we can introduce a match statement again.
2026-04-10 18:36:16 +02:00
Chris Glass
72a27129e3
Don't pass the large DialogMessage on the stack
...
Instead, since the size of DialogMessage is allocated in the Message
enum, pass it as a box, so that only the size of a pointer is allocated
on the stack instead.
2026-04-10 18:32:09 +02:00
Chris Glass
f50ece41eb
Fix all auto-fix from clippy
2026-04-10 18:09:25 +02:00
Hojjat
c8b18c2827
chore: update to the latest libcosmic
...
applies iced re-export changes
2026-04-09 12:47:22 -04:00
Hojjat
1d86974682
fix: keep the url in state for menu actions and underline
2026-04-09 12:47:22 -04:00
Hojjat
8b95675c9b
fix: gate wayland features and add inline popover fallback
2026-04-09 12:47:22 -04:00
Hojjat
467998433c
chore: cargo fmt
2026-04-09 12:47:22 -04:00
Hojjat
133c526acd
fix: dismiss context menu when clicking in any pane
2026-04-09 12:47:22 -04:00
Hojjat
0b1490e7ff
fix: use window-absolute coordinates for context menu position in split panes
2026-04-09 12:47:22 -04:00
Hojjat
0575680860
feat: Convert context menu from widget::popover to Wayland popup surface
2026-04-09 12:47:22 -04:00
Jeremy Soller
936e0c0628
Merge pull request #757 from pop-os/epoch-update
...
Epoch 1.0.9 version update
2026-04-07 10:19:48 -06:00
Jeremy Soller
ceb390f5d4
Epoch 1.0.9 version update
...
Generated by cosmic-epoch scripts/version-update.sh
2026-04-07 07:59:44 -06:00
Jeremy Soller
4bf8b83fec
Merge pull request #776 from hoj-jat/hojjat/update-cosmic-text
...
chore: updates for new cosmic-text
2026-04-07 07:58:50 -06:00
Hojjat
81c62faa05
chore: cargo fmt
2026-04-02 09:45:38 -06:00
Hojjat
fd99bb9b55
chore: updates for new cosmic-text
2026-04-01 20:16:02 -06:00
Hojjat
8ae5918ccd
fix: fix the one pixel wide gap between panes
2026-03-27 16:43:45 -04:00
Levi Portenier
7abe927b9c
Merge pull request #766 from hojjatabdollahi/hojjat/fix-tab-style
...
fix(style): add the background color to that tab bar
2026-03-26 15:19:50 -06:00
Hojjat
8203b1e233
fix(style): add the background color to that tab bar
2026-03-24 10:48:58 -06:00
Hojjat
9ed56eb2db
fix: prevent crash when splits are resized too small
2026-03-24 10:32:19 -06:00
Levi Portenier
661d30b567
Merge pull request #767 from hojjatabdollahi/hojjat/fix-space-key
...
fix: only send "space" to the focused pane
2026-03-23 15:37:20 -06:00
Hojjat
1428345cad
fix: only send "space" to the focused pane
2026-03-19 11:44:06 -06:00
Ashley Wulber
f62abcea4e
feat: rebase libcosmic onto iced 0.14
2026-03-18 17:21:57 +01:00
Nicolas Danelon
285556e3dc
Merge branch 'master' into new-tab-current-dir-with-config
2026-03-10 15:57:22 +01:00
Jeremy Soller
adb938420e
Merge pull request #738 from weblate/weblate-pop-os-cosmic-term
...
i18n: translation update from Hosted Weblate
2026-03-09 09:58:52 -06:00
Hosted Weblate
0c238e5280
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: Arve Eriksson <031299870@telia.com>
Co-authored-by: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Co-authored-by: Benmak Kizuna <benmakworkshop@gmail.com>
Co-authored-by: Blubberland <github@alias.kardansch.de>
Co-authored-by: David Carvalho <david.snt.carvalho@gmail.com>
Co-authored-by: Deleted User <noreply+129037@weblate.org>
Co-authored-by: Ettore Atalan <atalanttore@googlemail.com>
Co-authored-by: Fedorov Alexei <aleksejfedorov963@gmail.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: Hosted Weblate user 130202 <yakup@users.noreply.hosted.weblate.org>
Co-authored-by: JPLost <jpahto@gmail.com>
Co-authored-by: Jiri Grönroos <jiri.gronroos@iki.fi>
Co-authored-by: Julien Brouillard <julienbrouillard1@gmail.com>
Co-authored-by: Jun Hwi Ku <siguning@gmail.com>
Co-authored-by: Konstantinos <kostas.lampropoulos94@gmail.com>
Co-authored-by: Marko X <duffsd@gmail.com>
Co-authored-by: Mattias Eriksson <snaggen@gmail.com>
Co-authored-by: Priit Jõerüüt <jrthwlate@users.noreply.hosted.weblate.org>
Co-authored-by: Quentin PAGÈS <quentinantonin@free.fr>
Co-authored-by: Spiritable <contact@tnhd.nl>
Co-authored-by: Tommi Nieminen <translator@legisign.org>
Co-authored-by: VandaL <vandalhj@gmail.com>
Co-authored-by: Vilius Paliokas <viliuspaliokas@gmail.com>
Co-authored-by: Walter William Beckerleg Bruckman <spayk.99@protonmail.com>
Co-authored-by: Zahid Rizky Fakhri <zahidrizkyfakhri@gmail.com>
Co-authored-by: jonnysemon <jonnysemon@users.noreply.hosted.weblate.org>
Co-authored-by: labmem014 <aikachan@posteo.net>
Co-authored-by: lorduskordus <lorduskordus@gmail.com>
Co-authored-by: pbodyMRTF <blinkybill19802012@gmail.com>
Co-authored-by: therealmate <hellogaming91@gmail.com>
Co-authored-by: yakup <mtopac2018@gmail.com>
Co-authored-by: Димко <Term0@ukr.net>
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/ar/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/be/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/cs/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/de/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/el/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/fi/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/fr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/ga/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/hu/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/id/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/kk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/ko/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/lt/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/nl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/oc/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/pa/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/pl/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/ru/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/sv/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/tr/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/uk/
Translate-URL: https://hosted.weblate.org/projects/pop-os/cosmic-term/zh_Hans/
Translation: Pop OS/COSMIC Term
2026-03-08 22:09:50 +00:00
Nicolas Danelon
3eb79556f2
Adding translations to Spanish and Italian
2026-03-06 13:59:16 +01:00
Nicolas Danelon
75714dedee
New tab opens on current directory
...
This patch add a new feature, now tab behavior now inherits the
active tab’s current directory on Linux controlled by a settings
toggle, and default is off
2026-03-06 13:53:46 +01:00
Jeremy Soller
7ce2974273
Merge pull request #752 from chrisglass/add-cargo-fmt-check
...
Introduce a "cargo fmt" github action gate
2026-03-04 10:19:08 -07:00
Jeremy Soller
c9059ed2ba
Merge pull request #751 from chrisglass/fix-copy-link-highlight
...
Fix "Copy link" lingering highlight bug
2026-03-03 11:53:56 -07:00
Chris Glass
8d7b92b1b1
Introduce a "cargo fmt" github action gate
...
This should prevent non-fmt code from hitting the master branch.
2026-02-28 22:39:27 +01:00
Chris Glass
8781276c3f
Fix "Copy link" lingering highlight bug
...
Previously introduced "Copy Link" seems to have missed some changes
added top "Open Link" which results in a lingering "underline" when
copying links.
For some reason the file was not properly formatted acoring to rust-fmt,
so some unrelated formatting changes snuck in.
2026-02-28 22:12:57 +01:00