Browse Source

closes #46, #47, #77, #89

pull/99/head
KodeStar 7 years ago
parent
commit
38f8143fd2
  1. 15
      CHANGELOG.md
  2. 2
      config/app.php
  3. 2
      resources/views/app.blade.php

15
CHANGELOG.md

@ -1,5 +1,20 @@
# Release Notes # Release Notes
## v1.4.0 (2018-02-18)
### Added
- Tag(folder) support
- Image preview for uploading icons
- A load of supported apps, full list of apps https://github.com/linuxserver/Heimdall/projects/1
### Changed
- Edited vendor/laravelcollective/html/src/FormBuilder.php to allow relative links #3369de9
- Changed links to use relative links for reverse proxy support
- Links open in new tab
### Fixed
- adds all the fixes in the 1.3.x point releases and on master
## v1.3.0 (2018-02-09) ## v1.3.0 (2018-02-09)
### Added ### Added

2
config/app.php

@ -14,7 +14,7 @@ return [
*/ */
'name' => env('APP_NAME', 'Heimdall'), 'name' => env('APP_NAME', 'Heimdall'),
'version' => '1.3.4', 'version' => '1.4.0',
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------

2
resources/views/app.blade.php

@ -88,7 +88,7 @@
<script src="//ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script src="//ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>!window.jQuery && document.write('<script src="/js/jquery-3.3.1.min.js"><\/script>')</script> <script>!window.jQuery && document.write('<script src="/js/jquery-3.3.1.min.js"><\/script>')</script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script> <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<script src="{{ asset('js/app.js') }}"></script> <script src="/js/app.js"></script>
@yield('scripts') @yield('scripts')
</body> </body>

Loading…
Cancel
Save