Package Details: bottles 2:51.15-2

Git Clone URL: https://aur.archlinux.org/bottles.git (read-only, click to copy)
Package Base: bottles
Description: Easily manage wine and proton prefix
Upstream URL: https://github.com/bottlesdevs/Bottles
Keywords: Bottles gaming Wine Wineprefixes
Licenses: GPL-3.0-only
Submitter: ragouel
Maintainer: lotation (brombinmirko, francescomasala)
Last Packager: lotation
Votes: 151
Popularity: 7.11
First Submitted: 2020-11-28 22:52 (UTC)
Last Updated: 2024-11-08 16:10 (UTC)

Pinned Comments

brombinmirko commented on 2022-09-15 20:54 (UTC) (edited on 2022-09-15 20:54 (UTC) by brombinmirko)

=====================

READ HERE FIRST

=====================

This package is not officially supported by the Bottles Developers. Even though some of those developers are package maintainers, support is offered by the package authors who will make sure it is handled in the best possible way. They will diagnose the issues and report the issues to the development team if they are not related to the package.

Latest Comments

« First ‹ Previous 1 .. 3 4 5 6 7 8 9 10 11 12 13 .. 22 Next › Last »

lotation commented on 2023-03-24 12:24 (UTC) (edited on 2023-03-24 12:25 (UTC) by lotation)

@DarkThoughts it seems that you are using an AUR helper and it's not officially supported because in some circumstances (like this) it abstract from the building process and makes troubleshooting harder. The problem here seems to be by vkbasalt-cli side but I tried to rebuild bottles anyway and it all went well so I suggest you to build bottles by hand.

DarkThoughts commented on 2023-03-24 11:19 (UTC)

Broken for me because of failed validity checks: https://pastebin.com/JVidBiEw

joelbacal commented on 2023-03-18 02:05 (UTC) (edited on 2023-03-18 03:26 (UTC) by joelbacal)

Probably all the people that have installed Waydroid on their computers will have the "Failed to find window.ui" problem when compiling. The solution is to uninstall python-argparse and python-pyclip, install bottles and then reinstall both python packages.

Now bottles installed, but get stucked during packages download

I get this message

Traceback (most recent call last): File "/usr/share/bottles/bottles/frontend/windows/main_window.py", line 149, in set_manager self.page_details = DetailsView(self) File "/usr/share/bottles/bottles/frontend/views/details.py", line 78, in init self.view_bottle = BottleView(self, config) File "/usr/share/bottles/bottles/frontend/views/bottle_details.py", line 164, in init self.style_provider.load_from_data(style_data, len(style_data)) TypeError: Gtk.CssProvider.load_from_data() takes exactly 2 arguments (3 given)

Thanks in advance!

1nikolas commented on 2023-03-17 19:27 (UTC)

@lotation you forgot to change the pkgrel on .SRCINFO

Ashark commented on 2023-03-16 12:47 (UTC)

Thanks @articuno1_au, it works. I agree with @1nikolas, it would be good to make this patch in aur.

1nikolas commented on 2023-03-13 23:28 (UTC)

To AUR maintainers: you can just make the package apply a diff that edits the python code (as @articuno1_au mentioned) and then remove that patch after it gets officially fixed. Bottles devs closed the pr so I don't think this is going to be fixed soon (https://github.com/bottlesdevs/Bottles/pull/2790)

bms commented on 2023-03-13 09:45 (UTC)

@joelbacal that's a known issue, look for workaround in comment https://aur.archlinux.org/packages/bottles#comment-904598 and earlier.

articuno1_au commented on 2023-03-13 09:35 (UTC) (edited on 2023-03-13 09:52 (UTC) by articuno1_au)

The issue is being tracked at https://github.com/bottlesdevs/Bottles/issues/2788

The dev team aren't looking at fixing it currently based on https://github.com/bottlesdevs/Bottles/issues/2795. They're recommending installing the Flatpack version. There is an open PR at https://github.com/bottlesdevs/Bottles/pull/2790/commits/60a9135b47d70a7f30ee7275014446d2b4c7df15#diff-ad80b104b1f092f846ba7c213cf6540df35ed5800c73ad4cfc1afc3b171d5157 that includes the fixes, but it breaks some other things, so is currently marked as blocked.

For those that want to fix this themselves, here're the steps

Edit /usr/share/bottles/bottles/frontend/views/bottle_details.py On line 163 remove

self.style_provider.load_from_data(b".dragndrop_overlay { background: rgba(41, 65, 94, 0.2);}")

On lines 163 and 164 add the following two lines

style_data = ".dragndrop_overlay { background: rgba(41, 65, 94, 0.2);}"
self.style_provider.load_from_data(style_data, len(style_data))

Edit /usr/share/bottles/bottles/frontend/windows/installer.py On line 99 remove

self.style_provider.load_from_data(b"progressbar { line-height: 2.0; }")

On line 99 and 100 add the following two lines

style_data = "progressbar { line-height: 2.0; }"
self.style_provider.load_from_data(style_data, len(style_data))

Close and re-launch bottles

Note that these line numbers will change as Bottles is updated in the future Limited markdown is supported... I'm really sorry for anyone getting spammed, I'm trying to make it readable.

TomJuri commented on 2023-03-12 15:05 (UTC)

How do I use this patch?