Package Details: brave-nightly-bin 1.67.32-1

Git Clone URL: https://aur.archlinux.org/brave-nightly-bin.git (read-only, click to copy)
Package Base: brave-nightly-bin
Description: Web browser that blocks ads and trackers by default (nightly binary release).
Upstream URL: https://brave.com/download-nightly
Licenses: MPL2
Provides: brave-nightly-bin, brave-nightly-browser
Submitter: gregbunk
Maintainer: gregbunk
Last Packager: gregbunk
Votes: 25
Popularity: 0.094896
First Submitted: 2019-03-28 14:18 (UTC)
Last Updated: 2024-04-23 11:26 (UTC)

Dependencies (9)

Required by (0)

Sources (3)

Latest Comments

1 2 3 4 5 6 7 Next › Last »

gregbunk commented on 2023-11-22 14:16 (UTC) (edited on 2023-11-22 14:18 (UTC) by gregbunk)

Not sure what to say. Here's my ~/.config/brave-nightly-flags.conf:

--disable-gpu-vsync --disable-gpu-driver-bug-workarounds --enable-features=VaapiVideoDecoder --ignore-gpu-blocklist --enable-gpu-rasterization --enable-zero-copy

And here's what I get when I run brave-nightly script:

exec /opt/brave.com/brave-nightly/brave-browser --disable-gpu-vsync --disable-gpu-driver-bug-workarounds --enable-features=VaapiVideoDecoder --ignore-gpu-blocklist --enable-gpu-rasterization --enable-zero-copy --disable-gpu-driver-bug-workarounds

heelowoorl commented on 2023-11-21 19:52 (UTC)

@gregbunk unfortunately I tried many formats but they did not work no matter how I formatted them. only a single flag works even when they are space separated.

heelowoorl commented on 2023-11-16 22:29 (UTC)

Thanks for the reply I'm putting each flag on a single line maybe that's why.

gregbunk commented on 2023-11-16 09:44 (UTC)

Thanks for your work on this, @heelowoorl. I think this works as-is, with the flags on a single line. For example, my flags are:

--disable-gpu-vsync --disable-gpu-driver-bug-workarounds --enable-features=VaapiVideoDecoder --ignore-gpu-blocklist --enable-gpu-rasterization --enable-zero-copy

And when I run this command:

brave-nightly foo

It expands to:

exec /opt/brave.com/brave-nightly/brave-browser --disable-gpu-vsync --disable-gpu-driver-bug-workarounds --enable-features=VaapiVideoDecoder --ignore-gpu-blocklist --enable-gpu-rasterization --enable-zero-copy --disable-gpu-driver-bug-workarounds foo

Is that not what we want?

heelowoorl commented on 2023-11-15 19:25 (UTC)

@gregbunk I noticed that the script brave-nightly-bin.sh only loads the flags if it is 1 flag and only 1 flag from ~/.config/brave-nightly-flags.conf otherwise it will just not load any.

I tried to debug the issue and I got it fixed by looking at the brave-bin package here on aur and moving the flag argument placement like so

exec "/opt/brave.com/brave-nightly/brave-browser" "$@" $USER_FLAGS $BRAVE_FLAGS $FLAG

To test the issue you can use these two below flags if you put them inside ~/.config/brave-nightly-flags.conf and observe that they don't apply. but if you only put --incognito it will work and by the change above both worked flawlessly

--incognito
--start-maximized

gregbunk commented on 2023-08-02 14:26 (UTC)

Thanks. I'm using the github API to pull the actual builds as they occur.

wknapik commented on 2023-08-02 14:06 (UTC)

hey @gregbunk. please take a look at https://versions.brave.com/ - it's an overview of Brave versions, including links to individual endpoints returning a version for a given platform/architecture, that can be used in automation - e.g. https://versions.brave.com/latest/nightly-linux-x64.version and https://versions.brave.com/latest/nightly-linux-arm64.version.

gregbunk commented on 2023-05-24 18:10 (UTC)

I have added experimental aarch64 support. I have no way to test this, so I'm flying blind. If someone can try and let me know that would be great.

Please note that aarch64 Brave builds are VERY spotty right now. They seem to not be available a lot of the time.

myself600 commented on 2023-01-02 14:20 (UTC) (edited on 2023-01-02 15:00 (UTC) by myself600)

You can use something like this to incorporate aarch64:

_arch=`uname -m|sed s/x86_/amd/\;s/arch/rm/`
_pkgver=`curl -s https://api.github.com/repos/brave/brave-browser/releases|grep browser_download_url|grep nightly-.*-linux-$_arch|head -1|cut -d- -f5`
_link=https://github.com/brave/brave-browser/releases/download/v$_pkgver/brave-browser-nightly-$_pkgver-linux-$_arch.zip
sha256sums=(`curl -Ls $_link.sha256|cut -b-64`)
pkgver(){
    echo $_pkgver
}