Skip to content

Releases: xy2z/capro

1.0.0-alpha.37

15 Dec 19:27

Choose a tag to compare

  • Stub index.html (for new sites) now show capro version.
  • Added a notice when using the serve command, it just doesn't work properly yet...
  • dev branch CONTRIBUTING file updated.

1.0.0-alpha.36

08 Jul 19:47

Choose a tag to compare

  • Added composer script for 'capro' so you can call composer capro <command> if you made the project with the capro new <site> command

1.0.0-alpha.35

17 Feb 11:43

Choose a tag to compare

1.0.0-alpha.34

11 Feb 13:12

Choose a tag to compare

  • Fixed "capro new" command.

1.0.0-alpha.33.1 (composer bin fix)

11 Feb 12:55

Choose a tag to compare

Fix for composer so it placed capro in global vendor dir (capro.phar was not changed)

1.0.0-alpha.33 (first phar test)

11 Feb 12:45
00e9f5d

Choose a tag to compare

Test the new phar build via Box and php-scoper.

1.0.0-alpha.32

08 Aug 20:48

Choose a tag to compare

  • Fixed a few bugs with 'capro serve' command. (still has a few weird bugs)
  • Added support for placeholders in yaml front matter (#17)

1.0.0-alpha.31

02 Aug 17:57

Choose a tag to compare

Fix bug with no .env file.

1.0.0-alpha.30

02 Aug 17:53

Choose a tag to compare

  • cache dir default location is moved to views/cache. (remember to add it to your .gitignore)
  • some code cleanup
  • Build output now only prints one line on success. This can later be changed using a verbose cli argument/option.
  • cache files are no longer being wiped before each build.

1.0.0-alpha.29

01 Aug 09:35

Choose a tag to compare

  • added $self as a variable to all views which can be used to get href and other stuff, eg. $self->href
  • added exclude() method to Capro class, so you can do Capro::pages()->exclude($self)->get() (it also takes an array)
  • added orderByDesc() Capro method.
  • Added count() Capro method. so you can do Capro::pages()->count() instead of count(Capro::pages()->get())