1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-11-22 09:02:28 +01:00

Fix missing service file, closes #390

This commit is contained in:
Dane Everitt 2017-04-17 19:26:03 -04:00
parent de436d3c83
commit 91ce97a326
No known key found for this signature in database
GPG Key ID: EEA66103B3D71F53
3 changed files with 4 additions and 1 deletions

View File

@ -3,12 +3,13 @@ This file is a running track of new features and fixes to each version of the pa
This project follows [Semantic Versioning](http://semver.org) guidelines.
## v0.6.0-beta.3 (Courageous Carniadactylus)
## v0.6.0-beta.2.1 (Courageous Carniadactylus)
### Fixed
* `[beta.2]` — Suspended servers now show as suspended.
* `[beta.2]` — Corrected the information when a task has not run yet.
* `[beta.2]` — Fixes filemanager 404 when editing a file within a directory.
* `[beta.2]` — Fixes exception in tasks when deleting a server.
* `[beta.2]` — Fixes bug with Terarria and Voice servers reporting a `TypeError: Service is not a constructor` in the daemon due to a missing service configuration.
## v0.6.0-beta.2 (Courageous Carniadactylus)
### Fixed

View File

@ -63,6 +63,7 @@ class TerrariaServiceTableSeeder extends Seeder
'name' => 'Terraria',
'description' => 'Terraria is a land of adventure! A land of mystery! A land that\'s yours to shape, defend, and enjoy. Your options in Terraria are limitless. Are you an action gamer with an itchy trigger finger? A master builder? A collector? An explorer? There\'s something for everyone.',
'startup' => 'mono TerrariaServer.exe -port {{SERVER_PORT}} -autocreate 2 -worldname World',
'index_file' => Service::defaultIndexFile(),
]);
}

View File

@ -63,6 +63,7 @@ class VoiceServiceTableSeeder extends Seeder
'name' => 'Voice Servers',
'description' => 'Voice servers such as Mumble and Teamspeak 3.',
'startup' => '',
'index_file' => Service::defaultIndexFile(),
]);
}