You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,25 @@ This file is a running track of new features and fixes to each version of the pa
3
3
4
4
This project follows [Semantic Versioning](http://semver.org) guidelines.
5
5
6
+
## v0.5.6 (Bodacious Boreopterus)
7
+
### Added
8
+
* Added the following languages: Estonian `et`, Dutch `nl`, Norwegian `nb` (partial), Romanian `ro`, and Russian `ru`. Interested in helping us translate the panel into more languages, or improving existing translations? Contact us on Discord and let us know.
9
+
* Added missing `strings.password` to language file for English.
10
+
* Allow listing of users from the API by passing either the user ID or their email.
11
+
12
+
### Fixed
13
+
* Fixes bug where assigning a variable a default value (or valid value) of `0` would cause the panel to reject the value thinking it did not exist.
14
+
* Addresses potential for crash by limiting total ports that can be assigned per-range to 2000.
15
+
* Fixes server names requiring at minimum 4 characters. Name can now be 1 to 200 characters long. :pencil2:
16
+
* Fixes bug that would allow adding the owner of a server as a subuser for that same server.
17
+
* Fixes bug that would allow creating multiple subusers with the same email address.
18
+
* Fixes bug where Sponge servers were improperly tagged as a spigot server in the daemon causing issues when booting or modifying configuration files.
19
+
* Use transpiled ES6 -> ES5 filemanager code in browsers.
20
+
* Fixes service option name displaying the name of a nwly added variable after the variable is added and until the page is refreshed. (see #208)
21
+
22
+
### Changed
23
+
* Filemanager and EULA checking javascript is now written in pure ES6 code rather than as a blade-syntax template. This allows the use of babel to transpile into ES5 as a minified version.
24
+
6
25
## v0.5.5 (Bodacious Boreopterus)
7
26
### Added
8
27
* New API route to return allocations given a server ID. This adds support for a community-driven WHMCS module :rocket: available [here](https://github.com/hammerdawn/Pterodactyl-WHMCS).
Copy file name to clipboardExpand all lines: app/Http/Controllers/Admin/NodesController.php
+22Lines changed: 22 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,7 @@
27
27
useDB;
28
28
useLog;
29
29
useAlert;
30
+
useCarbon;
30
31
useValidator;
31
32
usePterodactyl\Models;
32
33
useIlluminate\Http\Request;
@@ -82,6 +83,7 @@ public function postNew(Request $request)
82
83
'_token',
83
84
]));
84
85
Alert::success('Successfully created new node. <strong>Before you can add any servers you need to first assign some IP addresses and ports.</strong>')->flash();
86
+
Alert::info('<strong>To simplify the node setup you can generate a token on the configuration tab.</strong>')->flash();
85
87
86
88
returnredirect()->route('admin.nodes.view', [
87
89
'id' => $new,
@@ -276,4 +278,24 @@ public function deleteNode(Request $request, $id)
0 commit comments