1.3.0 dev > master #4

Merged
miraty merged 2 commits from dev into master 2020-11-03 21:34:04 +01:00
4 changed files with 7 additions and 7 deletions

View File

@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## Unreleased
## 1.3.0 - 2020-11-03
### Added

View File

@ -78,7 +78,7 @@ if (badQuery()) {
if (!isset($params['mainColor']) OR !is_string($params['mainColor']))
$params['mainColor'] = "#000000";
header('Location: ' . $instPath . "?" . http_build_query($params));
header('Location: ' . $rootPath . "?" . http_build_query($params));
exit;
}

View File

@ -5,8 +5,8 @@
"name": "LibreQR",
"short_name": "LibreQR",
"description": "<?= $loc['subtitle'] ?>",
"start_url": "<?= $instPath; ?>",
"scope": "<?= $instPath; ?>",
"start_url": "<?= $rootPath; ?>",
"scope": "<?= $rootPath; ?>",
"display": "standalone",
"theme_color": "<?= $variablesTheme["bg"]; ?>",
"background_color": "<?= $variablesTheme["bg"]; ?>",

View File

@ -5,7 +5,7 @@
<Description><?= $loc['opensearch_actionName'] ?></Description>
<?php
foreach($themeDimensionsIcons as $dimIcon) {
echo ' <Image height="' . $dimIcon . '" width="' . $dimIcon . '" type="image/png">' . $instPath . 'themes/' . $theme . '/icons/' . $dimIcon . '.png</Image>' . "\n";
echo ' <Image height="' . $dimIcon . '" width="' . $dimIcon . '" type="image/png">' . $rootPath . 'themes/' . $theme . '/icons/' . $dimIcon . '.png</Image>' . "\n";
} ?>
<Language>*</Language>
<InputEncoding>UTF-8</InputEncoding>
@ -16,7 +16,7 @@
$bgColor = htmlspecialchars(urlencode((isset($_GET['bgColor'])) ? $_GET['bgColor'] : '%23FFFFFF'));
$mainColor = htmlspecialchars(urlencode((isset($_GET['mainColor'])) ? $_GET['mainColor'] : '%23000000'));
?>
<Url type="text/html" template="<?= $instPath; ?>">
<Url type="text/html" template="<?= $rootPath; ?>">
<Param name="txt" value="{searchTerms}"/>
<Param name="redondancy" value="<?= $redondancy ?>"/>
<Param name="margin" value="<?= $margin ?>"/>
@ -24,7 +24,7 @@
<Param name="bgColor" value="<?= $bgColor ?>"/>
<Param name="mainColor" value="<?= $mainColor ?>"/>
</Url>
<Url type="application/opensearchdescription+xml" rel="self" template="<?= $instPath; ?>opensearch.php">
<Url type="application/opensearchdescription+xml" rel="self" template="<?= $rootPath; ?>opensearch.php">
<Param name="redondancy" value="<?= $redondancy ?>"/>
<Param name="margin" value="<?= $margin ?>"/>
<Param name="size" value="<?= $size ?>"/>