Skip to content

Commit

Permalink
Bump the version since quite a bit has changed.
Browse files Browse the repository at this point in the history
The Entire base UI is now displayed via Vue components.
* All modals
* The main menu
* The first panel

There is now a welcome page. (using Vue Router)
Google Analytics now tracks much more.

All those access the creator through good API calls.
Middleware now prevents errors if a creator does not exist.

The config.ini file was removed in place of laravel's config system.

Object's now enforce type hints in their constructors.
The savepack loading code now uses __set_state, and forces everything to the correct type.
A column in the database was changed from float to int.

Moved from Laravel 5.6 to 5.8.
Dependencies updated (including one which had a high severity CVE)

The Exporters have gone through a much needed cleanup, with fixes.

Sentry is now used for error tracking.

The Docker build now uses nginx and php-fpm instead of apahce.

Add a few working tests

Many other small cleanups.
  • Loading branch information
EmperorArthur committed Jun 10, 2019
1 parent 7279658 commit fd2cefe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/epcc.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
return [
'versionName' => "Gate Jump",
'releaseDate' => Carbon::parse("December 2018"),
'versionNumber' => 1.51,
'versionNumber' => 1.52,
'versionNumberMin' => 0.91,
'googleAnalyticsId' => env('MIX_GOOGLE_ANALYTICS_ID', 'UA-463340-1'),
//RulesValues
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/HighLevelCreatorController/save.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"versionName": "Gate Jump",
"versionNumber": 1.51,
"versionNumber": 1.52,
"initialCreationPoints": 1000,
"aptitudePoints": 70,
"reputationPoints": 50,
Expand Down

0 comments on commit fd2cefe

Please sign in to comment.