Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

1,947

Downloads of v 1.2.0:

91

Last Update:

27 Jan 2022

Package Maintainer(s):

Software Author(s):

  • Famedly

Tags:

fluffychat chat flutter matrix

FluffyChat

This is not the latest version of FluffyChat available.

  • 1
  • 2
  • 3

1.2.0 | Updated: 27 Jan 2022

Downloads:

1,947

Downloads of v 1.2.0:

91

Maintainer(s):

Software Author(s):

  • Famedly

FluffyChat 1.2.0

This is not the latest version of FluffyChat available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install FluffyChat, run the following command from the command line or from PowerShell:

>

To upgrade FluffyChat, run the following command from the command line or from PowerShell:

>

To uninstall FluffyChat, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade fluffychat -y --source="'INTERNAL REPO URL'" --version="'1.2.0'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade fluffychat -y --source="'INTERNAL REPO URL'" --version="'1.2.0'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install fluffychat
  win_chocolatey:
    name: fluffychat
    version: '1.2.0'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'fluffychat' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.2.0'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller fluffychat
{
    Name     = "fluffychat"
    Version  = "1.2.0"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'fluffychat':
  ensure   => '1.2.0',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved as a trusted package on 27 Jan 2022.

Description

FluffyChat is a multi-platform Matrix client written in Dart/Flutter. It compiles to native code on Android, iOS, macOS, Windows and Linux and renders with Skia on the web. FluffyChat is just a hobby project from the developers of Famedly and licensed under AGPLv3. It follows a design philosophy to be minimalistic, inclusive and easy to use.

Please Note: This is an automatically updated package. If you find it is out of date by more than a day or two, please contact the maintainer(s) and let them know the package is no longer updating correctly.


tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop';
$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$packageArgs = @{
  packageName   = 'fluffychat'
  checksum = '0E2BDDB9C346DE6157E413ABD478F7C4D87C615E55C2761794A938BCE27B1B7E'
  checksumType = 'sha256'
  Url = 'https://gitlab.com/famedly/fluffychat/-/archive/v1.2.0/fluffychat-v1.2.0.zip'
  UnzipLocation = $toolsDir
}

Install-ChocolateyZipPackage @packageArgs

Install-ChocolateyShortcut -ShortcutFilePath "$($env:SystemDrive)\ProgramData\Microsoft\Windows\Start Menu\Programs\FluffyChat.lnk" -TargetPath "$toolsDir\fluffychat.exe"
Install-ChocolateyShortcut -ShortcutFilePath "$([System.Environment]::GetFolderPath([System.Environment+SpecialFolder]::DesktopDirectory))\FluffyChat.lnk" -TargetPath "$toolsDir\fluffychat.exe" 
tools\chocolateyuninstall.ps1
$ErrorActionPreference = 'Stop';

Remove-Item -Path "$($env:SystemDrive)\ProgramData\Microsoft\Windows\Start Menu\Programs\FluffyChat.lnk" -Force
Remove-Item -Path "$([System.Environment]::GetFolderPath([System.Environment+SpecialFolder]::DesktopDirectory))\FluffyChat.lnk" -Force

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
FluffyChat 1.11.2 101 Friday, May 5, 2023 Approved
FluffyChat 1.11.1 49 Sunday, April 30, 2023 Approved
FluffyChat 1.11.0 45 Wednesday, April 19, 2023 Approved
FluffyChat 1.10.0 91 Sunday, March 12, 2023 Approved
FluffyChat 1.9.0 71 Saturday, February 4, 2023 Approved
FluffyChat 1.8.0 68 Monday, January 2, 2023 Approved
FluffyChat 1.7.3 58 Friday, December 23, 2022 Approved
FluffyChat 1.7.2 37 Monday, December 19, 2022 Approved
FluffyChat 1.7.1 64 Wednesday, November 23, 2022 Approved
FluffyChat 1.7.0 46 Friday, November 18, 2022 Approved
FluffyChat 1.6.4.20220909 85 Friday, September 9, 2022 Approved
FluffyChat 1.6.4 37 Thursday, September 8, 2022 Approved
FluffyChat 1.6.3 59 Tuesday, August 30, 2022 Approved
FluffyChat 1.6.2 48 Sunday, August 21, 2022 Approved
FluffyChat 1.6.1 54 Sunday, August 14, 2022 Approved
FluffyChat 1.6.0 49 Friday, August 12, 2022 Approved
FluffyChat 1.5.0 91 Monday, June 6, 2022 Approved
FluffyChat 1.4.0 80 Friday, May 6, 2022 Approved
FluffyChat 1.3.1 89 Wednesday, March 23, 2022 Approved
FluffyChat 1.3.0 59 Saturday, March 19, 2022 Approved
FluffyChat 1.2.0 91 Thursday, January 27, 2022 Approved
FluffyChat 1.1.0 62 Tuesday, December 28, 2021 Approved
FluffyChat 1.0.1 78 Wednesday, December 1, 2021 Approved
FluffyChat 0.42.3 75 Tuesday, November 16, 2021 Approved
FluffyChat 0.42.2 72 Monday, November 8, 2021 Approved
FluffyChat 0.42.0 85 Sunday, November 7, 2021 Approved

v1.2.0

  • Unreleased FluffyChat 1.2.0 brings a new stories feature, a lot of bug fixes and improved voice messages.
  • change: Set client ID in invite action link (Krille Fear)
  • design: Improved animations in chat view when changing account (The one with the Braid)
  • design: Remove redundant voice message button (S1m)
  • design: Use more adaptive elements (Krille Fear)
  • feat: Add button to record a video on Android (S1m)
  • feat: Add static + button to pick reaction (S1m)
  • feat: Better in app video player (Christian Pauly)
  • feat: Enable compression and thumbnails for videos (Christian Pauly)
  • feat: Nicer file event design (Krille Fear)
  • feat: Recording dialog with displaying amplitude (Christian Pauly)
  • feat: Remember homeserver on search page (Christian Pauly)
  • feat: Save files images and videos (Christian Pauly)
  • feat: Settings for stories (Christian Pauly)
  • feat: Share to story (Christian Pauly)
  • feat: Stories (Krille Fear)
  • fix: Add missing routes (Christian Pauly)
  • fix: Better thumbnails (Krille Fear)
  • fix: Do not setup UP if init from an UP action (S1m)
  • fix: linux notifications (Raatty)
  • fix: Play video without thumbnail if none (S1m)
  • fix: Show message bubble on download only video attachments (Drews Clausen)
  • fix: Show scrollDownButton only if selectedEvents is empty (S1m)
  • fix: Snapcraft image (Krille Fear)
  • fix: Snapcraft.yaml (Christian Pauly)
  • fix: Use system fonts except for desktop (Christian Pauly)
  • fix: Video playback on iOS (John Francis Sukamto)
  • fix: Videoplayer (Christian Pauly)
  • followup: Improve stories (Christian Pauly)
  • Improve website SEO tagging (Marcel)
  • Increase font size granularity (S1m)
  • refactor: /command hints add tooltips, test for missing hints, script to generate glue code, hints for dm, create, clearcache, discardsession (Steef Hegeman)
  • refactor: Make more files null safe (Christian Pauly)
  • refactor: Make style settings null safe (Krille Fear)
  • systemNavigationBarColor ← appBar.backgroundColor (Steef Hegeman)
  • Translated using Weblate (Chinese (Simplified)) (Eric)
  • Translated using Weblate (Chinese (Simplified)) (Lynn Nakanishi Lin(林中西))
  • Translated using Weblate (Chinese (Traditional)) (Lynn Nakanishi Lin(林中西))
  • Translated using Weblate (Croatian) (Milo Ivir)
  • Translated using Weblate (Czech) (Milan Korecky)
  • Translated using Weblate (Dutch) (Jelv)
  • Translated using Weblate (Estonian) (Priit Jõerüüt)
  • Translated using Weblate (Finnish) (Aminda Suomalainen)
  • Translated using Weblate (French) (Anne Onyme 017)
  • Translated using Weblate (Galician) (Xosé M)
  • Translated using Weblate (German) (Christian)
  • Translated using Weblate (German) (Jana)
  • Translated using Weblate (German) (TeemoCell)
  • Translated using Weblate (Hebrew) (MusiCode1)
  • Translated using Weblate (Hebrew) (y batvinik)
  • Translated using Weblate (Hungarian) (Balázs Meskó)
  • Translated using Weblate (Indonesian) (Linerly)
  • Translated using Weblate (Korean) (Kim Tae Kyeong)
  • Translated using Weblate (Polish) (KSP Atlas)
  • Translated using Weblate (Russian) (Nikita Epifanov)
  • Translated using Weblate (Slovenian) (John Jazbec)
  • Translated using Weblate (Spanish) (Valentino)
  • Translated using Weblate (Turkish) (Oğuz Ersen)
  • Translated using Weblate (Ukrainian) (Ihor Hordiichuk)

Full changelog: https://gitlab.com/famedly/fluffychat/-/blob/main/CHANGELOG.md


This package has no dependencies.

Discussion for the FluffyChat Package

Ground Rules:

  • This discussion is only about FluffyChat and the FluffyChat package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or FluffyChat, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus