-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Flavius12
committed
Dec 30, 2014
1 parent
08f6a93
commit 48059bc
Showing
1 changed file
with
69 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,71 @@ | ||
AutoUpdater | ||
=========== | ||
# AutoUpdater | ||
|
||
Auto Update plugin for PocketMine-MP | ||
|
||
## Category | ||
|
||
PocketMine-MP plugins | ||
|
||
## Requirements | ||
|
||
PocketMine-MP Alpha_1.4 API 1.9.0 | ||
|
||
## Overview | ||
|
||
**AutoUpdater** allows you to update your PocketMine server automatically. | ||
|
||
**EvolSoft Website:** http://www.evolsoft.tk | ||
|
||
***This Plugin uses the New API. You can't install it on old versions of PocketMine.*** | ||
|
||
With AutoUpdater you can automatically update your PocketMine server. (read documentation) | ||
|
||
**Commands:** | ||
|
||
***/autoupdate*** *- AutoUpdate commands*<br> | ||
***/update*** *- Update your server* | ||
|
||
**To-Do:** | ||
|
||
*- Bug fix (if bugs will be found)*<br> | ||
*- Possible PocketMine-Soft channel implementation* | ||
|
||
## Documentation | ||
|
||
**Configuration (config.yml):** | ||
```yaml | ||
--- | ||
#Check update time (in minutes) | ||
update-check-time: 60 | ||
#Update PocketMine automatically (if you disable this, you will get only the update alert but your server won't be updated automatically) | ||
auto-update: true | ||
#Max download timeout (in seconds) | ||
timeout: 10 | ||
#PocketMine Channel (You can choose between beta, development, stable) | ||
channel: "Development" | ||
#PocketMine server file (the old will be overwritten) | ||
file-name: "PocketMine-MP.phar" | ||
#Start script will be executed after the update to restart your server (if you leave this empty, your server won't be restarted automatically) | ||
#Start script depends on your operating system | ||
#Usually start scripts are: | ||
#start.cmd for Windows users | ||
#./start.sh for Linux users | ||
#Remember that these are default scripts. The start script depends on your system, settings, ... | ||
start-script: "" | ||
... | ||
``` | ||
|
||
Commands: | ||
|
||
/autoupdater - AutoUpdate commands (aliases: [au, aupdater]) | ||
/update - Update your server | ||
|
||
Permissions: | ||
|
||
- autoupdater.* - AutoUpdater commands permissions. | ||
- autoupdater.info - AutoUpdater command Info permission. | ||
- autoupdater.reload - AutoUpdater command Reload permission. | ||
- autoupdater.update - AutoUpdater command Update permission. | ||
|
||
|
||
|