-
Notifications
You must be signed in to change notification settings - Fork 93
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
cfadb5d
commit 86dcd15
Showing
17 changed files
with
17 additions
and
17 deletions.
There are no files selected for viewing
Submodule cosmic-applets
updated
29 files
Submodule cosmic-applibrary
updated
9 files
+475 −396 | Cargo.lock | |
+7 −3 | Cargo.toml | |
+2 −0 | i18n/en/cosmic_app_library.ftl | |
+158 −206 | src/app.rs | |
+1 −62 | src/app_group.rs | |
+0 −1 | src/main.rs | |
+0 −31 | src/process.rs | |
+21 −27 | src/widgets/application.rs | |
+17 −18 | src/widgets/group.rs |
Submodule cosmic-bg
updated
11 files
+938 −265 | Cargo.lock | |
+10 −10 | Cargo.toml | |
+19 −6 | README.md | |
+3 −3 | config/Cargo.toml | |
+87 −77 | config/src/lib.rs | |
+1 −3 | config/src/state.rs | |
+2 −0 | debian/control | |
+19 −1 | justfile | |
+23 −15 | src/main.rs | |
+11 −7 | src/scaler.rs | |
+29 −1 | src/wallpaper.rs |
Submodule cosmic-comp
updated
18 files
+7 −18 | Cargo.lock | |
+1 −1 | Cargo.toml | |
+0 −1 | config.ron | |
+1 −1 | cosmic-comp-config/Cargo.toml | |
+32 −1 | cosmic-comp-config/src/lib.rs | |
+0 −8 | cosmic-comp-config/src/workspace.rs | |
+8 −6 | src/backend/kms/mod.rs | |
+6 −2 | src/backend/render/mod.rs | |
+2 −1 | src/backend/x11.rs | |
+55 −25 | src/config/mod.rs | |
+37 −6 | src/input/mod.rs | |
+41 −1 | src/main.rs | |
+24 −19 | src/session.rs | |
+193 −263 | src/shell/mod.rs | |
+31 −15 | src/shell/workspace.rs | |
+3 −1 | src/wayland/handlers/output.rs | |
+20 −0 | src/wayland/handlers/workspace.rs | |
+99 −4 | src/wayland/protocols/workspace.rs |
Submodule cosmic-edit
updated
15 files
+780 −676 | Cargo.lock | |
+11 −12 | Cargo.toml | |
+2 −2 | README.md | |
+18 −18 | i18n/ja/cosmic_edit.ftl | |
+9 −2 | i18n/sk/cosmic_edit.ftl | |
+10 −3 | i18n/sr-Cyrl/cosmic_edit.ftl | |
+10 −3 | i18n/sr-Latn/cosmic_edit.ftl | |
+24 −9 | i18n/sv-SE/cosmic_edit.ftl | |
+1 −1 | justfile | |
+1 −1 | src/config.rs | |
+52 −37 | src/key_bind.rs | |
+100 −49 | src/main.rs | |
+57 −62 | src/menu.rs | |
+1 −1 | src/tab.rs | |
+38 −45 | src/text_box.rs |
Submodule cosmic-files
updated
18 files
+658 −656 | Cargo.lock | |
+12 −4 | Cargo.toml | |
+113 −0 | examples/dialog.rs | |
+4 −0 | i18n/en/cosmic_files.ftl | |
+18 −2 | i18n/pl/cosmic_files.ftl | |
+16 −0 | i18n/ru/cosmic_files.ftl | |
+63 −0 | i18n/sv/sv.ftl | |
+63 −0 | i18n/tr/cosmic_files.ftl | |
+1,327 −0 | src/app.rs | |
+25 −0 | src/config.rs | |
+647 −0 | src/dialog.rs | |
+29 −18 | src/key_bind.rs | |
+79 −0 | src/lib.rs | |
+1 −1,142 | src/main.rs | |
+13 −5 | src/menu.rs | |
+88 −20 | src/mouse_area.rs | |
+2 −2 | src/operation.rs | |
+358 −32 | src/tab.rs |
Submodule cosmic-greeter
updated
23 files
+3 −0 | .gitignore | |
+19 −0 | Cargo.lock | |
+39 −19 | Cargo.toml | |
+2 −2 | cosmic-greeter.toml | |
+20 −0 | daemon/Cargo.toml | |
+18 −0 | daemon/src/lib.rs | |
+215 −0 | daemon/src/main.rs | |
+14 −0 | dbus/com.system76.CosmicGreeter.conf | |
+16 −1 | debian/control | |
+2 −0 | debian/cosmic-greeter-daemon.install | |
+9 −0 | debian/cosmic-greeter-daemon.service | |
+43 −0 | debian/cosmic-greeter.config | |
+1 −0 | debian/cosmic-greeter.install | |
+74 −0 | debian/cosmic-greeter.postinst | |
+64 −0 | debian/cosmic-greeter.prerm | |
+5 −4 | debian/cosmic-greeter.service | |
+20 −0 | debian/cosmic-greeter.templates | |
+2 −1 | debian/rules | |
+1 −1 | examples/pam.rs | |
+10 −2 | justfile | |
+425 −81 | src/greeter.rs | |
+1 −1 | src/locker.rs | |
+1 −1 | src/main.rs |
Submodule cosmic-launcher
updated
9 files
+515 −384 | Cargo.lock | |
+10 −5 | Cargo.toml | |
+1 −0 | i18n/sv/cosmic-launcher.ftl | |
+1 −0 | i18n/uk/cosmic_launcher.ftl | |
+398 −268 | src/components/app.rs | |
+1 −1 | src/components/mod.rs | |
+0 −1 | src/main.rs | |
+0 −33 | src/process.rs | |
+12 −0 | src/subscriptions/launcher.rs |
Submodule cosmic-panel
updated
4 files
+126 −104 | Cargo.lock | |
+3 −2 | Cargo.toml | |
+2 −2 | cosmic-panel-bin/Cargo.toml | |
+7 −12 | cosmic-panel-bin/src/space/panel_space.rs |
Submodule cosmic-settings
updated
24 files
+447 −395 | Cargo.lock | |
+0 −1 | Cargo.toml | |
+2 −0 | app/Cargo.toml | |
+6 −5 | app/src/app.rs | |
+1 −1 | app/src/pages/desktop/dock/applets.rs | |
+1 −3 | app/src/pages/desktop/mod.rs | |
+33 −40 | app/src/pages/desktop/panel/applets_inner.rs | |
+1 −0 | app/src/pages/desktop/panel/inner.rs | |
+36 −18 | app/src/pages/desktop/wallpaper/mod.rs | |
+11 −5 | app/src/pages/desktop/wallpaper/widgets.rs | |
+2 −52 | app/src/pages/desktop/workspaces.rs | |
+20 −16 | app/src/pages/display/arrangement.rs | |
+0 −0 | app/src/pages/display/graphics.rs | |
+0 −0 | app/src/pages/display/mod.rs | |
+0 −0 | app/src/pages/display/text.rs | |
+6 −3 | app/src/pages/input/keyboard/mod.rs | |
+3 −3 | app/src/pages/input/mod.rs | |
+2 −1 | app/src/pages/mod.rs | |
+0 −16 | app/src/pages/system/about.rs | |
+13 −7 | app/src/theme.rs | |
+3 −3 | i18n/en/cosmic_settings.ftl | |
+75 −0 | i18n/pl/cosmic_settings.ftl | |
+333 −83 | i18n/sv/cosmic_settings.ftl | |
+8 −4 | pages/wallpapers/src/lib.rs |
Submodule cosmic-store
updated
12 files
+660 −706 | Cargo.lock | |
+5 −4 | Cargo.toml | |
+11 −0 | i18n/es/cosmic_store.ftl | |
+11 −0 | i18n/fr/cosmic_store.ftl | |
+11 −0 | i18n/it/cosmic_store.ftl | |
+11 −0 | i18n/ja/cosmic_store.ftl | |
+11 −0 | i18n/nl/cosmic_store.ftl | |
+11 −0 | i18n/sv/cosmic_store.ftl | |
+11 −0 | i18n/tr/cosmic_store.ftl | |
+4 −0 | justfile | |
+15 −8 | src/key_bind.rs | |
+9 −9 | src/main.rs |
Submodule cosmic-term
updated
21 files
+622 −687 | Cargo.lock | |
+7 −1 | Cargo.toml | |
+1 −0 | debian/control | |
+35 −14 | i18n/en/cosmic_term.ftl | |
+33 −16 | i18n/ja/cosmic_term.ftl | |
+27 −10 | i18n/pl/cosmic_term.ftl | |
+29 −12 | i18n/ru/cosmic_term.ftl | |
+67 −0 | i18n/sv-SE/cosmic_term.ftl | |
+79 −0 | i18n/tr/cosmic-term.ftl | |
+5 −1 | justfile | |
+4 −0 | res/icons/edit-delete-symbolic.svg | |
+3 −0 | res/icons/list-add-symbolic.svg | |
+79 −11 | src/config.rs | |
+2 −0 | src/icon_cache.rs | |
+51 −40 | src/key_bind.rs | |
+609 −202 | src/main.rs | |
+20 −4 | src/menu.rs | |
+239 −0 | src/mouse_reporter.rs | |
+156 −68 | src/terminal.rs | |
+399 −527 | src/terminal_box.rs | |
+318 −2 | src/terminal_theme.rs |
Submodule cosmic-workspaces-epoch
updated
10 files
+438 −426 | Cargo.lock | |
+8 −3 | src/main.rs | |
+23 −13 | src/view/mod.rs | |
+11 −7 | src/wayland/buffer.rs | |
+5 −4 | src/widgets/image_bg.rs | |
+5 −5 | src/widgets/mod.rs | |
+5 −5 | src/widgets/mouse_interaction_wrapper.rs | |
+10 −12 | src/widgets/toplevels.rs | |
+8 −9 | src/widgets/workspace_bar.rs | |
+15 −14 | src/widgets/workspace_item.rs |
Submodule xdg-desktop-portal-cosmic
updated
11 files
+797 −545 | Cargo.lock | |
+6 −3 | Cargo.toml | |
+57 −0 | examples/screencast.rs | |
+3 −1 | src/app.rs | |
+20 −9 | src/buffer.rs | |
+4 −3 | src/screencast.rs | |
+68 −22 | src/screencast_thread.rs | |
+29 −22 | src/wayland/mod.rs | |
+18 −16 | src/widget/output_selection.rs | |
+24 −21 | src/widget/rectangle_selection.rs | |
+33 −35 | src/widget/screenshot.rs |