Skip to content

Releases: fanoframework/fano-cli

v1.8.4

31 May 04:02
Compare
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
Compare
Choose a tag to compare

What is new

  • Fix issue #8

v1.8.2

01 May 23:02
Compare
Choose a tag to compare

What is new

  • Fix memory leak bug #7

v1.7.1

01 May 23:01
Compare
Choose a tag to compare

What is new

  • Fix memory leak bug #7

v1.8.1

10 Apr 04:31
Compare
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
Compare
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
Compare
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
Compare
Choose a tag to compare

What is new

  • New task for minifying CSS.

v1.5.1

31 Oct 07:46
b083624
Compare
Choose a tag to compare

What is new

  • Fix bug when project created with --project-mhd is cloned and build.cfg.sample is copied, build fails due to missing conditional defines -dLIBMICROHTTPD.

v1.5.0

25 Oct 03:08
Compare
Choose a tag to compare

What is new

  • Capability to scaffold Fano Framework web application project with session support using database as session storage (--with-session=db)