Package Details: thunderbird-nightly-bin 125.0a1.20240220-1

Git Clone URL: https://aur.archlinux.org/thunderbird-nightly-bin.git (read-only, click to copy)
Package Base: thunderbird-nightly-bin
Description: Standalone Mail/News reader - Nightly build
Upstream URL: https://www.mozilla.org/thunderbird
Licenses: GPL, MPL, LGPL
Conflicts: thunderbird-nightly
Provides: thunderbird, thunderbird-nightly
Submitter: freswa
Maintainer: freswa
Last Packager: freswa
Votes: 31
Popularity: 0.139029
First Submitted: 2020-05-17 02:43 (UTC)
Last Updated: 2024-02-20 14:33 (UTC)

Required by (96)

Sources (5)

Latest Comments

1 2 3 4 5 6 7 Next › Last »

babolivier commented on 2023-06-15 09:38 (UTC)

Not sure how idiomatic this is to nightlies on the AUR, but heads up (for folks who got bitten by this like I did) that this package isn't updated for every build; if you've installed it and want the most recent build you need to install it again.

a36233 commented on 2021-10-17 17:36 (UTC)

94.0a1 and 95.0a1 are out...

a36233 commented on 2021-03-25 08:55 (UTC)

Version is quite outdate now, the current nightly version is 89

freswa commented on 2020-04-26 18:41 (UTC)

PR welcome :) https://github.com/freswa/aur/

blackout commented on 2020-03-11 10:06 (UTC)

please add the code to disable update notifications into the PKGBUILD file

Salamandar commented on 2020-01-30 17:18 (UTC)

Can the dependency over gtk2 be replaced by gtk3 ? :)

electricprism commented on 2019-12-13 22:02 (UTC)

Every update it seems that the existing profile is completely thrown out and I really don't want to duplicate 20GB of data every time there's an update so I add a select-profile to my launcher.desktop file

~/.local/share/applications/userapp-Thunderbird-UCUIFZ.desktop

/opt/thunderbird-beta/thunderbird -p --no-remote% %u

bmd_online commented on 2019-10-28 23:09 (UTC) (edited on 2019-10-28 23:12 (UTC) by bmd_online)

For disable check for updates...

You have to create a file called policies.json

{
  "policies": {
    "DisableAppUpdate": true
  }
}

Then, into PKGBUILD package() you have to add

  # Disable auto-updates
  install -Dm644 "${srcdir}"/policies.json -t "$pkgdir/opt/${pkgname}-${pkgver}/distribution"

Another suggestion is to simplify installation directory...

In PKGBUILD package(), you can replace each

"$pkgdir/opt/${pkgname}-${pkgver}"
With
"$pkgdir/opt/${pkgname}"