-
-
Notifications
You must be signed in to change notification settings - Fork 284
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
Improve development within Flatpak #2921
Labels
Feedback
Feedback from the community.
Comments
4 tasks
Some initial work for the .Devel change has been pushed here, feel free to use it in the future: https://github.com/bottlesdevs/Bottles/tree/devel-manifest |
TheEvilSkeleton
added a commit
to TheEvilSkeleton/Bottles
that referenced
this issue
Dec 9, 2024
From this time onward, development flatpaks of Bottles will be suffixed with `.Devel`. This allows us to test Bottles completely separately from stable releases, making it easier to test without affecting existing configurations. Related: bottlesdevs#2921
TheEvilSkeleton
added a commit
to TheEvilSkeleton/Bottles
that referenced
this issue
Dec 9, 2024
From this time onward, development flatpaks of Bottles will be suffixed with `.Devel`. This allows us to test Bottles completely separately from stable releases, making it easier to test without affecting existing configurations. Related: bottlesdevs#2921
mirkobrombin
pushed a commit
that referenced
this issue
Dec 10, 2024
From this time onward, development flatpaks of Bottles will be suffixed with `.Devel`. This allows us to test Bottles completely separately from stable releases, making it easier to test without affecting existing configurations. Related: #2921
Is this still valid? |
The last checkbox in the original issue comment still needs to be wrapped up, but should be it afterwards. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There are a few difficulties with Bottles to test within Flatpak environments. I propose the followings:
.Devel
suffix in the app ID (com.usebottles.bottles.Devel
) to separate the containers.utils/install.sh
work well inside Flatpak. Currently, it's meant to be used outside of Flatpak, which makes it inconvenient. I changed a bit of the script:This makes it build and install in
$(pwd)/build
, and can be easily executed by running./build/bin/bottles
. We can run this script by entering in the Flatpak container:flatpak run -d --filesystem=$PWD --command=bash com.usebottles.bottles
(orcom.usebottles.bottles.Devel
), and then running the script:./utils/install.sh
.The text was updated successfully, but these errors were encountered: