-
Notifications
You must be signed in to change notification settings - Fork 108
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
Showing
7 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
Submodule cosmic-applets
updated
26 files
+143 −164 | Cargo.lock | |
+3 −2 | applet/Cargo.toml | |
+60 −6 | applet/src/lib.rs | |
+1 −1 | cosmic-app-list/Cargo.toml | |
+10 −0 | cosmic-app-list/src/app.rs | |
+2 −2 | cosmic-applet-audio/Cargo.toml | |
+25 −16 | cosmic-applet-audio/src/main.rs | |
+2 −2 | cosmic-applet-battery/Cargo.toml | |
+15 −6 | cosmic-applet-battery/src/app.rs | |
+1 −1 | cosmic-applet-bluetooth/Cargo.toml | |
+14 −3 | cosmic-applet-bluetooth/src/app.rs | |
+2 −1 | cosmic-applet-graphics/Cargo.toml | |
+1 −0 | cosmic-applet-graphics/src/main.rs | |
+16 −2 | cosmic-applet-graphics/src/window.rs | |
+2 −2 | cosmic-applet-network/Cargo.toml | |
+15 −3 | cosmic-applet-network/src/app.rs | |
+2 −2 | cosmic-applet-notifications/Cargo.toml | |
+15 −1 | cosmic-applet-notifications/src/main.rs | |
+1 −1 | cosmic-applet-power/Cargo.toml | |
+21 −9 | cosmic-applet-power/src/main.rs | |
+2 −2 | cosmic-applet-time/Cargo.toml | |
+17 −1 | cosmic-applet-time/src/main.rs | |
+1 −1 | cosmic-applet-workspaces/Cargo.toml | |
+14 −15 | cosmic-applet-workspaces/src/components/app.rs | |
+1 −1 | cosmic-panel-button/Cargo.toml | |
+19 −3 | cosmic-panel-button/src/main.rs |
Submodule cosmic-applibrary
updated
21 files
+223 −207 | Cargo.lock | |
+2 −1 | Cargo.toml | |
+1 −1 | LICENSE.md | |
+1 −2 | debian/control | |
+3 −3 | i18n/cs/cosmic_app_library.ftl | |
+8 −4 | i18n/en/cosmic_app_library.ftl | |
+2 −2 | i18n/es/cosmic_app_library.ftl | |
+4 −4 | i18n/fa/cosmic_app_library.ftl | |
+4 −4 | i18n/fr/cosmic_app_library.ftl | |
+4 −4 | i18n/ko/cosmic_app_library.ftl | |
+4 −4 | i18n/pt-BR/cosmic_app_library.ftl | |
+4 −4 | i18n/sr/cosmic_app_library.ftl | |
+3 −3 | i18n/tr/cosmic_app_library.ftl | |
+3 −3 | i18n/zh-CN/cosmic_app_library.ftl | |
+1 −1 | rust-toolchain | |
+634 −227 | src/app.rs | |
+331 −13 | src/app_group.rs | |
+1 −0 | src/main.rs | |
+478 −0 | src/widgets/application.rs | |
+511 −0 | src/widgets/group.rs | |
+2 −0 | src/widgets/mod.rs |
Submodule cosmic-bg
updated
14 files
+340 −89 | Cargo.lock | |
+20 −11 | Cargo.toml | |
+21 −22 | README.md | |
+5 −3 | config/Cargo.toml | |
+125 −60 | config/src/lib.rs | |
+1 −2 | debian/control | |
+4 −0 | justfile | |
+1 −0 | rust-toolchain | |
+87 −0 | src/colored.rs | |
+101 −0 | src/draw.rs | |
+6 −5 | src/img_source.rs | |
+264 −557 | src/main.rs | |
+64 −0 | src/scaler.rs | |
+302 −0 | src/wallpaper.rs |
Submodule cosmic-comp
updated
13 files
+10 −10 | src/shell/element/mod.rs | |
+87 −45 | src/shell/element/surface.rs | |
+3 −3 | src/shell/element/window.rs | |
+10 −2 | src/shell/focus/mod.rs | |
+1 −1 | src/shell/layout/floating/grabs/resize.rs | |
+1 −1 | src/shell/layout/floating/mod.rs | |
+78 −103 | src/shell/layout/tiling/mod.rs | |
+23 −6 | src/shell/mod.rs | |
+3 −3 | src/shell/workspace.rs | |
+25 −3 | src/state.rs | |
+61 −0 | src/wayland/handlers/fractional_scale.rs | |
+1 −0 | src/wayland/handlers/mod.rs | |
+3 −3 | src/wayland/handlers/toplevel_info.rs |
Submodule cosmic-launcher
updated
7 files
+175 −227 | Cargo.lock | |
+4 −3 | Cargo.toml | |
+1 −1 | rust-toolchain | |
+144 −74 | src/components/app.rs | |
+1 −1 | src/main.rs | |
+1 −1 | src/process.rs | |
+4 −4 | src/subscriptions/launcher.rs |
Submodule cosmic-panel
updated
9 files
Submodule cosmic-settings
updated
17 files
+130 −188 | Cargo.lock | |
+0 −2 | Cargo.toml | |
+28 −7 | README.md | |
+1 −1 | app/Cargo.toml | |
+13 −9 | app/src/app.rs | |
+40 −21 | app/src/main.rs | |
+13 −12 | app/src/pages/desktop/panel/applets.rs | |
+2 −2 | app/src/pages/desktop/panel/mod.rs | |
+0 −389 | app/src/pages/desktop/wallpaper.rs | |
+622 −0 | app/src/pages/desktop/wallpaper/mod.rs | |
+113 −0 | app/src/pages/desktop/wallpaper/widgets.rs | |
+1 −1 | app/src/theme.rs | |
+7 −13 | app/src/widget/mod.rs | |
+3 −1 | i18n/en/cosmic_settings.ftl | |
+217 −0 | i18n/fa/cosmic_settings.ftl | |
+2 −4 | justfile | |
+175 −8 | pages/desktop/src/wallpaper.rs |