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
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,13 @@ 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.6.0-pre.8 (Courageous Carniadactylus)
7
+
### Fixed
8
+
*`[pre.7]` — Fixes bug with subuser checkbox display.
9
+
10
+
### Changed
11
+
* Subuser permissions are now stored in `Permission::list()` to make views way cleaner and make adding to views significantly cleaner.
12
+
6
13
## v0.6.0-pre.7 (Courageous Carniadactylus)
7
14
### Fixed
8
15
*`[pre.6]` — Addresses misconfigured console queue that was still sending data way to quickly thus causing the console to explode on some devices when large amounts of data were sent.
Copy file name to clipboardExpand all lines: resources/lang/en/server.php
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -59,24 +59,24 @@
59
59
'server_header' => 'Server Management',
60
60
'task_header' => 'Task Management',
61
61
'sftp_header' => 'SFTP Management',
62
-
'db_header' => 'Database Management',
63
-
'start' => [
62
+
'database_header' => 'Database Management',
63
+
'power_start' => [
64
64
'title' => 'Start Server',
65
65
'description' => 'Allows user to start the server.',
66
66
],
67
-
'stop' => [
67
+
'power_stop' => [
68
68
'title' => 'Stop Server',
69
69
'description' => 'Allows user to stop the server.',
70
70
],
71
-
'restart' => [
71
+
'power_restart' => [
72
72
'title' => 'Restart Server',
73
73
'description' => 'Allows user to restart the server.',
74
74
],
75
-
'kill' => [
75
+
'power_kill' => [
76
76
'title' => 'Kill Server',
77
77
'description' => 'Allows user to kill the server process.',
78
78
],
79
-
'command' => [
79
+
'send_command' => [
80
80
'title' => 'Send Console Command',
81
81
'description' => 'Allows sending a command from the console. If the user does not have stop or restart permissions they cannot send the application\'s stop command.',
0 commit comments