WIP: Road to 1.0.0 #1

Draft
miguel456 wants to merge 123 commits from develop into master
3 changed files with 17 additions and 3 deletions
Showing only changes of commit 29f697d7b2 - Show all commits

View File

@ -11,7 +11,7 @@ APP_SITEHOMEPAGE=""
# Void if env is production. # Void if env is production.
NONPROD_FORCE_SECURE=false NONPROD_FORCE_SECURE=false
LOG_CHANNEL=stack LOG_CHANNEL=daily
DB_CONNECTION=mysql DB_CONNECTION=mysql
DB_HOST=127.0.0.1 DB_HOST=127.0.0.1
@ -33,7 +33,7 @@ IPGEO_API_URL="https://api.ipgeolocation.io/ipgeo"
ARCANEDEV_LOGVIEWER_MIDDLEWARE=web,auth,can:admin.maintenance.logs.view ARCANEDEV_LOGVIEWER_MIDDLEWARE=web,auth,can:admin.maintenance.logs.view
RELEASE=staffmanagement@0.6.1 RELEASE=0.6.2
SLACK_INTEGRATION_WEBHOOK= SLACK_INTEGRATION_WEBHOOK=

View File

@ -48,6 +48,20 @@ return [
/*
|--------------------------------------------------------------------------
| Application Version
|--------------------------------------------------------------------------
|
| This value is the application's version.
| It's used for informational purposes, and it'll be used for an auto-update system
| in the near future.
| Should always be the latest minor release.
|
*/
'release' => env('RELEASE', '(unknown)'),
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| SSL for non-production environments | SSL for non-production environments

View File

@ -3,7 +3,7 @@
<!-- Copyright - DO NOT REMOVE WITHOUT PERMISSION --> <!-- Copyright - DO NOT REMOVE WITHOUT PERMISSION -->
<div class="footer-copyright text-center py-3"> <div class="footer-copyright text-center py-3">
<a href="{{ config('app.url') }}"> {{ config('app.name') }} &copy; 2019-{{ now()->year }} - {{__('messages.footer_copy')}}</a> <a href="{{ config('app.url') }}"> {{ config('app.name') . ' ' . config('app.release') }} &copy; 2019-{{ now()->year }} - {{__('messages.footer_copy')}}. Took {{ round(microtime(true) - LARAVEL_START, 3) }} seconds.</a>
</div> </div>
<!-- Copyright --> <!-- Copyright -->
<!-- GNU General Public License (https://www.gnu.org/licenses/gpl-3.0.en.html) Built by Miguel Nogueira --> <!-- GNU General Public License (https://www.gnu.org/licenses/gpl-3.0.en.html) Built by Miguel Nogueira -->