Skip to content

Commit

Permalink
- fixed some "case-sensitive" autoloading bugs un Unix systems
Browse files Browse the repository at this point in the history
- added "version information" text panel at login page
  • Loading branch information
exodus4d committed Nov 4, 2017
1 parent 1b1470c commit ebf99df
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions app/main/lib/Monolog.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ class Monolog extends \Prefab {
'line' => 'Monolog\Formatter\LineFormatter',
'json' => 'Monolog\Formatter\JsonFormatter',
'html' => 'Monolog\Formatter\HtmlFormatter',
'mail' => 'Lib\Logging\Formatter\MailFormatter'
'mail' => 'lib\logging\formatter\MailFormatter'
];

const HANDLER = [
'stream' => 'Monolog\Handler\StreamHandler',
'mail' => 'Monolog\Handler\SwiftMailerHandler',
'slackMap' => 'Lib\Logging\Handler\SlackMapWebhookHandler',
'slackRally' => 'Lib\Logging\Handler\SlackRallyWebhookHandler',
'zmq' => 'Lib\Logging\Handler\ZMQHandler'
'slackMap' => 'lib\logging\handler\SlackMapWebhookHandler',
'slackRally' => 'lib\logging\handler\SlackRallyWebhookHandler',
'zmq' => 'lib\logging\handler\ZMQHandler'
];

const PROCESSOR = [
Expand Down
5 changes: 3 additions & 2 deletions public/templates/ui/notice.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ <h3 class="panel-title">New release {{version}}</h3>
<div class="panel-body no-padding text-align-center">
<div class="price-features" style="min-height: inherit;">
<ul class="list-unstyled text-left">
<li><i class="fa fa-fw fa-angle-right"></i>Added support for German and French signature parsing <a target="_blank" href="https://github.com/exodus4d/pathfinder/issues/490">#490</a></li>
<li><i class="fa fa-fw fa-angle-right"></i>Multiple bug fixes with "map sync" problems and character location updates</li>
<li><i class="fa fa-fw fa-angle-right"></i>Performance improvements</li>
<li><i class="fa fa-fw fa-angle-right"></i>New map change log system (log files and logging to Slack) <a target="_blank" href="https://github.com/exodus4d/pathfinder/issues/295">#295</a></li>
<li><i class="fa fa-fw fa-angle-right"></i>New docked location information for Structure (e.g. Citadels)</li>
<li><i class="fa fa-fw fa-angle-double-right"></i>Complete <a href="javascript:void(0)" class="pf-navbar-version-info">changelog</a></li>
</ul>
</div>
Expand Down

0 comments on commit ebf99df

Please sign in to comment.