diff --git a/.env.example b/.env.example index 7683644..6c1a6bc 100644 --- a/.env.example +++ b/.env.example @@ -17,7 +17,7 @@ APP_DESCRIPTION="Integrate Steam Widgets of your game/app into your website" APP_KEYWORDS="steam, widgets, steam widgets, steam game widget, steam app widget, steam server widget, steam player widget" APP_DEBUG=true APP_BASEDIR="" -APP_SESSION=true +APP_TIMEZONE=null APP_LINK_GITHUB="https://github.com/danielbrendel" APP_LINK_STEAM="https://store.steampowered.com/developer/danielbrendel/" APP_REPOSITORY="danielbrendel/steamwidgets-web" @@ -31,9 +31,15 @@ APP_EXAMPLE_WORKSHOP="" APP_EXAMPLE_GROUP="" APP_FOOTER_NOTICE="${APP_NAME} is not affiliated with Valve or Steam" APP_STATSPASSWORD="test" +APP_ENABLEDONATION=true STEAM_API_KEY="" +# Session +SESSION_ENABLE=true +SESSION_DURATION=0 +SESSION_NAME=null + # Redis settings REDIS_HOST=localhost REDIS_PORT=6379 @@ -49,6 +55,7 @@ DB_PASSWORD="" DB_PORT=3306 DB_DATABASE=asatru DB_DRIVER=mysql +DB_CHARSET="utf8" # SMTP settings SMTP_FROMNAME="Test" @@ -57,4 +64,7 @@ SMTP_HOST="" SMTP_PORT=587 SMTP_USERNAME="" SMTP_PASSWORD="" -SMTP_ENCRYPTION=tls \ No newline at end of file +SMTP_ENCRYPTION=tls + +# Logging +LOG_ENABLE=true \ No newline at end of file diff --git a/app/resources/sass/app.scss b/app/resources/sass/app.scss index 7d331c5..62803ca 100644 --- a/app/resources/sass/app.scss +++ b/app/resources/sass/app.scss @@ -279,6 +279,11 @@ tbody strong { text-decoration: underline; } +.sponsoring { + position: relative; + margin-top: 35px; +} + .stats-input { padding: 8px; color: rgb(50, 50, 50); @@ -450,6 +455,14 @@ tbody strong { padding-top: 45px; } +.background-get-started { + background-color: rgb(35, 55, 79); + @media screen and (min-width: 768px) { + border-radius: 10px; + } + margin-bottom: 30px; +} + .button-get-started { margin-top: 50px; margin-bottom: 50px; diff --git a/app/views/error/exception_debug.php b/app/views/error/exception_debug.php index f3c94aa..77ab5f0 100644 --- a/app/views/error/exception_debug.php +++ b/app/views/error/exception_debug.php @@ -2,6 +2,7 @@
+