From 3ae2ecde838d6d2f1946c5668fc7570a37a0f742 Mon Sep 17 00:00:00 2001 From: Sir3lit Date: Sat, 26 Jan 2019 00:38:03 -0500 Subject: [PATCH 1/2] Update CHANGELOG.md Added Pull - 1411 (Fixed checking of language changes) Added Pull - 1419 (Fixed Spigot egg not building versions other than `latest`.) Added Pull - 1449 (Fixed the Forge egg install script.) --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 62780484e..c9720e98d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,11 @@ This project follows [Semantic Versioning](http://semver.org) guidelines. * Fixes an issue with the locations API endpoint referencing an invalid namespace. * Fixes the `store()` function on the locations API not working due to an incorrect return typehint. * Fixes daemon secrets not being able to be reset on a Node. - +* Fixes an issue where files were not editable due to missing URL encoding in the file manager. +* Fixed checking of language changes +* Fixed Spigot egg not building versions other than `latest`. +* Fixed the Forge egg install script. + ### Updated * Upgraded core to use Laravel `5.7.14`. From db937af61680ab4f183ab59dd09deca251d41100 Mon Sep 17 00:00:00 2001 From: Lance Pioch Date: Sat, 26 Jan 2019 23:26:15 +0000 Subject: [PATCH 2/2] Apply fixes from StyleCI [ci skip] [skip ci] --- .../Api/Application/Locations/LocationController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/Api/Application/Locations/LocationController.php b/app/Http/Controllers/Api/Application/Locations/LocationController.php index b829268d7..9220cf358 100644 --- a/app/Http/Controllers/Api/Application/Locations/LocationController.php +++ b/app/Http/Controllers/Api/Application/Locations/LocationController.php @@ -13,8 +13,8 @@ use Pterodactyl\Transformers\Api\Application\LocationTransformer; use Pterodactyl\Http\Controllers\Api\Application\ApplicationApiController; use Pterodactyl\Http\Requests\Api\Application\Locations\GetLocationRequest; use Pterodactyl\Http\Requests\Api\Application\Locations\GetLocationsRequest; -use Pterodactyl\Http\Requests\Api\Application\Locations\DeleteLocationRequest; use Pterodactyl\Http\Requests\Api\Application\Locations\StoreLocationRequest; +use Pterodactyl\Http\Requests\Api\Application\Locations\DeleteLocationRequest; use Pterodactyl\Http\Requests\Api\Application\Locations\UpdateLocationRequest; class LocationController extends ApplicationApiController