Skip to content

Releases: TimboKZ/Chonky

v2.3.1

08 Jan 20:55
Compare
Choose a tag to compare

Fixes:

  • Explicitly export redux actions as people lost the ability to import them directly from their source file after Chonky was migrated to TSDX bundler.
  • Fix useEffect usage to not return things unless explicitly intended.

v2.1.0

07 Dec 01:00
Compare
Choose a tag to compare

New features:

  • Added localization/i18n support using react-intl library. i18n can be configured using i18n property on FileBrowser.
  • Added dark mode support, which can be enabled using the darkMode prop on FileBrowser.

Bug fixes:

  • Exported ThumbnailGenerator type from index.ts.

v2.0.5

20 Nov 01:21
Compare
Choose a tag to compare

Bug fixes:

  • Fixed the Expected drag drop context error when disableDragAndDrop or disableDragAndDropProvider is set to true. From now on, Chonky should never error out when DnD context is not present. Instead, it will silently disable drag & drop.
  • Fixed exports in index.ts. Type and enum exports are no longer mixed, and TS no longer complains about missing types.

v2.0.4

19 Nov 21:31
Compare
Choose a tag to compare

Bug fixes:

  • Upgraded exact-trie (again) to remove all mentions of LGPL-3.0 license from its code.

v2.0.3

15 Nov 05:05
Compare
Choose a tag to compare

New features:

  • Exported ChonkyDndFileEntryItem type and ChonkyDndFileEntryType constant from Chonky's index.ts. This helps users define custom DnD drop zones, as shows in the Advanced drag & drop example.

v2.0.2

15 Nov 04:34
Compare
Choose a tag to compare

New features:

  • Files can now be drag & dropped onto folder chain items, which will trigger the MoveFiles action.
  • Folders can now be opened by hovering them using drag & drop (open delay is ~1.5 seconds). This works for both file navbar and file list.
  • Added dndOpenable field to FileData interface. This field is useful if you want to make some file openable using double-click/enter but not DND-openable. By default, dndOpenable is true for folders.

v2.0.1

11 Nov 23:55
Compare
Choose a tag to compare

New features:

  • Added folderChainIcon field to FileData interface. It can be used to display a custom file icon in the folder chain (FileNavbar component).

Bug fixes:

  • Fixed DnDProvider component being rendered even when disableDragAndDrop prop was set to true.
  • Gave chonky-icon-fontawesome package a real README.
  • Upgraded exact-trie to the MIT-licensed version. Now all dependencies should be MIT-compliant

v2.0.0

09 Nov 21:30
Compare
Choose a tag to compare

The first Chonky 2.x release. It revamps the file action framework, adds the FileNavbar and FileContextMenu components, introduces Redux for internal state management, breaks out ChonkyIconFA into a separate package, and much more!

v1.1.7

29 Oct 20:57
Compare
Choose a tag to compare

Bug fixes:

  • Fixed broken v1.1.6 release.

v1.1.6

27 Oct 20:17
Compare
Choose a tag to compare

New features:

  • Added ChonkyIconName.paste and ChonkyIconName.share. Thanks @AndreyVanyakin!