Skip to content

Commit

Permalink
Updated Flatpak
Browse files Browse the repository at this point in the history
- Updated Flatpak manifest to compile for both amd64 and aarch64.
- Moved delete menu item to the bottom of the list.
  • Loading branch information
edfloreshz committed Apr 30, 2024
1 parent b1e39d3 commit a6a4a5d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions com.system76.CosmicTasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,15 @@ modules:
dest-filename: just.tar.gz
url: https://github.com/casey/just/releases/download/1.25.2/just-1.25.2-x86_64-unknown-linux-musl.tar.gz
sha256: ad56bf1a804243b51ef2c2eec4b3a8177f970ccc414cbbee219c2e5c06f7bcc9
only_arches:
- amd64
- type: archive
strip-components: 0
dest-filename: just.tar.gz
url: https://github.com/casey/just/releases/download/1.25.2/just-1.25.2-aarch64-unknown-linux-musl.tar.gz
sha256: 049d624255d150f18b0f3a1257a163366b0dc22e16526214773903125145e515
only_arches:
- aarch64
- name: cosmic-tasks
buildsystem: simple
build-commands:
Expand Down
4 changes: 2 additions & 2 deletions src/app/menu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ pub fn menu_bar<'a>(key_binds: &HashMap<KeyBind, Action>) -> Element<'a, Message
vec![
Item::Button(fl!("rename"), Action::RenameList),
Item::Divider,
Item::Button(fl!("delete"), Action::DeleteList),
Item::Divider,
Item::Button(fl!("icon"), Action::Icon),
Item::Divider,
Item::Button(fl!("delete"), Action::DeleteList),
],
),
),
Expand Down

0 comments on commit a6a4a5d

Please sign in to comment.