Skip to content

Commit

Permalink
51.14
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkobrombin committed Oct 12, 2024
1 parent 7edf816 commit e137bcc
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 21 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
51.13
51.14
34 changes: 17 additions & 17 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
#!/bin/sh

run_flatpak() {
flatpak-spawn --host flatpak run org.flatpak.Builder build com.usebottles.bottles.yml --user --install --force-clean && flatpak-spawn --host flatpak run com.usebottles.bottles
flatpak-spawn --host flatpak-builder -v build com.usebottles.bottles.yml --user --install --force-clean && flatpak-spawn --host flatpak run com.usebottles.bottles
}

run_host() {
flatpak run org.flatpak.Builder build com.usebottles.bottles.yml --user --install --force-clean && flatpak run com.usebottles.bottles
flatpak-builder build -v com.usebottles.bottles.yml --user --install --force-clean && flatpak run com.usebottles.bottles
}

run_container() {
host-spawn flatpak run org.flatpak.Builder build com.usebottles.bottles.yml --user --install --force-clean && host-spawn flatpak run com.usebottles.bottles
host-spawn flatpak-builder build -v com.usebottles.bottles.yml --user --install --force-clean && host-spawn flatpak run com.usebottles.bottles
}

if [ -x "$(command -v flatpak-spawn)" ]; then
run_flatpak
exit $?
run_flatpak
exit $?
fi

if [ -f "/run/.containerenv" ]; then
if [ -x "$(command -v flatpak)" ]; then
run_host
exit $?
fi

if [ -x "$(command -v host-spawn)" ]; then
run_container
exit $?
fi

echo "Looks like you are running in a container, but you don't have flatpak or host-spawn installed."
echo "Nothing to do here."
if [ -x "$(command -v flatpak)" ]; then
run_host
exit $?
fi

if [ -x "$(command -v host-spawn)" ]; then
run_container
exit $?
fi

echo "Looks like you are running in a container, but you don't have flatpak or host-spawn installed."
echo "Nothing to do here."
fi

run_host
Expand Down
19 changes: 17 additions & 2 deletions data/com.usebottles.bottles.metainfo.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,29 @@
<display_length compare="ge">768</display_length>
</requires>
<releases>
<release version="51.14" date="2024-10-12">
<description translatable="no">
<p>New "Native" Force Stop all Processes option</p>
<p>Provide bottle Path as env var</p>
<p>Fix "bottles:run/" uri processing (#3444)</p>
<p>Ability to search steam managed bottles</p>
<p>Fix bottles with a different name and path weren't runnable through bottle picker (#3451)</p>
<p>Win11 support</p>
<p>Add Pre-Run script to launch options (#3336)</p>
<p>Updated GNOME Runtime to 47</p>
<p>Provide subtitles for envs</p>
<p>Support for personal repos (#3464)/p>
<p>Update translations</p>
</description>
</release>
<release version="51.13" date="2024-07-10">
<description translatable="no">
<p>Fixed crash on starting executables via the file manager [#3427]</p>
</description>
</release>
<release version="51.12" date="2024-07-09">
<description translatable="no">
<p>Support d3d8 vya dxvk</p>
<p>Support d3d8 via dxvk</p>
<p>Removed @lru_cache decorator from the Paths class, plus minor typing fixes</p>
<p>Fixed crash on startup [#3329]</p>
<p>Updated GNOME runtime in manifest</p>
Expand Down Expand Up @@ -211,4 +226,4 @@
</description>
</release>
</releases>
</component>
</component>
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
project(
'bottles',
version: '51.13',
version: '51.14',
meson_version: '>= 0.59.0',
default_options: [
'warning_level=2',
Expand Down

0 comments on commit e137bcc

Please sign in to comment.