Skip to content

Commit

Permalink
Update to v0.8.20
Browse files Browse the repository at this point in the history
  • Loading branch information
slawkens committed Nov 26, 2024
1 parent 3c4b197 commit 5df5c64
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Changelog

## [0.8.20 - 26.11.2024]

Small fix regarding the latest release and the linux system.

Download this one, instead of the 0.8.19 if you are using linux.

If you are using 0.8.19, make this update:

The fix is to make this change in the system/libs/hooks.php

Change
```
require_once LIBS . 'src/plugins.php';
```

Into:
```
require_once LIBS . 'src/Plugins.php';
```

Yeah, we just changed 'p' to 'P' - that's just case-sensitive nature of linux.

## [0.8.19 - 19.11.2024]

### Added
Expand Down
2 changes: 1 addition & 1 deletion common.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
if (version_compare(phpversion(), '7.2.5', '<')) die('PHP version 7.2.5 or higher is required.');

define('MYAAC', true);
define('MYAAC_VERSION', '0.8.20-dev');
define('MYAAC_VERSION', '0.8.20');
define('DATABASE_VERSION', 33);
define('TABLE_PREFIX', 'myaac_');
define('START_TIME', microtime(true));
Expand Down

0 comments on commit 5df5c64

Please sign in to comment.