Skip to content

Releases: igaster/laravel-theme

v1.0.17

24 Dec 09:28
Compare
Choose a tag to compare

Laravel 5.2 + orchestra/assets breaks combatibility... Next version will switch from L5.1 to L5.2

v1.0.16

22 Dec 07:48
Compare
Choose a tag to compare

Laravel 5.2 support

v1.0.15

11 Dec 10:23
Compare
Choose a tag to compare
  • Added Theme::configSet() to set/alter configuration at runtime
  • Theme::config('key','default') accepts an optional default parameter that will be returned if the key is not defined

v1.0.14

07 Nov 17:08
Compare
Choose a tag to compare
  1. You can use {parameters} inside any path. README updated...
  2. @css & @js are rewritten with better regular expressions. Also file lookup is performed at runtime and not cached (during Blade compilation) which should resolve some issues when hot switching themes...
  3. Removed new line in output of Theme::css / Theme::js (thanks @TechKat)

Upgrading guide:

Due to changes in output of @css and @js, you might have to manualy delete cached views from \storage\framework\views so that Laravel will be forced to rebuild them. (Both in dev and production environment)

v1.0.13

02 Jul 06:36
Compare
Choose a tag to compare
  • AWS handling (thanks kchun)
  • Readme FAQ

v1.0.12

22 Jun 07:13
Compare
Choose a tag to compare

'public' is not a hardcoded default for assets path. Paths are now extracted via laravel's public_path() function.

v1.0.11

18 Jun 08:04
Compare
Choose a tag to compare

Added configuration option to define an action when an asset is not found. Options are:

    /*
    |--------------------------------------------------------------------------
    | Set behavior if an asset is not found in a Theme hierarcy.
    | Available options: THROW_EXCEPTION | LOG_ERROR | IGNORE
    |--------------------------------------------------------------------------
    */

    'asset_not_found' => 'LOG_ERROR',

defaults to 'LOG_ERROR' if not found. Please update your theme.php configuration file to use these options.

v1.0.10

02 Jun 11:40
Compare
Choose a tag to compare

Laravel 5.1 compatibility

v1.0.9

28 May 17:47
Compare
Choose a tag to compare

Minor fixes and Readme

v1.0.8

28 May 17:27
Compare
Choose a tag to compare

Relaxing error handling and requirements