Zusam Versions Save

Private groups to share messages, photos, videos, links with friends and family.

0.5.5

5 months ago

To upgrade, follow the upgrade guide.

Log

  • Update documentation
  • Pin preact to 10.17.1 to fix wrong order of messages
  • Rename the '*' serialization group to 'public'
  • Fix group creation
  • Add a basic CI on github
  • Remove support for php 8.0
  • Rework & fix the objectNormalizer
  • Various fixes, updates and linting

Remarks

Mostly bugfix release.

0.5.4

7 months ago

To upgrade, follow the upgrade guide.

Log

  • Reworked translation files names
  • Added Korean, Hungarian, German, Tamazight and Chinese translations
  • Fix SUBPATH feature
  • Correctly handle ctrl+clic on notifications
  • Rework container to be rootless
  • Add default miniature image when the main errors out
  • Use Symfony's cache to all things related to groups
  • Remove caching from nginx to simplify and only rely on the browser
  • Add some safeguards to loading messages
  • Fix avatars when using dark reader
  • Fix message preview generation
  • Fix some cases of undefined variables
  • Fix some youtube search links embeds
  • Improve speed of group GetPage controller
  • Improve speed of some API endpoints
  • Improve the "requires javascript" message
  • Remove FrameworkExtraBundle
  • Remove insta embed; fix bandcamp embed

Remarks

Mostly bugfix release.

0.5.3

1 year ago

To upgrade, follow the upgrade guide.

Log

  • Update French translation from Weblate
  • Rework notifications to mark them as read instead of removing them
  • Don't remove notifications older than 1 year anymore
  • Add easter egg to go to a random message within a group: /groups/:id/random
  • Display loading animation for files
  • Remove service workers
  • Fix bookmark handling
  • Fix a lot of glightbox display issues
  • Fix drag'n drop polyfill activating outside of writer
  • Fix marking notifications as read
  • Fix multi-queues file upload
  • Fix embed for some youtube URLs
  • Fix refresh of user-settings component

Remarks

Mostly bugfix release.

0.5.2

1 year ago

To upgrade, follow the upgrade guide.

Log

  • Make files reordering possible via drag'n drop
  • Add dutch to the webapp languages (thanks Matthias)
  • Update container to alpine 3.16
  • Add some dev scripts
  • Replace nlg by glightbox
  • Add a route only for login throttling
  • Replace yarn by npm for the webapp
  • Rework container image creation process

Remarks

Minor feature release.

0.5.1

1 year ago

To upgrade, follow the upgrade guide.

Log

  • Disable submit button if upload is in progress
  • Add parameters to the configuration file to
  • Throttle login attempts (vulnerability issue found by Mephue)
  • Add a lot of configuration parameters (check to .env file)
  • Switch default .env to "prod" instead of "dev"

Remarks

Mostly bugfix release.

0.5

2 years ago

To upgrade, follow the upgrade guide.

Log

  • Allow pasting image file from clipboard
  • Add a 'read' attribute to notifications (not used for now)
  • Add PrepareNotifications command
  • Add Tag entity (not used for now)
  • Add a 'type' attribute to message entities (not used for now)
  • Add bookmark entity
  • Add breadcrumbs navigation when displaying messages
  • Add loading background animation for messages
  • Use i18next for the translation
  • Use react router v6 as routing system
  • Better embed instagram posts
  • Correctly embed application/ogg links
  • Embed invidious links
  • Fix lichess blog urls embed
  • Fix links not being recognized as sometimes ending with a dot
  • Fix youtube shorts embeds
  • Limit notification list to 20 items
  • Remove RepairDatabase command
  • Remove image in-browser reduction
  • Upgrade container to alpine 3.15
  • Upgrade to Symfony 6
  • Upgrade to bootstrap 5.1
  • Upgrade to parcel v2
  • Upgrade to yarn berry

Remarks

Feature release.
This update has a database structure change. Please see the corresponding migration file.
The data migration procedure was changed for this update. Don't forget to backup your data before applying it.

0.4.5

2 years ago

To upgrade, follow the upgrade guide.

Log

  • Add bot feature
  • Add UserStatistics command
  • Add GroupStatistics command
  • Add StorageStatistics command
  • Add spinner during search
  • Add warning when javascript is disabled
  • Allow messages to disable embeds with the no_embed key
  • Don't generate preview based on URLs on message creation
  • Limit number of notifications on the frontend to 100
  • Use alpine's composer in the container build
  • Fix api info 'allow_email' not being boolean
  • Fix nlg not hidding on navigation
  • Fix subpath issues on create-group

Remarks

Minor feature release.

0.4.4

3 years ago

To upgrade, follow the upgrade guide.

Log

  • Add pdf upload support
  • Replace the "view original" button by a download button in the media view
  • Add confirmation effect on bookmark addition/removal
  • Fix a lot of possible crashes with the search
  • Fix twitch embeds
  • Fix ctrl+enter not working on multiple browsers (to send current message)
  • Fix issues when installing on a subpath

Remarks

Minor feature release.

0.4.3

3 years ago

To upgrade, follow the upgrade guide.

Log

  • Fix lichess embeds
  • Avoid multiple calls to the endpoint for the same search
  • Fix public link not taking subpath into account
  • Use user submitted createdAt on message creation
  • Change display of video being converted
  • Change icon for the backButton
  • Display notification title on hover
  • Remove hover effect on avatars
  • Increase XL layout threshold
  • Fix bookmark board when some messages are missing
  • Rework options of PreparePreviews command
  • Update API dependencies (fix youtube embeds)

Remarks

Minor fix release.
You can fix the existing youtube embeds (if some are missing) with the PreparePreviews command.

php bin/console zusam:prepare-previews --force --filter=youtube.com
php bin/console zusam:prepare-previews --force --filter=youtu.be

I wanted to make this as the last 0.4.x update but it's hard for me to work on Zusam at the time.
I decided that it's best to make some tiny releases. All the 0.4.x releases will be easy upgrades and can be done at once if you don't want to do each one.
I started to work on the big 0.5 but it will probably be delayed to the end of the year.

0.4.2

3 years ago

To upgrade, follow the upgrade guide.

Log

  • Add auto-generated API documentation at /api/doc
  • The webapp now correctly handles api upload capabilities
  • Enable reset of the user's own API key
  • Use the Symfony UUID polyfill
  • Embed arte.tv
  • Add a new feature: bookmarks
  • Rework file upload inner working to make them more reliable
  • Enhance notifications display
  • Various fixes

Remarks

Minor feature release.
This release fixes support for emails login with a '+' in them. If you have user like that, they will not be able to log in anymore.
You can fix this by running the following on the database:

UPDATE user SET login = replace(login, ' ', '+');