惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Microsoft Security Blog
Microsoft Security Blog
博客园 - 聂微东
aimingoo的专栏
aimingoo的专栏
J
Java Code Geeks
腾讯CDC
大猫的无限游戏
大猫的无限游戏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Google DeepMind News
Google DeepMind News
博客园_首页
F
Fortinet All Blogs
小众软件
小众软件
Apple Machine Learning Research
Apple Machine Learning Research
H
Help Net Security
博客园 - 【当耐特】
量子位
博客园 - 叶小钗
M
MIT News - Artificial intelligence
酷 壳 – CoolShell
酷 壳 – CoolShell
月光博客
月光博客
MyScale Blog
MyScale Blog
爱范儿
爱范儿
The Cloudflare Blog
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog

AUR Newest Packages

AUR (en) - linuxqq-clipsync-git AUR (en) - libtslitex-git AUR (en) - libtslitex-git AUR (en) - carton-appimage AUR (en) - veila-git AUR (en) - veila-bin AUR (en) - vigil-baseline AUR (en) - byedroid AUR (en) - neovim-base16-git AUR (en) - pirata AUR (en) - rpi-imager-git-non-root AUR (en) - python-fastapi-sso AUR (en) - tmux-ai-titles AUR (en) - zeed-bin AUR (en) - bclone-bin AUR (en) - dwl-git-azerty AUR (en) - auggie-bin AUR (en) - libspatialaudio-git AUR (en) - libspatialaudio AUR (en) - miniupnpd-iptables-legacy AUR (en) - miniupnpd-nft AUR (en) - jeeves-bin AUR (en) - opennow AUR (en) - rotki AUR (en) - kapi-bin AUR (en) - classfi-bin AUR (en) - classfi-git AUR (en) - classfi AUR (en) - giff-git AUR (en) - budget-tracker-bin
AUR (en) - jitsi-meet-desktop
2026-06-01 · via AUR Newest Packages

xiota commented on 2026-06-02 05:40 (UTC)

@Lerm Thanks for looking into it, but in future, please use a pastebin or summarize changes in more compact format.

Lerm commented on 2026-06-01 18:29 (UTC)

Here is the patch on top of 2026.6.0-1 to build the proper package (fixing WM class, switch to TS and change from webpack to esbuild):

diff --git a/PKGBUILD b/PKGBUILD
index 40bb28c..004f2a4 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -45,7 +45,7 @@ prepare() (
     > package.tmp && mv package.tmp package.json

   # disable updater
-  sed -E -e '/autoUpdater/d' -i main.js
+  sed -E -e '/autoUpdater/d' -i main.ts
 )

 build() (
@@ -79,8 +79,7 @@ build() (
   rm -rf node_modules/fsevents
   mkdir -p node_modules/fsevents

-  npm exec -c 'webpack --config ./webpack.main.js'
-  npm exec -c 'webpack --config ./webpack.renderer.js'
+  npm exec -c "node ./esbuild.js"
   npm exec -c "electron-builder ${_electron_builder_options[*]}"
 )

@@ -115,7 +114,7 @@ Exec=$_pkgname %U
 Icon=$_pkgname
 Terminal=false
 MimeType=x-scheme-handler/jitsi-meet;
-StartupWMClass=Jitsi Meet
+StartupWMClass=jitsi-meet
 Categories=VideoConference;AudioVideo;Audio;Video;Network;
 END

mgd commented on 2026-06-01 05:05 (UTC) (edited on 2026-06-01 05:06 (UTC) by mgd)

It seems for 2026.6.0-1 main.js is named main.ts in the source package and thus building it fails.

After renaming main.ts to main.js it started to build only to stop a bit later with a failure about npm version too old: npm notice New minor version of npm available! 11.14.1 -> 11.16.0

Lerm commented on 2026-05-18 09:30 (UTC)

It seems that window class has changed in version 2026.5.0 (to 'jitsi-meet'), so now Jitsi windows are not grouped under the launcher icon created by the packge. Following change fixed it for me:

diff --git a/PKGBUILD b/PKGBUILD
index 6632dbe..885ab8f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -115,7 +115,7 @@ Exec=$_pkgname %U
 Icon=$_pkgname
 Terminal=false
 MimeType=x-scheme-handler/jitsi-meet;
-StartupWMClass=Jitsi Meet
+StartupWMClass=jitsi-meet
 Categories=VideoConference;AudioVideo;Audio;Video;Network;
 END

fdossena commented on 2025-09-07 18:56 (UTC)

Doesn't work anymore since 2025.9.1 because the app.asar.unpacked directory isn't copied.

gothmog123 commented on 2025-08-24 17:09 (UTC)

thanks. i think it's not a real release because it's only a commit milestone or something (i'm not a coder). but includes update from electron 35 to 37, which would be great to get

gothmog123 commented on 2025-08-24 07:50 (UTC)

hello, 2025.8.1 was just released. can we update the pkgver manually or should we wait for the package update?

xiota commented on 2025-06-19 06:44 (UTC)

This package pins to specific electron version after successful build. Leaving it alone as long as it works.