Package Details: fluffychat 1.26.1-2

Git Clone URL: https://aur.archlinux.org/fluffychat.git (read-only, click to copy)
Package Base: fluffychat
Description: The cutest instant messenger in the [matrix]
Upstream URL: https://github.com/krille-chan/fluffychat
Keywords: Chat Matrix
Licenses: AGPL-3.0-only
Submitter: garionion
Maintainer: xiota
Last Packager: xiota
Votes: 26
Popularity: 0.21
First Submitted: 2020-10-29 10:59 (UTC)
Last Updated: 2025-06-01 17:47 (UTC)

Dependencies (15)

Required by (0)

Sources (1)

Pinned Comments

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 Next › Last »

garionion commented on 2021-03-25 12:26 (UTC)

thanks @dr460nf1r3 and @BenTheTechGuy :)

dr460nf1r3 commented on 2021-03-24 17:28 (UTC)

there is gtk3 missing in makedepends as well

BenTheTechGuy commented on 2021-03-21 02:26 (UTC)

Please change arch from any to x86_64 as for the time being flutter only supports x86_64 (arm and 32-bit x86 are in the works)

dr460nf1r3 commented on 2021-03-07 23:07 (UTC)

Misses git & unzip in makedepends

garionion commented on 2021-03-04 09:50 (UTC)

@sseneca thank you for pointing the thing with pantalaimon out. when i first submitted this package, it was necessary.

sseneca commented on 2021-02-25 08:34 (UTC) (edited on 2021-02-26 11:05 (UTC) by sseneca)

Two questions:

I'm having an issue with Fluffychat where the insert cursor never updates. I explained it more in this issue: https://gitlab.com/famedly/fluffychat/-/issues/317. Is anyone having anything like this? Fluffychat does run, but it spits out this error:

flutter: ┌───────────────────────────────────────────────────────────────────────────────────────────────────
flutter: │ MissingPluginException(No implementation found for method listen on channel flutter_keyboard_visibility)
flutter: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
flutter: │ #0   MethodChannel._invokeMethod (package:flutter/src/services/platform_channel.dart:156)
flutter: │ #1   <asynchronous suspension>
flutter: │ #2   EventChannel.receiveBroadcastStream.<anonymous closure> (package:flutter/src/services/platform_channel.dart:545)
flutter: │ #3   <asynchronous suspension>
flutter: │ #4   
flutter: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
flutter: │ ⛔ Capture exception
flutter: └───────────────────────────────────────────────────────────────────────────────────────────────────

Second, pantalaimon is listed as an optional dependency for e2ee, but for me e2ee works without it installed.

garionion commented on 2021-01-29 10:22 (UTC)

thanks @sseneca, added while updated to 0.26.1

sseneca commented on 2021-01-29 00:13 (UTC)

Why not add one line to disable Flutter analytics while you're at it?

diff --git a/PKGBUILD b/PKGBUILD
index 00469e6..d7e3f66 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -21,6 +21,7 @@ sha256sums=('fa2ba98775f65c9bd151881696b9d2d5672bb260ed24d83184010a0d436e140a'

 prepare() {
   export PATH="${srcdir}/flutter/bin:$PATH"
+  flutter config --no-analytics
   flutter config --enable-linux-desktop
   cd ${pkgname}-v$pkgver
   echo "dependency_overrides:\n  intl: 0.17.0-nullsafety.2" >> pubspec.yaml

garionion commented on 2021-01-28 22:41 (UTC)

@SeerLite @nobodywasishere this issue probably was that you were not part of the flutterusers group. thanks to celogeek (https://aur.archlinux.org/packages/fluffychat-web/) this issues should be no more. (i've shamelessly stolen his part of the PKGBUILD were he downloads flutter and sets the PATH)

nobodywasishere commented on 2021-01-28 18:48 (UTC)

The line flutter config --enable-linux-desktop is giving issues (as well as with all other flutter packages) as it tries to do stuff outside of the srcdir or pkgdir. Gives the error:

  -> Extracting fluffychat-v0.25.1.tar.gz with bsdtar
==> Starting prepare()...
mkdir: cannot create directory ‘/opt/flutter/bin/cache’: Permission denied
==> ERROR: A failure occurred in prepare().
    Aborting...

I tried adding --build-dir=${pkgdir} to the end of the command but it had no effect.