Fix missing service file, closes #390
This commit is contained in:
parent
de436d3c83
commit
91ce97a326
|
@ -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.
|
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
|
### Fixed
|
||||||
* `[beta.2]` — Suspended servers now show as suspended.
|
* `[beta.2]` — Suspended servers now show as suspended.
|
||||||
* `[beta.2]` — Corrected the information when a task has not run yet.
|
* `[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 filemanager 404 when editing a file within a directory.
|
||||||
* `[beta.2]` — Fixes exception in tasks when deleting a server.
|
* `[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)
|
## v0.6.0-beta.2 (Courageous Carniadactylus)
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
|
@ -63,6 +63,7 @@ class TerrariaServiceTableSeeder extends Seeder
|
||||||
'name' => 'Terraria',
|
'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.',
|
'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',
|
'startup' => 'mono TerrariaServer.exe -port {{SERVER_PORT}} -autocreate 2 -worldname World',
|
||||||
|
'index_file' => Service::defaultIndexFile(),
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -63,6 +63,7 @@ class VoiceServiceTableSeeder extends Seeder
|
||||||
'name' => 'Voice Servers',
|
'name' => 'Voice Servers',
|
||||||
'description' => 'Voice servers such as Mumble and Teamspeak 3.',
|
'description' => 'Voice servers such as Mumble and Teamspeak 3.',
|
||||||
'startup' => '',
|
'startup' => '',
|
||||||
|
'index_file' => Service::defaultIndexFile(),
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue