Package Details: cherry-studio-electron-bin 2.0.14-1

Git Clone URL: https://aur.archlinux.org/cherry-studio-electron-bin.git (read-only, click to copy)
Package Base: cherry-studio-electron-bin
Description: AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Upstream URL: https://cherryai.com/
Keywords: agent anthropic assistant chatbot chatbotai electron llm openai
Licenses: AGPL-3.0-or-later, LicenseRef-custom
Conflicts: cherry-studio
Provides: cherry-studio
Submitter: zxp19821005
Maintainer: zxp19821005
Last Packager: zxp19821005
Votes: 3
Popularity: 0.011966
First Submitted: 2025-01-15 03:19 (UTC)
Last Updated: 2026-09-10 03:14 (UTC)

Latest Comments

1 2 3 Next › Last »

zxp19821005 commented on 2026-08-13 09:47 (UTC)

@Barafu_Albino Thanks for your feedback, fixed it.

Barafu_Albino commented on 2026-08-13 03:26 (UTC)

After upgrade to 2.0.3, does not start. Says "Migration folder not found /usr/lib/electron41/resources/migrations/sqlite-drizzle. The application was not packaged correctly"

zxp19821005 commented on 2026-04-28 01:41 (UTC)

@shanoaice Thanks for your feedback, fixed it.

shanoaice commented on 2026-04-27 03:37 (UTC)

For very weird reasons, the current cherry-studio-electron.sh is not working correctly. It launches an empty electron41 window instead. Running electron41 /usr/bin/cherry-studio-electron/app.asar lanuches the app correctly.

zxp19821005 commented on 2026-04-13 07:22 (UTC)

@txyyh Yes, the upstream had deleted it. Maybe it will come soon.

txyyh commented on 2026-04-12 11:05 (UTC) (edited on 2026-04-12 11:06 (UTC) by txyyh)

Can't build version 1.9.0, because it don't exist at now.

zxp19821005 commented on 2026-04-08 02:25 (UTC)

@linux_voyager We just need the stable verion !

zxp19821005 commented on 2026-02-25 23:44 (UTC)

@bkun31 Thanks for your feedback, fixed already.

bkun31 commented on 2026-02-18 22:20 (UTC)


Hi,

The app currently fails at runtime with an ENOENT error because it expects the app.asar.unpacked directory to exist, but the current package() function flattens the structure.

Problem: Using ${subdir}/* copies the contents but not the folder itself.

Proposed Fix: In the package() function (in the PKGBUILD), please change:

cp -Pr --no-preserve=ownership "${subdir}"/* "${pkgdir}/usr/lib/${pkgname%-bin}"

to:

cp -Pr --no-preserve=ownership "${subdir}" "${pkgdir}/usr/lib/${pkgname%-bin}/"

Removing the /* ensures that the app.asar.unpacked directory (and any others) is created correctly in /usr/lib/${pkgname%-bin}/. This allows modules like font-list to be located by the application.