Skip to content

Releases: katzer/fifa

1.5.2

26 Aug 19:28

Choose a tag to compare

What's new

Released at: 26.08.2024

  1. Upgraded to mruby 3.2.0

  2. Compiled binary for OSX build with MacOSX11.3 SDK

  3. Added binary for arm64-apple-darwin19 target

Full Changelog

1.5.1

18 Mar 17:13

Choose a tag to compare

What's new

Released at: 18.03.2020

  1. Compiled binary for OSX build with MacOSX10.15 SDK

  2. Upgraded to mruby 2.1.0

Full Changelog

1.5.0

13 Aug 11:19

Choose a tag to compare

What's new

Released at: 13.08.2019

  1. Compiled with MRB_WITHOUT_FLOAT

  2. Compiled binary for OSX build with MacOSX10.13 SDK (Darwin17)

  3. Upgraded to mruby 2.0.1

Full Changelog

1.4.7

02 Jan 09:17

Choose a tag to compare

Whats new

  1. New command-line argument parser.

    Before:

    $ fifa -f=url
    

    After:

    $ fifa -f url
    
  2. Support for the new KeePass properties.

  3. Internal code rewrite and restructure.

  4. Added -n flag as an alias for --no-color.

  5. Removed LVAR section for non test builds.

  6. Upgraded to mruby 2.0.0

1.4.6

16 Aug 15:22

Choose a tag to compare

Whats new

  1. Increase MacOSX min SDK version from 10.5 to to 10.11
  2. Remove 32-bit build targets

1.4.5

26 Jun 07:42

Choose a tag to compare

Whats new

  1. Row number for table output starts with 1. instead of 0.

  2. Renamed target x86_64-pc-linux-busybox to x86_64-alpine-linux-musl

  3. Improved compiler optimizations: Shrinks binary size by 1/4

  4. Upgrade to mruby-1.4.1

  5. Added --group flag

    $ fifa -c type=server type=web type=db type=tool
    41
    82
    84
    85
    
    $ fifa -c -g type # Finds out types dynamically
    41
    82
    84
    85

1.4.4

17 Nov 12:42

Choose a tag to compare

No notable changes

1.4.3

11 Jul 19:31

Choose a tag to compare

Whats new

  1. Upgrade to mruby-1.3.0 from mruby-1.2.0

1.4.2

31 May 15:39

Choose a tag to compare

Whats new

  1. Various bug fixes and improvements and performance enhancements.

  2. Colorised error output.

  3. Return result set in sorted order only if -s flag is given.

    $ ff -s type=db
    
  4. Support connection details in json format:

    $ ff -f=json app-package-1
    {"id":"app-package-1","name":"App-Package 1","type":"server",...}
    
  5. Switched from gcc to clang compiler.

  6. Compile binary for OSX with MacOSX10.11 SDK (Darwin15).

1.4.1

15 Mar 15:37

Choose a tag to compare

Whats new

  1. Colorized error output.

  2. Added column to ski format to indicate if the planet is valid:

    $ ff -f=ski valid-package invalid-package
    1|valid-package|server|App Package|user@hostname-1.de
    0|valid-package|server|App Package|missing user
    
  3. Added --no-color flag to disable the colorized output.

  4. Print errors without line breaks if not pretty printed.

  5. Log errors if referenced server is unknown or invalid.

  6. Return result set in sorted order.

  7. Exit with failure if type is missing.