Skip to content

Releases: alebcay/cooler

v0,7,4

28 Mar 00:19
Compare
Choose a tag to compare

Bug Fixes

  • #6 - checks if file provided is a file, not a folder (unless empty)

Known Issues

  • Will not work if the Cooler bundle is not in the current working directory
    • Solution: cd or pushd to directory containing bundle file, then run cooler

v0.7.3

13 Mar 20:53
Compare
Choose a tag to compare

Bug Fixes

  • Rewrote one rather important line of code for better organization and to fix ignored arguments

v0.7.2

08 Mar 21:05
Compare
Choose a tag to compare

Bug Fixes

  • Fixed critical bug in which bundles could not be imported or listed

v0.7.1

06 Mar 03:09
Compare
Choose a tag to compare

Bug Fixes

  • Exporting/importing to/from bundle in the current directory wasn't working

v0.7.0

06 Mar 02:47
Compare
Choose a tag to compare

New Features

  • Added support for the Unix settings export software Mackup
    • Addresses lra/mackup#223
    • Include your application settings in your Cooler bundle with the --mackup flag on export, and apply the settings with the flag on import
    • Using --mackup will make your bundles a lot bigger, so use this feature wisely
  • Using LZMA compression instead of GZip
    • Slightly better for dealing with the insane file sizes that Mackup pumps in (not much that can be done about it though)
    • ALL PREVIOUS COOLER BUNDLES CREATED WITH PREVIOUS COOLER VERSIONS ARE NOW INCOMPATIBLE!

v0.6.0

04 Mar 22:43
Compare
Choose a tag to compare

New Features

  • Support for password protected Cooler bundles (brew export /to/some/bundle.cb --password-protect)

v0.5.1

04 Mar 14:11
Compare
Choose a tag to compare

New Features

  • Install/update script now defaults to installing the latest release, not fresh from head (which might be broken)
  • cooler update --dev now updates from head, while cooler update just grabs the latest release

v0.5.0

04 Mar 13:02
Compare
Choose a tag to compare

New Features

  • list command now lists the contents of a Cooler bundle
  • Cooler now accepts the bundle name argument as a path to the bundle, NOT the name of the bundle (e.g. you should now provide cooler import /foo/bar/bundle.cb instead of cooler import /foo/bar/bundle). This allows users to use their own file extensions, for whatever reasons
    • Old cooler bundles are still compatible, new bundles created are still backwards-compatible

v0.4.9

02 Mar 00:20
Compare
Choose a tag to compare

New Features

  • Self-update function with cooler update

Bug Fixes

  • Syntax cleanup and nitpicks
    • Quote everything ( #1 )
    • Check $EUID instead of $UID ( #3 )
  • Improved error handling
    • Protect against history expression expansion ( #2 )
    • Stop on fatal errors ( #4 )

v0.4.8

01 Mar 19:18
Compare
Choose a tag to compare

New Features

  • Export function now tells you where the finished bundle is located

Bug Fixes

  • Import and export now working for bundles that aren't in the current working directory.
    • For example, the following would not have worked before, but is now functioning properly:
      cooler export /some_other_dir_path/myExportBundleName and cooler import /some_other_dir_path/myExportBundleName

Known Issues

  • Errors given if user does not have write access to the location where a bundle is stored (or where one will be made)