Package Details: discord-canary 0.0.594-1

Git Clone URL: https://aur.archlinux.org/discord-canary.git (read-only, click to copy)
Package Base: discord-canary
Description: All-in-one voice and text chat for gamers - alpha build
Upstream URL: https://discordapp.com
Licenses: custom
Submitter: blakkheim
Maintainer: timschumi
Last Packager: timschumi
Votes: 26
Popularity: 1.72
First Submitted: 2022-10-31 02:25 (UTC)
Last Updated: 2025-02-20 22:45 (UTC)

Pinned Comments

sunwukonga commented on 2023-12-07 01:27 (UTC)

For anyone who hasn't discovered this already, you can ameliorate the impact of delayed AUR version updates by setting the following in your ~/.config/discordcanary/settings.json file:

{
  // preceding settings (add a trailing comma ,)
  "SKIP_HOST_UPDATE": true
}

Latest Comments

1 2 3 Next › Last »

Rodancoci commented on 2025-02-21 00:44 (UTC)

Latest version is missing debugedit as a make dependency.

parkerlreed commented on 2025-02-03 18:47 (UTC)

Was a glibc issue. Appears to be fine now. https://archlinux.org/news/glibc-241-corrupting-discord-installation/

luis996 commented on 2025-01-31 03:46 (UTC) (edited on 2025-01-31 03:47 (UTC) by luis996)

Huh, strange. I'm running 580 fine right now.

canary 364072 (9d96483) Host 0.0.580 x64 Build Override: N/A Linux 64-bit (6.12.10-arch1-1)

Btw, reinstalling by removing ~/.config/discordcanary/0.580 and checking electron logs may help

parkerlreed commented on 2025-01-30 23:19 (UTC)

580 has a banner saying the installation is corrupt...

xaeroxe commented on 2025-01-29 01:46 (UTC)

Thanks luis996, that fixed my issue!

luis996 commented on 2025-01-29 01:19 (UTC) (edited on 2025-01-30 03:01 (UTC) by luis996)

I don't know if anyone else is experiencing this, but versions .576 and .577 error because of faulty discord_ztsd.node module. (The error in fact is a black screen freezing on startup, persistent even after deleting 0.0.577 folder and letting discord reinstall)

I just ran rm -rf /home/uzerlol/.config/discordcanary/0.0.577/modules/discord_zstd/discord_zstd.node and it is partially solved. (And should not create problems, afaik it is used to compress messages, reducing bandwidth).

As of 0.0.578-1 this no longer applies, as the issue seems to be fixed.

s0me-1 commented on 2024-10-08 13:54 (UTC)

discord-canary-0.0.500.tar.gz is either corrupted on multiple servers or the sha512sum is in fact invalid

:: (1/1) Parsing SRCINFO: discord-canary
==> Making package: discord-canary 0.0.500-1 (Tue 08 Oct 2024 03:50:52 PM CEST)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
  -> Found discord-canary-0.0.500.tar.gz
  -> Found LICENSE.html
  -> Found OSS-LICENSES.html
==> Validating source files with sha512sums...
    discord-canary-0.0.500.tar.gz ... FAILED
    LICENSE.html ... Skipped
    OSS-LICENSES.html ... Skipped
==> ERROR: One or more files did not pass the validity check!

chanbakjsd commented on 2024-06-17 06:21 (UTC)

As of writing this comment, the latest version is 0.0.423. Here's the diff if anyone wants it:

diff --git a/PKGBUILD b/PKGBUILD
index f4df9cb..45ad4d7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@

 pkgname=discord-canary
 _pkgname=DiscordCanary
-pkgver=0.0.418
+pkgver=0.0.423
 pkgrel=1
 pkgdesc="All-in-one voice and text chat for gamers - alpha build"
 arch=('x86_64')
@@ -15,7 +15,7 @@ optdepends=('libpulse: Pulseaudio support'
 source=("https://dl-canary.discordapp.net/apps/linux/$pkgver/$pkgname-$pkgver.tar.gz"
         'LICENSE.html::https://discordapp.com/terms'
         'OSS-LICENSES.html::https://discordapp.com/licenses')
-sha512sums=('121909038744627681a1506d14804a46ae4703baa5e669b3d7fe5ff1612ee6a48cf7a537b8a050f7cd9c010f06612f9f290f78ec6eed326936832a201c0104f2'
+sha512sums=('b04e2909e98e5828d30ea68a0a5c7121ee23749e901c28c6e0d90fc459cdd60795b6c3b7070223c468c23f47c68887aaba743d0be6f670f068b41ee771d80ddd'
             'SKIP'
             'SKIP')

sunwukonga commented on 2023-12-07 01:27 (UTC)

For anyone who hasn't discovered this already, you can ameliorate the impact of delayed AUR version updates by setting the following in your ~/.config/discordcanary/settings.json file:

{
  // preceding settings (add a trailing comma ,)
  "SKIP_HOST_UPDATE": true
}

sunwukonga commented on 2023-12-03 15:38 (UTC)

Suggested change to PKGBUILD:

diff --git a/PKGBUILD b/PKGBUILD
index 65702d2..24664ee 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -20,6 +20,12 @@ sha512sums=('361650080d1384664e92c98053cdb347e81b4ef7ae172340fe08fbe7e8cf735a4f1
             'SKIP')

 prepare() {
+  local _new_pkgver=$(curl -LI "https://discord.com/api/download/canary?platform=linux&format=tar.gz" | grep location | awk -F/ '{print $6}')
+  if [[ $_new_pkgver != $pkgver ]]; then
+    echo -e "\e[31mNew version available:\e[0m \e[32m$_new_pkgver\e[0m"
+    echo -e "Visit \e[93mhttps://aur.archlinux.org/pkgbase/discord-canary/flag\e[0m and comment \e[32m'Please update to $_new_pkgver'\e[0m to get this package updated."
+    return 1
+  fi
   cd $_pkgname
   sed -i "s|Exec=.*|Exec=/usr/bin/$pkgname|" $pkgname.desktop
   echo 'Path=/usr/bin' >> $pkgname.desktop

This will let the first person who runs into this flag the aur repo quickly and easily with the newest version.