Skip to content

Releases: fanoframework/fano-cli

v1.9.0

22 Jun 01:23

Choose a tag to compare

What is new

  • Add capability to add logger dependencies when create project using --with-logger parameter.
  • Improve help to allow view help of single task.
  • Improve help by highlight on task name to make it easy to spot on help.
  • Compiler defines in build.cfg in generated project now is moved to new file name defines.cfg.

v1.8.5

16 Jun 00:53

Choose a tag to compare

What is new

  • Fix issue when unit files in src/App directory of generated project can not be found by Free Pascal compiler.

v1.8.4

31 May 04:02

Choose a tag to compare

What is new

  • Fix issue #9
  • Add capability to set Free Pascal compiler binary when running build script.
  • Improve code formatting for generated build script.

v1.8.3

13 May 14:51

Choose a tag to compare

What is new

  • Fix issue #8

v1.8.2

01 May 23:02

Choose a tag to compare

What is new

  • Fix memory leak bug #7

v1.7.1

01 May 23:01

Choose a tag to compare

What is new

  • Fix memory leak bug #7

v1.8.1

10 Apr 04:31

Choose a tag to compare

This is minor bug fix

  • Improve Apache virtual host generated configuration file by excluding webfonts in ProxyPasMatch.

v1.8.0

09 Apr 13:10

Choose a tag to compare

What is new

  • Add new command --txt2inc to turn text file content, such HTML, into Pascal variable declaration statement.
$ printf "<html><head></head>\r\n<body></body></html>" | fanocli --txt2inc --var=htmlStr

It will output

{-------------begin----------------}
htmlStr : string = 
    '<html><head></head>' + LineEnding + 
    '<body></body></html>';
{-------------end------------------}

v1.7.0

25 Feb 04:02

Choose a tag to compare

What is new

  • Ability to scaffold project with CSRF support.
  • Bug fix depedency alias session manager not found when project using session use CSRF middleware factory/

v1.6.0

01 Dec 03:02

Choose a tag to compare

What is new

  • New task for minifying CSS.