Bug fixes
This commit is contained in:
parent
a0cf0fe0dd
commit
41c7369232
|
@ -1,4 +1,4 @@
|
|||
hedera-web (1.405.27) stable; urgency=low
|
||||
hedera-web (1.405.31) stable; urgency=low
|
||||
|
||||
* Initial Release.
|
||||
|
||||
|
|
|
@ -11,7 +11,6 @@ rest usr/share/hedera-web
|
|||
index.php usr/share/hedera-web
|
||||
package.json usr/share/hedera-web
|
||||
build usr/share/hedera-web
|
||||
manifest.json usr/share/hedera-web
|
||||
LICENSE usr/share/hedera-web
|
||||
README.md usr/share/hedera-web
|
||||
webpack.config.json usr/share/hedera-web
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "hedera-web",
|
||||
"version": "1.405.27",
|
||||
"version": "1.405.31",
|
||||
"description": "Verdnatura web page",
|
||||
"license": "GPL-3.0",
|
||||
"repository": {
|
||||
|
|
|
@ -2,10 +2,10 @@
|
|||
"name": "Verdnatura",
|
||||
"icons": [
|
||||
{
|
||||
"src": "image\/favicon\/favicon.png",
|
||||
"src": "\/image\/favicon\/favicon.png",
|
||||
"sizes": "512x512"
|
||||
}
|
||||
],
|
||||
"start_url": "index.php",
|
||||
"start_url": "/index.php",
|
||||
"display": "standalone"
|
||||
}
|
|
@ -14,7 +14,7 @@ $result = $db->query ('SELECT name, content FROM metatag');
|
|||
<link rel="apple-touch-icon" href="image/favicon/apple-touch-icon.png"/>
|
||||
<link rel="icon" type="image/png" href="image/favicon/favicon.png"/>
|
||||
<link rel="icon" type="image/svg+xml" href="image/icon.svg" sizes="any"/>
|
||||
<link rel="manifest" href="manifest.json"/>
|
||||
<link rel="manifest" href="<?=$dir?>/manifest.json"/>
|
||||
<meta name="theme-color" content="#009688"/>
|
||||
<meta name="content-language" content="<?=$lang?>"/>
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
/**
|
||||
* Time in seconds between every request.
|
||||
*/
|
||||
var INTERVAL = 5;
|
||||
var INTERVAL = 10;
|
||||
|
||||
var requestInterval = INTERVAL;
|
||||
var failedRequests = 0;
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"name": "Production",
|
||||
"icons": [
|
||||
{
|
||||
"src": "\/image\/favicon\/favicon.png",
|
||||
"sizes": "512x512"
|
||||
}
|
||||
],
|
||||
"start_url": "/index.php?method=production",
|
||||
"display": "standalone"
|
||||
}
|
|
@ -23,12 +23,12 @@ body
|
|||
#text
|
||||
{
|
||||
color: white;
|
||||
font-size: 15em;
|
||||
text-align: center;
|
||||
font-size: 24em;
|
||||
font-weight: bold;
|
||||
text-overflow: ellipsis;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
line-height: 1em;
|
||||
}
|
||||
#error
|
||||
{
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
<link rel="shortcut icon" href="image/favicon/favicon.ico"/>
|
||||
<link rel="icon" type="image/png" href="image/favicon/favicon.png"/>
|
||||
<link rel="icon" type="image/svg+xml" href="image/icon.svg" sizes="any"/>
|
||||
<link rel="manifest" href="manifest.json"/>
|
||||
<link rel="manifest" href="<?=$dir?>/manifest.json"/>
|
||||
<?=js("$dir/main.js")?>
|
||||
<?=css("$dir/style.css")?>
|
||||
<title>Production</title>
|
||||
|
|
Loading…
Reference in New Issue