mirror of
https://github.com/SophiaAtkinson/steamwidgets-web.git
synced 2025-06-26 17:17:42 -07:00
fix for PR
This commit is contained in:
14
.env.example
14
.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_KEYWORDS="steam, widgets, steam widgets, steam game widget, steam app widget, steam server widget, steam player widget"
|
||||||
APP_DEBUG=true
|
APP_DEBUG=true
|
||||||
APP_BASEDIR=""
|
APP_BASEDIR=""
|
||||||
APP_SESSION=true
|
APP_TIMEZONE=null
|
||||||
APP_LINK_GITHUB="https://github.com/danielbrendel"
|
APP_LINK_GITHUB="https://github.com/danielbrendel"
|
||||||
APP_LINK_STEAM="https://store.steampowered.com/developer/danielbrendel/"
|
APP_LINK_STEAM="https://store.steampowered.com/developer/danielbrendel/"
|
||||||
APP_REPOSITORY="danielbrendel/steamwidgets-web"
|
APP_REPOSITORY="danielbrendel/steamwidgets-web"
|
||||||
@ -31,9 +31,15 @@ APP_EXAMPLE_WORKSHOP=""
|
|||||||
APP_EXAMPLE_GROUP=""
|
APP_EXAMPLE_GROUP=""
|
||||||
APP_FOOTER_NOTICE="${APP_NAME} is not affiliated with Valve or Steam"
|
APP_FOOTER_NOTICE="${APP_NAME} is not affiliated with Valve or Steam"
|
||||||
APP_STATSPASSWORD="test"
|
APP_STATSPASSWORD="test"
|
||||||
|
APP_ENABLEDONATION=true
|
||||||
|
|
||||||
STEAM_API_KEY=""
|
STEAM_API_KEY=""
|
||||||
|
|
||||||
|
# Session
|
||||||
|
SESSION_ENABLE=true
|
||||||
|
SESSION_DURATION=0
|
||||||
|
SESSION_NAME=null
|
||||||
|
|
||||||
# Redis settings
|
# Redis settings
|
||||||
REDIS_HOST=localhost
|
REDIS_HOST=localhost
|
||||||
REDIS_PORT=6379
|
REDIS_PORT=6379
|
||||||
@ -49,6 +55,7 @@ DB_PASSWORD=""
|
|||||||
DB_PORT=3306
|
DB_PORT=3306
|
||||||
DB_DATABASE=asatru
|
DB_DATABASE=asatru
|
||||||
DB_DRIVER=mysql
|
DB_DRIVER=mysql
|
||||||
|
DB_CHARSET="utf8"
|
||||||
|
|
||||||
# SMTP settings
|
# SMTP settings
|
||||||
SMTP_FROMNAME="Test"
|
SMTP_FROMNAME="Test"
|
||||||
@ -57,4 +64,7 @@ SMTP_HOST=""
|
|||||||
SMTP_PORT=587
|
SMTP_PORT=587
|
||||||
SMTP_USERNAME=""
|
SMTP_USERNAME=""
|
||||||
SMTP_PASSWORD=""
|
SMTP_PASSWORD=""
|
||||||
SMTP_ENCRYPTION=tls
|
SMTP_ENCRYPTION=tls
|
||||||
|
|
||||||
|
# Logging
|
||||||
|
LOG_ENABLE=true
|
@ -279,6 +279,11 @@ tbody strong {
|
|||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sponsoring {
|
||||||
|
position: relative;
|
||||||
|
margin-top: 35px;
|
||||||
|
}
|
||||||
|
|
||||||
.stats-input {
|
.stats-input {
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
color: rgb(50, 50, 50);
|
color: rgb(50, 50, 50);
|
||||||
@ -450,6 +455,14 @@ tbody strong {
|
|||||||
padding-top: 45px;
|
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 {
|
.button-get-started {
|
||||||
margin-top: 50px;
|
margin-top: 50px;
|
||||||
margin-bottom: 50px;
|
margin-bottom: 50px;
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
|
||||||
<title>Asatru PHP - Exception</title>
|
<title>Asatru PHP - Exception</title>
|
||||||
|
|
||||||
@ -25,6 +26,12 @@
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1087px) {
|
||||||
|
.ex_image {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.ex_box {
|
.ex_box {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
@ -32,6 +39,12 @@
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1087px) {
|
||||||
|
.ex_box {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.ex_header_num {
|
.ex_header_num {
|
||||||
position: relative;
|
position: relative;
|
||||||
@ -76,24 +89,25 @@
|
|||||||
position: relative;
|
position: relative;
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
margin-top: 20px;
|
margin-top: 30px;
|
||||||
padding-top: 10px;
|
|
||||||
padding-bottom: 10px;
|
|
||||||
padding-left: 50px;
|
|
||||||
padding-right: 50px;
|
|
||||||
width: 51px;
|
|
||||||
border: 1px solid rgb(51, 63, 104);
|
|
||||||
border-radius: 5px;
|
|
||||||
background-color: rgb(45, 95, 245);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.ex_refresh a {
|
.ex_refresh a {
|
||||||
|
width: 51px;
|
||||||
|
padding-top: 10px;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
padding-left: 50px;
|
||||||
|
padding-right: 50px;
|
||||||
color: rgb(235, 235, 235);
|
color: rgb(235, 235, 235);
|
||||||
|
background-color: rgb(45, 95, 245);
|
||||||
|
border: 1px solid rgb(51, 63, 104);
|
||||||
|
border-radius: 5px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ex_refresh a:hover {
|
.ex_refresh a:hover {
|
||||||
color: rgb(255, 255, 255);
|
color: rgb(255, 255, 255);
|
||||||
|
background-color: rgb(67, 111, 245);
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -167,8 +181,8 @@
|
|||||||
|
|
||||||
<?php foreach ($stacktrace as $item) { ?>
|
<?php foreach ($stacktrace as $item) { ?>
|
||||||
<div class="ex_trace_content_col_<?= (($tableswitch) ? '1' : '2') ?>">
|
<div class="ex_trace_content_col_<?= (($tableswitch) ? '1' : '2') ?>">
|
||||||
#<?= $stackcounter ?> <?= ((isset($item['file'])) ? $item['file'] : 'internal function') ?><?= (isset($item['line']) ? '(' . $item['line'] . ')' : '') ?>: <?= $item['function'] ?>
|
#<?= $stackcounter ?> <?= ((isset($item['file'])) ? $item['file'] : 'internal function') ?><?= (isset($item['line']) ? '(' . $item['line'] . ')' : '') ?>: <?= isset($item['class']) ? $item['class'] . '::' : '' ?><?= $item['function'] ?>
|
||||||
<?php if (count($item['args']) > 0) { ?>
|
<?php if ((isset($item['args'])) && (count($item['args']) > 0)) { ?>
|
||||||
(
|
(
|
||||||
<?php $argcnt = 0; ?>
|
<?php $argcnt = 0; ?>
|
||||||
<?php foreach ($item['args'] as $key => $arg) { ?>
|
<?php foreach ($item['args'] as $key => $arg) { ?>
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
|
||||||
<title>Asatru PHP - Error 500</title>
|
<title>Asatru PHP - Error 500</title>
|
||||||
|
|
||||||
|
539
composer.lock
generated
539
composer.lock
generated
File diff suppressed because it is too large
Load Diff
Binary file not shown.
2
public/js/app.js
vendored
2
public/js/app.js
vendored
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user