Skip to content

Commit

Permalink
Increased version
Browse files Browse the repository at this point in the history
  • Loading branch information
idmarinas committed Aug 31, 2021
1 parent 6ff3f41 commit 50f0dcf
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 4 deletions.
37 changes: 37 additions & 0 deletions CHANGELOG-V5.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,43 @@ Visit **_V2_** [Changelog](https://github.com/idmarinas/lotgd-game/blob/migratio
Visit **_V3_** [Changelog](https://github.com/idmarinas/lotgd-game/blob/migration/CHANGELOG-V3.md)
Visit **_V4_** [Changelog](https://github.com/idmarinas/lotgd-game/blob/migration/CHANGELOG-V4.md)

# Version: 5.5.8

### :cyclone: CHANGES

- Nothing

### :star: FEATURES

- Nothing

### :fire: DEPRECATED

- Nothing

### :wrench: FIXES

- **src/core/Controller/InnController.php** Fix error, now use correct redirection

### :x: REMOVES

- Nothing

### :notebook: NOTES

- **Important**:
- :warning: Since version 5.0.0 Installer is only via terminal (command: `php bin/console lotgd:install`)
- :warning: Avoid, as far as possible, using static classes (e.g. LotgdSetting, Doctrine, LotgdTranslation...) as these classes will be deleted in a future version. Use autowire, dependency injection when possible.
- **Upgrade/Install for version 5.0.0 and up**
- First read [docs](https://github.com/idmarinas/lotgd-game/wiki/Skeleton) and follow steps.
- If have problems:
- Read info in `storage/log/tracy/*` files, and see the problem.
- Read info in `var/log/*` files, and see the problem.
- Read info in `var/log/apache2/error.log` (this is the default location in Debian, can change in your OS distribution) in your webserver.
- If you can't solve the problem go to: [Repository issues](https://github.com/idmarinas/lotgd-game/issues)
- **composer.json** Updated/Added/Deleted dependencies
- **package.json** Updated/Added/Deleted dependencies

# Version: 5.5.7

### :cyclone: CHANGES
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ The version **IDMarinas Edition** is based on the version **1.1.2 Dragonprime**

## IDMarinas Edition

Version of the IDMarinas Edition: **_5.5.7_**
Version of the IDMarinas Edition: **_5.5.8_**

The intention to make a new branch of the Core, is to be able to update certain aspects, which were outdated, such as the script that is used to access the database, while correcting certain errors, and adding new options of customization.

Expand Down
1 change: 1 addition & 0 deletions src/core/Installer/Pattern/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ trait Version
'5.5.5 IDMarinas Edition' => 50505,
'5.5.6 IDMarinas Edition' => 50506,
'5.5.7 IDMarinas Edition' => 50507,
'5.5.8 IDMarinas Edition' => 50508,
];

/**
Expand Down
6 changes: 3 additions & 3 deletions src/core/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ class Kernel extends BaseKernel
{
use MicroKernelTrait;

public const VERSION = '5.5.7 IDMarinas Edition'; // Version of game in public display format.
public const VERSION_ID = 50507; // Identify version of game in numeric format.
public const VERSION = '5.5.8 IDMarinas Edition'; // Version of game in public display format.
public const VERSION_ID = 50508; // Identify version of game in numeric format.
public const MAJOR_VERSION = 5;
public const MINOR_VERSION = 5;
public const RELEASE_VERSION = 7;
public const RELEASE_VERSION = 8;
public const EXTRA_VERSION = '';
public const VERSION_NUMBER = self::VERSION_ID; //-- Alias of VERSION_ID
public const FILE_DB_CONNECT = 'config/autoload/local/dbconnect.php'; // The file where the database connection data is stored.
Expand Down

0 comments on commit 50f0dcf

Please sign in to comment.