Skip to content

Releases: igaster/laravel-theme

v1.1.2

24 May 14:23
Compare
Choose a tag to compare

Allow views folder to be relative to base_path()

v1.1.1

03 Feb 23:51
Compare
Choose a tag to compare
  • setTheme middleware
  • Define themes base path in configuration path
  • Support overriding vendor packages views

thanks @JFossey for suggestions and contribution

v1.0.18

10 Jan 13:33
Compare
Choose a tag to compare

Fix theme::config bug

v1.1.0

24 Dec 09:52
Compare
Choose a tag to compare
  • Laravel 5.2 support
  • Orchestra Asset updated to Laravel 5.2

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.