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
+13-2Lines changed: 13 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,18 @@ 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.4.1
6
+
## v0.5.0 (Bodacious Boreopterus) [Unreleased]
7
+
8
+
### Added
9
+
* Support for creating server without having to assign a node and allocation manually. Simply select the checkbox or pass `auto_deploy=true` to the API to auto-select a node and allocation given a location.
10
+
11
+
### Changed
12
+
### Fixed
13
+
### Deprecated
14
+
### Removed
15
+
### Security
16
+
17
+
## v0.4.1 (Articulate Aerotitan)
7
18
8
19
### Changed
9
20
* Overallocate fields are now auto-filled with a value of `0`
@@ -13,7 +24,7 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
13
24
* Server link in navbar directed to 404 link (PR by [@Randomfish132](https://github.com/Randomfish132))
14
25
* Composer fails to finish ([#92](https://github.com/Pterodactyl/Panel/issues/92), PR by [@schrej](https://github.com/schrej), thanks [@parkervcp](https://github.com/parkervcp))
15
26
16
-
## v0.4.0
27
+
## v0.4.0 (Arty Aerodactylus)
17
28
18
29
### Added
19
30
* Task scheduler supporting customized CRON syntax or dropdown selected options. (currently only support command and power options)
thrownewDisplayException('The amount of memory allocated to this server would put the node over its allocation limits. This node is allowed ' . ($node->memory_overallocate + 100) . '% of its assigned ' . $node->memory . 'Mb of memory (' . $memoryLimit . 'Mb) of which ' . (($totals->memory / $node->memory) * 100) . '% (' . $totals->memory . 'Mb) is in use already. By allocating this server the node would be at ' . (($newMemory / $node->memory) * 100) . '% (' . $newMemory . 'Mb) usage.');
thrownewDisplayException('The amount of memory allocated to this server would put the node over its allocation limits. This node is allowed ' . ($node->memory_overallocate + 100) . '% of its assigned ' . $node->memory . 'Mb of memory (' . $memoryLimit . 'Mb) of which ' . (($totals->memory / $node->memory) * 100) . '% (' . $totals->memory . 'Mb) is in use already. By allocating this server the node would be at ' . (($newMemory / $node->memory) * 100) . '% (' . $newMemory . 'Mb) usage.');
thrownewDisplayException('The amount of disk allocated to this server would put the node over its allocation limits. This node is allowed ' . ($node->disk_overallocate + 100) . '% of its assigned ' . $node->disk . 'Mb of disk (' . $diskLimit . 'Mb) of which ' . (($totals->disk / $node->disk) * 100) . '% (' . $totals->disk . 'Mb) is in use already. By allocating this server the node would be at ' . (($newDisk / $node->disk) * 100) . '% (' . $newDisk . 'Mb) usage.');
thrownewDisplayException('The amount of disk allocated to this server would put the node over its allocation limits. This node is allowed ' . ($node->disk_overallocate + 100) . '% of its assigned ' . $node->disk . 'Mb of disk (' . $diskLimit . 'Mb) of which ' . (($totals->disk / $node->disk) * 100) . '% (' . $totals->disk . 'Mb) is in use already. By allocating this server the node would be at ' . (($newDisk / $node->disk) * 100) . '% (' . $newDisk . 'Mb) usage.');
226
+
}
198
227
}
199
228
}
200
-
201
229
}
202
230
203
231
DB::beginTransaction();
@@ -211,7 +239,7 @@ public function create(array $data)
<pclass="text-muted"><small>Check this box if you want the panel to automatically select a node and allocation for this server in the given location.</small><p>
0 commit comments