Skip to content
This repository was archived by the owner on Feb 8, 2019. It is now read-only.

Commit 4343c33

Browse files
authored
Merge pull request #14 from VectorNetworkProject/develop
Release v0.0.8-BETA
2 parents 2d3a7ea + 2539e70 commit 4343c33

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+306
-64
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@ composer.phar
55
# JetBrains IDE
66
.idea/workspace.xml
77
.idea/dictionaries/
8+
9+
# VS Code
10+
.vscode

.idea/TheMix.iml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/php.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.poggit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ projects:
99
- src: fuyutsuki/libform/libform
1010
version: 0.4.0
1111
- src: InkoHX/LeveLibrary/LeveLibrary
12-
version: 0.0.3
12+
version: 0.0.4
1313
- src: InkoHX/GoldLibrary/GoldLibrary
14-
version: 0.0.2
14+
version: 0.0.3
1515
...

.vscode/settings.json

Whitespace-only changes.

composer.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "vectornetworkproject/themix",
3+
"description": "Original game of VectorNetwork",
34
"homepage": "https://www.vector-network.tk",
45
"type": "project",
56
"license": "MIT",
@@ -48,16 +49,17 @@
4849
"ext-zip": "*",
4950
"ext-zlib": ">=1.2.11",
5051
"mdanter/ecc": "^0.5.0",
51-
"pocketmine/pocketmine-mp": "^3.3.4",
52+
"pocketmine/pocketmine-mp": "^3.5.0",
5253
"pocketmine/raklib": "^0.12.0",
5354
"pocketmine/spl": "^0.3.0",
5455
"pocketmine/binaryutils": "^0.1.0",
5556
"pocketmine/nbt": "^0.2.1",
5657
"pocketmine/math": "^0.2.0",
5758
"pocketmine/snooze": "^0.1.0",
5859
"fuyutsuki/libform": "^0.4.0",
59-
"inkohx/levelibrary": "^0.0.3",
60-
"inkohx/goldlibrary": "^0.0.2"
60+
"inkohx/levelibrary": "^0.0.4",
61+
"inkohx/goldlibrary": "^0.0.3",
62+
"daverandom/callback-validator": "dev-master"
6163
},
6264
"autoload": {
6365
"psr-4": {

composer.lock

Lines changed: 65 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ softdepend:
66

77
description: "Original game of VectorNetwork"
88
website: "https://vector-network.tk"
9-
version: 0.0.7-BETA
9+
version: 0.0.8-BETA
1010
authors:
1111
- InkoHX
1212
- MazaiCrafty

resources/config.yml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,27 @@
1-
version: 7
1+
# It is a setting file of VectorNetwork's original game "The Mix".
2+
#
3+
# GitHub: https://github.com/VectorNetworkProject/TheMix
4+
# Website: https://www.vector-network.tk
5+
# Discord: https://discord.gg/EF2G5dh
6+
7+
# Config version
8+
version: 8
9+
# You can set whether to enable developer mode.
10+
# Note: Do not forget to disable developer mode when publishing server.
211
dev-mode: true
12+
# Please enter the name of the map.
313
stage-world-name: stage
14+
# Please set the time the event will come. By default, it is held every 30 minutes.
15+
# This function will be implemented in the future.
416
event-time: 30
17+
# Please set the time zone.
518
timezone: Asia/Tokyo
19+
# Please enter the block ID which can participate in the game when touching the block.
20+
join-block-id: 247
21+
# Please configure server address and port.
22+
ip: play.vector-network.tk
23+
port: 19132
24+
625
red:
726
spawn1:
827
x: 1

src/VectorNetworkProject/TheMix/TheMix.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
class TheMix extends PluginBase
3838
{
39-
public const VERSION = 7;
39+
public const VERSION = 8;
4040

4141
/* @var TheMix $instance */
4242
private static $instance = null;

0 commit comments

Comments
 (0)