-
-
Notifications
You must be signed in to change notification settings - Fork 24
feat: flatpak support #23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
98a9312
feat: flatpak support
wiiznokes 5de035d
remove flatpak commands for justfile
wiiznokes b790a29
fix justfile
wiiznokes a1f4f45
rename to CosmicTweaks
wiiznokes b4ca5af
update metainfo file to pass appstreamcli validate
wiiznokes 45e4fc9
Update dev.edfloreshz.CosmicTweaks.json
wiiznokes 5922b06
use git instead of path
wiiznokes 4360211
update desktop entry
wiiznokes 3b73236
Update desktop_entry.desktop
wiiznokes b9ae11c
Update res/metainfo.xml
wiiznokes 1a63388
Update res/metainfo.xml
wiiznokes 14288f1
Update res/metainfo.xml
wiiznokes 00df516
Update res/metainfo.xml
wiiznokes 16828d8
Update res/metainfo.xml
wiiznokes 84c0084
use latest version of runtime
wiiznokes File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| { | ||
| "id": "dev.edfloreshz.CosmicTweaks", | ||
| "runtime": "org.freedesktop.Platform", | ||
| "runtime-version": "24.08", | ||
| "sdk": "org.freedesktop.Sdk", | ||
| "sdk-extensions": ["org.freedesktop.Sdk.Extension.rust-stable"], | ||
| "command": "cosmic-ext-tweaks", | ||
| "finish-args": [ | ||
| "--share=ipc", | ||
| "--share=network", | ||
| "--socket=fallback-x11", | ||
| "--socket=wayland", | ||
| "--device=dri", | ||
| "--talk-name=com.system76.CosmicSettingsDaemon", | ||
| "--filesystem=xdg-config/cosmic:rw" | ||
| ], | ||
| "build-options": { | ||
| "append-path": "/usr/lib/sdk/rust-stable/bin", | ||
| "env": { | ||
| "CARGO_HOME": "/run/build/tweaks/cargo" | ||
| } | ||
| }, | ||
| "modules": [ | ||
| { | ||
| "name": "tweaks", | ||
| "buildsystem": "simple", | ||
| "build-commands": [ | ||
| "cargo --offline build --release --verbose", | ||
| "install -Dm0755 ./target/release/cosmic-ext-tweaks -t /app/bin/", | ||
| "install -Dm644 ./res/app_icon.svg /app/share/icons/hicolor/scalable/apps/dev.edfloreshz.CosmicTweaks.svg", | ||
| "install -Dm644 ./res/metainfo.xml /app/share/metainfo/dev.edfloreshz.CosmicTweaks.metainfo.xml", | ||
| "install -Dm644 ./res/desktop_entry.desktop /app/share/applications/dev.edfloreshz.CosmicTweaks.desktop" | ||
| ], | ||
| "sources": [ | ||
| { | ||
| "type": "dir", | ||
| "path": "./" | ||
| }, | ||
| "./cargo-sources.json" | ||
| ] | ||
| } | ||
| ] | ||
| } |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| app-title = Tweaks pour COSMIC | ||
| app-description = Un outil pour customizer votre COSMIC expérience. | ||
|
|
||
| home = Home | ||
| dock = Dock | ||
| panel = Panneau | ||
| color-schemes = Color schemes | ||
| color-schemes-error = Error loading color schemes | ||
| import-color-scheme = Import color scheme | ||
| delete-color-scheme = Delete color scheme | ||
| install-color-scheme = Install color scheme | ||
| open-containing-folder = Ouvrir le dossier | ||
| open-link = Ouvrir le lien | ||
| installed = Installés | ||
| available = Disponibles | ||
| loading = Chargement... | ||
|
|
||
| # Panel only | ||
| show-panel = Afficher le panneau | ||
| force-icon-buttons-in-panel = Forcer l'affichage des boutons avec des icons dans le panneau | ||
|
|
||
| padding = Padding | ||
| padding-description = Padding is the space between the contents and the borders of the dock or panel. | ||
|
|
||
| spacing = Espacement | ||
| spacing-description = L'espacement est l'espace entre les icônes dans le dock ou le panneau. | ||
|
|
||
| save = Sauvegarder | ||
| cancel = Annuler | ||
| save-current-color-scheme = Save current color scheme | ||
| color-scheme-name = Color scheme name |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| [Desktop Entry] | ||
| Name=Tweaks for COSMIC | ||
| Name[fr]=Tweaks pour COSMIC | ||
| GenericName = COSMIC tweaks | ||
| Comment=Tweaks your COSMIC desktop environment | ||
| Comment[fr]=Améliorez votre environnement de bureau COSMIC | ||
| Keywords=Folder;Manager | ||
| Keywords[fr]=ajustement | ||
|
|
||
| Exec=cosmic-ext-tweaks | ||
| Terminal=false | ||
| Type=Application | ||
| StartupNotify=true | ||
| Icon=dev.edfloreshz.CosmicTweaks | ||
| Categories=COSMIC;Utility;Settings;DesktopSettings | ||
| OnlyShowIn=COSMIC |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you remove this file? I'm creating the repo but I need to merge this first.