-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
06d8101
commit 25b0f2e
Showing
9 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
Submodule cosmic-applibrary
updated
2 files
+19 −0 | i18n/pl/cosmic_app_library.ftl | |
+19 −0 | i18n/uk/cosmic_app_library.ftl |
Submodule cosmic-comp
updated
13 files
+13 −13 | Cargo.lock | |
+1 −1 | Cargo.toml | |
+23 −0 | resources/i18n/pl/cosmic_comp.ftl | |
+23 −0 | resources/i18n/uk/cosmic_comp.ftl | |
+130 −23 | src/shell/element/stack.rs | |
+1 −1 | src/shell/grabs/menu/default.rs | |
+28 −37 | src/shell/grabs/moving.rs | |
+50 −3 | src/shell/layout/floating/mod.rs | |
+5 −1 | src/shell/layout/mod.rs | |
+26 −48 | src/shell/layout/tiling/mod.rs | |
+49 −20 | src/shell/mod.rs | |
+3 −5 | src/shell/workspace.rs | |
+7 −2 | src/wayland/protocols/drm.rs |
Submodule cosmic-edit
updated
19 files
+78 −87 | Cargo.lock | |
+8 −1 | i18n/en/cosmic_edit.ftl | |
+21 −2 | i18n/es/cosmic_edit.ftl | |
+10 −0 | i18n/it/cosmic_edit.ftl | |
+91 −0 | i18n/ja/cosmic_edit.ftl | |
+9 −2 | i18n/pl/cosmic_edit.ftl | |
+8 −1 | i18n/ru/cosmic_edit.ftl | |
+21 −4 | i18n/tr/cosmic_edit.ftl | |
+37 −10 | i18n/uk/cosmic_edit.ftl | |
+3 −0 | res/icons/edit-clear-symbolic.svg | |
+3 −0 | res/icons/go-up-symbolic.svg | |
+7 −0 | res/icons/replace-all-symbolic.svg | |
+5 −0 | res/icons/replace-symbolic.svg | |
+6 −0 | src/config.rs | |
+4 −0 | src/icon_cache.rs | |
+243 −30 | src/main.rs | |
+2 −2 | src/menu.rs | |
+90 −0 | src/tab.rs | |
+215 −97 | src/text_box.rs |
Submodule cosmic-files
updated
15 files
+69 −76 | Cargo.lock | |
+2 −3 | Cargo.toml | |
+26 −0 | i18n/cs/cosmic_files.ftl | |
+22 −1 | i18n/en/cosmic_files.ftl | |
+22 −1 | i18n/pl/cosmic_files.ftl | |
+47 −0 | i18n/pt/cosmic_files.ftl | |
+47 −0 | i18n/pt_BR/cosmic_files.ftl | |
+47 −0 | i18n/ru/cosmic_files.ftl | |
+23 −0 | i18n/sr-Cyrl/cosmic_files.ftl | |
+23 −0 | i18n/sr-Latn/cosmic_files.ftl | |
+47 −0 | i18n/uk/cosmic_files.ftl | |
+26 −0 | i18n/zh-cn/cosmic_files.ftl | |
+233 −73 | src/main.rs | |
+131 −35 | src/menu.rs | |
+210 −67 | src/tab.rs |
Submodule cosmic-launcher
updated
6 files
+1 −0 | i18n/es/cosmic_launcher.ftl | |
+1 −0 | i18n/fr/cosmic_launcher.ftl | |
+1 −0 | i18n/it/cosmic_launcher.ftl | |
+1 −0 | i18n/ja/cosmic_launcher.ftl | |
+1 −0 | i18n/pl/cosmic_launcher.ftl | |
+1 −0 | uk/cosmic_launcher.ftl |
Submodule cosmic-notifications
updated
4 files
+1 −0 | i18n/pl/cosmic_notifications.ftl | |
+1 −0 | i18n/sr-Cyrl/cosmic_notifications.ftl | |
+0 −0 | i18n/sr-Latn/cosmic_notifications.ftl | |
+1 −0 | i18n/uk/cosmic_notifications.ftl |
Submodule cosmic-session
updated
7 files
+16 −0 | Cargo.lock | |
+1 −0 | Cargo.toml | |
+26 −20 | data/start-cosmic | |
+1 −1 | debian/control | |
+98 −39 | src/main.rs | |
+11 −12 | src/notifications.rs | |
+35 −17 | src/systemd.rs |
Submodule cosmic-term
updated
21 files
+73 −77 | Cargo.lock | |
+3 −0 | Cargo.toml | |
+69 −1 | ansi-colors.sh | |
+7 −0 | debian/postinst | |
+3 −0 | debian/prerm | |
+29 −2 | i18n/en/cosmic_term.ftl | |
+29 −2 | i18n/pl/cosmic_term.ftl | |
+31 −3 | i18n/ru/cosmic_term.ftl | |
+23 −2 | i18n/sr-Cyrl/cosmic_term.ftl | |
+23 −2 | i18n/sr-Latn/cosmic_term.ftl | |
+3 −0 | res/icons/edit-clear-symbolic.svg | |
+3 −0 | res/icons/go-down-symbolic.svg | |
+3 −0 | res/icons/go-up-symbolic.svg | |
+3 −0 | res/icons/window-close-symbolic.svg | |
+34 −2 | src/config.rs | |
+49 −0 | src/icon_cache.rs | |
+556 −74 | src/main.rs | |
+68 −3 | src/menu.rs | |
+245 −17 | src/terminal.rs | |
+360 −50 | src/terminal_box.rs | |
+139 −66 | src/terminal_theme.rs |