Added versioning; changed repo name
This commit is contained in:
parent
230f555da9
commit
07f36c710a
4 changed files with 9 additions and 2 deletions
|
@ -129,7 +129,10 @@ footer {
|
|||
}
|
||||
footer span:not(:last-child):after {
|
||||
content: '\022C5';
|
||||
margin: 0 0.2em;
|
||||
margin: 0 0.5em;
|
||||
}
|
||||
footer a {
|
||||
color: silver;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
<p>
|
||||
<span>serving <?php echo $this->context->transport->postCount ?> posts</span>
|
||||
<span>powered by <a href="http://github.com/rr-/booru">szurubooru</a></span>
|
||||
<span>powered by <a href="<?php echo SZURU_LINK ?>">szurubooru</a></span>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -104,6 +104,7 @@
|
|||
<?php if ($this->config->main->debugQueries): ?>
|
||||
<pre class="debug"><?php echo join('<br>', array_map(function($x) { return preg_replace('/\s+/', ' ', $x); }, queryLogger()->getLogs())) ?></pre>
|
||||
<?php endif ?>
|
||||
<span><a href="<?php echo SZURU_LINK ?>">szurubooru v<?php echo SZURU_VERSION ?></a></span>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
<?php
|
||||
define('SZURU_VERSION', '0.1.0');
|
||||
define('SZURU_LINK', 'http://github.com/rr-/szurubooru');
|
||||
|
||||
function trueStartTime()
|
||||
{
|
||||
static $time = null;
|
||||
|
|
Loading…
Reference in a new issue