Skip to content

Commit

Permalink
Update submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
jackpot51 committed Mar 25, 2024
1 parent 5f2fd33 commit 408aa60
Show file tree
Hide file tree
Showing 20 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion cosmic-applets
Submodule cosmic-applets updated 153 files
2 changes: 1 addition & 1 deletion cosmic-applibrary
2 changes: 1 addition & 1 deletion cosmic-bg
2 changes: 1 addition & 1 deletion cosmic-comp
Submodule cosmic-comp updated 81 files
+990 −349 Cargo.lock
+77 −51 Cargo.toml
+1 −0 config.ron
+6 −7 resources/i18n/sr-Cyrl/cosmic_comp.ftl
+6 −7 resources/i18n/sr-Latn/cosmic_comp.ftl
+23 −0 resources/i18n/tr/cosmic_comp.ftl
+1 −1 rust-toolchain.toml
+438 −296 src/backend/kms/mod.rs
+1 −1 src/backend/kms/socket.rs
+1 −0 src/backend/render/animations/mod.rs
+138 −0 src/backend/render/animations/spring.rs
+95 −52 src/backend/render/cursor.rs
+106 −20 src/backend/render/element.rs
+181 −160 src/backend/render/mod.rs
+3 −19 src/backend/winit.rs
+6 −23 src/backend/x11.rs
+1 −0 src/config/key_bindings.rs
+29 −10 src/config/mod.rs
+66 −0 src/dbus/mod.rs
+86 −0 src/dbus/power.rs
+20 −53 src/debug.rs
+176 −0 src/input/gestures/mod.rs
+339 −144 src/input/mod.rs
+40 −2 src/main.rs
+26 −22 src/shell/element/mod.rs
+8 −5 src/shell/element/resize_indicator.rs
+322 −217 src/shell/element/stack.rs
+94 −86 src/shell/element/stack/tab.rs
+120 −99 src/shell/element/stack/tab_text.rs
+122 −162 src/shell/element/stack/tabs.rs
+8 −5 src/shell/element/stack_hover.rs
+292 −425 src/shell/element/surface.rs
+8 −5 src/shell/element/swap_indicator.rs
+267 −62 src/shell/element/window.rs
+53 −46 src/shell/focus/mod.rs
+20 −5 src/shell/grabs/menu/default.rs
+29 −43 src/shell/grabs/menu/item.rs
+91 −94 src/shell/grabs/menu/mod.rs
+192 −29 src/shell/grabs/moving.rs
+18 −16 src/shell/layout/floating/grabs/resize.rs
+292 −118 src/shell/layout/floating/mod.rs
+5 −5 src/shell/layout/mod.rs
+10 −2 src/shell/layout/tiling/grabs/swap.rs
+517 −269 src/shell/layout/tiling/mod.rs
+649 −216 src/shell/mod.rs
+362 −75 src/shell/workspace.rs
+188 −193 src/state.rs
+1 −1 src/theme.rs
+11 −9 src/utils/iced.rs
+3 −4 src/utils/screenshot.rs
+15 −3 src/wayland/handlers/buffer.rs
+75 −86 src/wayland/handlers/compositor.rs
+37 −44 src/wayland/handlers/decoration.rs
+29 −5 src/wayland/handlers/dmabuf.rs
+27 −6 src/wayland/handlers/drm.rs
+4 −0 src/wayland/handlers/image_source.rs
+1 −1 src/wayland/handlers/input_method.rs
+2 −15 src/wayland/handlers/layer_shell.rs
+1 −1 src/wayland/handlers/mod.rs
+0 −1,334 src/wayland/handlers/screencopy.rs
+415 −0 src/wayland/handlers/screencopy/mod.rs
+864 −0 src/wayland/handlers/screencopy/render.rs
+357 −0 src/wayland/handlers/screencopy/user_data.rs
+8 −1 src/wayland/handlers/seat.rs
+3 −3 src/wayland/handlers/security_context.rs
+2 −2 src/wayland/handlers/session_lock.rs
+4 −4 src/wayland/handlers/toplevel_info.rs
+167 −12 src/wayland/handlers/toplevel_management.rs
+0 −5 src/wayland/handlers/wl_drm.rs
+6 −1 src/wayland/handlers/workspace.rs
+20 −11 src/wayland/handlers/xdg_activation.rs
+49 −42 src/wayland/handlers/xdg_shell/mod.rs
+10 −10 src/wayland/handlers/xdg_shell/popup.rs
+1 −1 src/wayland/handlers/xwayland_keyboard_grab.rs
+20 −14 src/wayland/protocols/drm.rs
+343 −0 src/wayland/protocols/image_source.rs
+1 −1 src/wayland/protocols/mod.rs
+847 −700 src/wayland/protocols/screencopy.rs
+25 −5 src/wayland/protocols/toplevel_info.rs
+32 −17 src/wayland/protocols/toplevel_management.rs
+181 −98 src/xwayland.rs
2 changes: 1 addition & 1 deletion cosmic-edit
Submodule cosmic-edit updated 51 files
+1 −0 .gitattributes
+2 −2 .github/workflows/flakehub-publish-rolling.yml
+525 −1,040 Cargo.lock
+11 −9 Cargo.toml
+4 −2 README.md
+15 −2 build.rs
+1 −0 debian/control
+1 −5 debian/rules
+1 −1 i18n/cs/cosmic_edit.ftl
+1 −1 i18n/de/cosmic_edit.ftl
+1 −1 i18n/el/cosmic_edit.ftl
+14 −1 i18n/en/cosmic_edit.ftl
+1 −1 i18n/es/cosmic_edit.ftl
+1 −1 i18n/fi/cosmic_edit.ftl
+1 −1 i18n/fr/cosmic_edit.ftl
+1 −1 i18n/he/cosmic_edit.ftl
+23 −5 i18n/hu/cosmic_edit.ftl
+1 −1 i18n/it/cosmic_edit.ftl
+20 −2 i18n/ja/cosmic_edit.ftl
+1 −1 i18n/ko-KR/cosmic_edit.ftl
+1 −1 i18n/lt/cosmic_edit.ftl
+1 −1 i18n/nl/cosmic_edit.ftl
+1 −1 i18n/pl/cosmic_edit.ftl
+1 −1 i18n/pt-BR/cosmic_edit.ftl
+109 −0 i18n/pt/cosmic_edit.ftl
+1 −1 i18n/ru/cosmic_edit.ftl
+1 −1 i18n/sk/cosmic_edit.ftl
+1 −1 i18n/sr-Cyrl/cosmic_edit.ftl
+1 −1 i18n/sr-Latn/cosmic_edit.ftl
+1 −1 i18n/sv-SE/cosmic_edit.ftl
+1 −1 i18n/tr/cosmic_edit.ftl
+1 −1 i18n/uk/cosmic_edit.ftl
+37 −8 justfile
+1 −1 res/com.system76.CosmicEdit.desktop
+37 −0 res/com.system76.CosmicEdit.metainfo.xml
+23 −0 res/icons/hicolor/128x128/apps/com.system76.CosmicEdit.svg
+22 −0 res/icons/hicolor/16x16/apps/com.system76.CosmicEdit.svg
+23 −0 res/icons/hicolor/24x24/apps/com.system76.CosmicEdit.svg
+23 −0 res/icons/hicolor/256x256/apps/com.system76.CosmicEdit.svg
+23 −0 res/icons/hicolor/32x32/apps/com.system76.CosmicEdit.svg
+23 −0 res/icons/hicolor/48x48/apps/com.system76.CosmicEdit.svg
+23 −0 res/icons/hicolor/64x64/apps/com.system76.CosmicEdit.svg
+3 −0 res/screenshots/screenshot-1.png
+32 −0 src/config.rs
+5 −44 src/key_bind.rs
+524 −70 src/main.rs
+141 −171 src/menu.rs
+0 −58 src/mime_icon.rs
+5 −4 src/project.rs
+34 −35 src/tab.rs
+140 −37 src/text_box.rs
2 changes: 1 addition & 1 deletion cosmic-files
Submodule cosmic-files updated 55 files
+719 −1,055 Cargo.lock
+20 −9 Cargo.toml
+28 −1 README.md
+17 −0 build.rs
+1 −0 debian/control
+1 −5 debian/rules
+48 −10 examples/dialog.rs
+49 −1 i18n/en/cosmic_files.ftl
+111 −0 i18n/fi/cosmic_files.ftl
+100 −0 i18n/it/cosmic_files.ftl
+99 −0 i18n/ja/cosmic_files.ftl
+90 −26 i18n/pt/cosmic_files.ftl
+4 −2 i18n/pt_BR/cosmic_files.ftl
+50 −3 i18n/ru/cosmic_files.ftl
+34 −10 justfile
+2 −2 res/com.system76.CosmicFiles.desktop
+26 −0 res/com.system76.CosmicFiles.metainfo.xml
+12 −0 res/icons/hicolor/128x128/apps/com.system76.CosmicFiles.svg
+12 −0 res/icons/hicolor/16x16/apps/com.system76.CosmicFiles.svg
+12 −0 res/icons/hicolor/24x24/apps/com.system76.CosmicFiles.svg
+12 −0 res/icons/hicolor/256x256/apps/com.system76.CosmicFiles.svg
+12 −0 res/icons/hicolor/32x32/apps/com.system76.CosmicFiles.svg
+12 −0 res/icons/hicolor/48x48/apps/com.system76.CosmicFiles.svg
+12 −0 res/icons/hicolor/64x64/apps/com.system76.CosmicFiles.svg
+1 −0 samples/application/javascript.js
+ samples/application/octet-stream
+3 −0 samples/application/x-shellscript.sh
+ samples/audio/x-vorbis+ogg.ogg
+28 −0 samples/check.sh
+ samples/image/bmp.bmp
+ samples/image/gif.gif
+ samples/image/jpeg.jpg
+ samples/image/png.png
+26 −0 samples/image/svg+xml.svg
+3 −0 samples/text/css.css
+1 −0 samples/text/csv.csv
+3 −0 samples/text/html.html
+3 −0 samples/text/markdown.md
+1 −0 samples/text/plain.txt
+3 −0 samples/text/rust.rs
+1 −0 samples/text/x-chdr.h
+5 −0 samples/text/x-csrc.c
+1,033 −294 src/app.rs
+159 −0 src/clipboard.rs
+58 −8 src/config.rs
+382 −238 src/dialog.rs
+21 −45 src/key_bind.rs
+4 −1 src/lib.rs
+140 −75 src/menu.rs
+287 −0 src/mime_app.rs
+32 −18 src/mime_icon.rs
+122 −59 src/mouse_area.rs
+134 −16 src/operation.rs
+37 −0 src/spawn_detached.rs
+1,261 −341 src/tab.rs
2 changes: 1 addition & 1 deletion cosmic-notifications
Submodule cosmic-notifications updated 1 files
+525 −538 Cargo.lock
2 changes: 1 addition & 1 deletion cosmic-osd
2 changes: 1 addition & 1 deletion cosmic-screenshot
Submodule cosmic-screenshot updated 1 files
+1 −1 justfile
2 changes: 1 addition & 1 deletion cosmic-session
2 changes: 1 addition & 1 deletion cosmic-settings
Submodule cosmic-settings updated 108 files
2 changes: 1 addition & 1 deletion cosmic-settings-daemon
2 changes: 1 addition & 1 deletion cosmic-store
Submodule cosmic-store updated 47 files
+0 −4 .gitmodules
+786 −335 Cargo.lock
+6 −2 Cargo.toml
+0 −1 appstream
+2 −0 debian/control
+1 −5 debian/rules
+17 −0 examples/libflatpak.rs
+11 −0 flathub-stats/Cargo.toml
+45 −0 flathub-stats/src/main.rs
+20 −0 i18n/en/cosmic_store.ftl
+15 −0 i18n/pl/cosmic_store.ftl
+30 −0 i18n/pt/cosmic_store.ftl
+23 −4 i18n/ru/cosmic_store.ftl
+30 −0 i18n/sr-Cyrl/cosmic_store.ftl
+30 −0 i18n/sr-Latn/cosmic_store.ftl
+20 −0 i18n/tr/cosmic_store.ftl
+28 −6 justfile
+1 −1 res/com.system76.CosmicStore.desktop
+23 −0 res/com.system76.CosmicStore.metainfo.xml
+ res/flathub-stats-2024-02.bitcode-v0-5
+48 −0 res/icons/hicolor/128x128/apps/com.system76.CosmicStore.svg
+48 −0 res/icons/hicolor/16x16/apps/com.system76.CosmicStore.svg
+48 −0 res/icons/hicolor/24x24/apps/com.system76.CosmicStore.svg
+48 −0 res/icons/hicolor/256x256/apps/com.system76.CosmicStore.svg
+48 −0 res/icons/hicolor/32x32/apps/com.system76.CosmicStore.svg
+48 −0 res/icons/hicolor/48x48/apps/com.system76.CosmicStore.svg
+48 −0 res/icons/hicolor/64x64/apps/com.system76.CosmicStore.svg
+12 −0 res/icons/store-create-symbolic.svg
+12 −0 res/icons/store-develop-symbolic.svg
+10 −0 res/icons/store-game-symbolic.svg
+3 −0 res/icons/store-home-symbolic.svg
+6 −0 res/icons/store-installed-symbolic.svg
+13 −0 res/icons/store-learn-symbolic.svg
+11 −0 res/icons/store-relax-symbolic.svg
+6 −0 res/icons/store-socialize-symbolic.svg
+4 −0 res/icons/store-updates-symbolic.svg
+3 −0 res/icons/store-utilities-symbolic.svg
+3 −0 res/icons/store-work-symbolic.svg
+146 −26 src/app_info.rs
+59 −3 src/appstream_cache.rs
+196 −23 src/backend/flatpak.rs
+11 −13 src/backend/mod.rs
+198 −34 src/backend/packagekit.rs
+69 −0 src/icon_cache.rs
+1 −4 src/key_bind.rs
+955 −132 src/main.rs
+36 −0 src/operation.rs
2 changes: 1 addition & 1 deletion cosmic-term
Submodule cosmic-term updated 54 files
+741 −271 Cargo.lock
+27 −17 Cargo.toml
+5 −0 README.md
+17 −0 build.rs
+37 −0 color-schemes/COSMIC Dark.ron
+37 −0 color-schemes/COSMIC Light.ron
+38 −0 color-schemes/Linux Console.ron
+38 −0 color-schemes/OneHalfDark.ron
+38 −0 color-schemes/Pop Dark.ron
+38 −0 color-schemes/Rxvt Dark.ron
+38 −0 color-schemes/Rxvt Light.ron
+37 −0 color-schemes/Selenized Black.ron
+37 −0 color-schemes/Selenized Dark.ron
+37 −0 color-schemes/Selenized Light.ron
+37 −0 color-schemes/Selenized White.ron
+38 −0 color-schemes/Solarized Dark.ron
+38 −0 color-schemes/Solarized Light.ron
+38 −0 color-schemes/Tango Dark.ron
+38 −0 color-schemes/Tango Light.ron
+38 −0 color-schemes/XTerm Dark.ron
+38 −0 color-schemes/XTerm Light.ron
+38 −0 color-schemes/gruvbox-dark.ron
+2 −1 debian/control
+1 −5 debian/rules
+18 −2 i18n/en/cosmic_term.ftl
+96 −0 i18n/es-ES/cosmic_term.ftl
+96 −0 i18n/it/cosmic_term.ftl
+31 −2 i18n/ja/cosmic_term.ftl
+28 −0 i18n/pl/cosmic_term.ftl
+96 −0 i18n/pt-BR/cosmic_term.ftl
+96 −0 i18n/pt/cosmic_term.ftl
+65 −11 i18n/sr-Cyrl/cosmic_term.ftl
+65 −11 i18n/sr-Latn/cosmic_term.ftl
+19 −2 i18n/tr/cosmic-term.ftl
+28 −6 justfile
+1 −1 res/com.system76.CosmicTerm.desktop
+23 −0 res/com.system76.CosmicTerm.metainfo.xml
+11 −0 res/icons/dialog-error-symbolic.svg
+18 −0 res/icons/hicolor/128x128/apps/com.system76.CosmicTerm.svg
+18 −0 res/icons/hicolor/16x16/apps/com.system76.CosmicTerm.svg
+18 −0 res/icons/hicolor/24x24/apps/com.system76.CosmicTerm.svg
+18 −0 res/icons/hicolor/256x256/apps/com.system76.CosmicTerm.svg
+18 −0 res/icons/hicolor/32x32/apps/com.system76.CosmicTerm.svg
+18 −0 res/icons/hicolor/48x48/apps/com.system76.CosmicTerm.svg
+18 −0 res/icons/hicolor/64x64/apps/com.system76.CosmicTerm.svg
+10 −0 res/icons/view-more-symbolic.svg
+213 −20 src/config.rs
+2 −0 src/icon_cache.rs
+4 −43 src/key_bind.rs
+688 −117 src/main.rs
+87 −80 src/menu.rs
+14 −7 src/terminal.rs
+20 −11 src/terminal_box.rs
+143 −436 src/terminal_theme.rs

2 comments on commit 408aa60

@tuananh
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jackpot51 the error in ci seems to be caused by this one https://github.com/pop-os/cosmic-settings/blob/353cf3fbd120a365fb08aed973fed3ea29cad41c/scripts/cargo.just#L30

i remove [no-cd] and it works

@jackpot51
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Created an issue: pop-os/cosmic-settings#214

Please sign in to comment.