mirror of
https://github.com/chevereto/chevereto.git
synced 2026-05-07 06:17:36 +02:00
Automatic push 4.3.2
This commit is contained in:
@@ -1,7 +0,0 @@
|
||||
Chevereto 4.3.1 (2025-05-16)
|
||||
|
||||
- Downgraded AWS SDK to 3.336.15 for improved compatibility
|
||||
- Fixed bug affecting PHP page routing and editing
|
||||
- Fixed bug with ExifTool and ExifTran binary detection
|
||||
- Fixed bug with S3 Compatible storage integration
|
||||
- Improved FFmpeg binary detection in /dashboard
|
||||
4
.package/4.3.2.txt
Normal file
4
.package/4.3.2.txt
Normal file
@@ -0,0 +1,4 @@
|
||||
Chevereto 4.3.2 (2025-05-19)
|
||||
|
||||
- Fixed bug affecting PHP pages functionality
|
||||
- Fixed bug affecting album dropdown selection
|
||||
@@ -57,7 +57,7 @@ Install Chevereto following our guides for:
|
||||
* [cPanel](https://v4-docs.chevereto.com/guides/cpanel/)
|
||||
* [Plesk](https://v4-docs.chevereto.com/guides/plesk/)
|
||||
|
||||
Chevereto is also available at [DigitalOcean Marketplace](https://chevereto.com/go/digitalocean), [Vultr Marketplace](https://chevereto.com/go/vultr), [Installatron](https://installatron.com/chevereto), [Softaculous](https://www.softaculous.com/apps/galleries/Chevereto) and [SwiftWave](https://swiftwave.org/docs/dashboard/swiftwave_app_store/).
|
||||
Chevereto is also available for installing via [Installatron](https://installatron.com/chevereto), [Softaculous](https://www.softaculous.com/apps/galleries/Chevereto) and [SwiftWave](https://swiftwave.org/docs/dashboard/swiftwave_app_store/).
|
||||
|
||||
Review our [Installation docs](https://v4-docs.chevereto.com/application/installing/installation.html) for all alternatives.
|
||||
|
||||
|
||||
@@ -649,6 +649,7 @@ $settings_updates = [
|
||||
'enable_api_guest' => 0,
|
||||
],
|
||||
'4.3.1' => null,
|
||||
'4.3.2' => null,
|
||||
];
|
||||
|
||||
/**
|
||||
|
||||
@@ -9,5 +9,5 @@
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
const APP_VERSION = '4.3.1';
|
||||
const APP_VERSION = '4.3.2';
|
||||
const APP_VERSION_AKA = 'entrador';
|
||||
|
||||
@@ -38,7 +38,7 @@ class KeyValueNull implements KeyValueInterface
|
||||
|
||||
public function get(string $key, &$token = null): mixed
|
||||
{
|
||||
return null;
|
||||
return false;
|
||||
}
|
||||
|
||||
public function delete(string $key): bool
|
||||
|
||||
@@ -118,8 +118,8 @@ class User
|
||||
{
|
||||
$id = is_array($var) ? $var['id'] : $var;
|
||||
$cacheKey = static::getCacheKey($id, 'albums');
|
||||
$cached = Cache::instance()->get($cacheKey) ?: [];
|
||||
if ($cached) {
|
||||
$cached = Cache::instance()->get($cacheKey);
|
||||
if (is_array($cached) && count($cached) === 3) {
|
||||
[$userAlbums, $children, $map] = $cached;
|
||||
} else {
|
||||
$userAlbums = [];
|
||||
|
||||
Reference in New Issue
Block a user