Skip to content

Commit 5b32ade

Browse files
committed
Merge branch 'base' into mc/1.13
2 parents a0e3b0c + 51e94f7 commit 5b32ade

File tree

4 files changed

+23
-13
lines changed

4 files changed

+23
-13
lines changed

.github/workflows/gradle.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: Java CI
22

3-
on: [push]
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- mc/1.12
8+
- mc/1.13
9+
- mc/1.15
410

511
jobs:
612
build:

BlueMapBukkit/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dependencies {
2121
}
2222

2323
build.dependsOn shadowJar {
24-
destinationDir = file '../build/release'
24+
destinationDir = file '../build/supported'
2525
archiveFileName = "BlueMap-${version}-bukkit.jar"
2626

2727
//relocate 'com.flowpowered.math', 'de.bluecolored.shadow.flowpowered.math' //DON'T relocate this, because the API depends on it

BlueMapForge/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ dependencies {
3333
}
3434

3535
build.dependsOn shadowJar {
36-
destinationDir = file '../build/release'
36+
destinationDir = file '../build/supported'
3737
archiveFileName = "BlueMap-${version}-forge.jar"
3838

3939
configurations = [project.configurations.include]

README.md

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,18 @@
22

33
BlueMap is a tool that generates 3d-maps of your Minecraft worlds and displays them in your browser. Take a look at [this demo](https://bluecolored.de/bluemap). It is really easy to set up - almost plug-and-play - if you use the integrated web-server (optional).
44

5-
The Sponge/Spigot-Plugin automatically updates your map as soon as something changes in your world, as well as rendering newly generated terrain and managing the render-tasks.
5+
The plugins/mods automatically update your map as soon as something changes in your world, as well as rendering newly generated terrain and managing the render-tasks.
66

7-
**BlueMap is currently in an early development state!**
7+
**BlueMap is currently in a BETA state!**
88

9-
A lot of features are still missing, and some blocks - especially some tile-entities - will not render correctly/at all.
9+
It is however already quite stable and usable. There are just some features still missing, and some blocks - especially tile-entities - will not render correctly/at all.
1010
See below for a list of what is planned for future releases.
1111

1212
### Download
1313
You can choose a version and download BlueMap from [here](https://github.com/BlueMap-Minecraft/BlueMap/releases).
1414

1515
### Using BlueMap
16-
BlueMap can be used on the command-line, or as a plugin for your Sponge/Spigot/Paper-Server. Read the [wiki](https://github.com/BlueMap-Minecraft/BlueMap/wiki) to get started!
17-
18-
### Discord
19-
If you have a question, help others using BlueMap or get the latest news and info you are welcome to join us [on Discord](https://discord.gg/zmkyJa3)!
16+
BlueMap can be used on the command-line, or as a plugin/mod for your Sponge/Spigot/Paper/Forge/Fabric-Server. Read the [wiki](https://github.com/BlueMap-Minecraft/BlueMap/wiki) to get started!
2017

2118
### Clone
2219
If you have git installed, simply use the command `git clone --recursive https://github.com/BlueMap-Minecraft/BlueMap.git` to clone BlueMap.
@@ -32,17 +29,19 @@ You found a bug, have another issue or a suggestion? Please create an issue [her
3229
You are welcome to contribute!
3330
Just create a pull request with your changes :)
3431

35-
If you want to have your changes merged faster, make sure they are complete, documented and well tested!
32+
**If you want to have your changes merged, make sure they are complete, documented and well tested!**
33+
34+
Keep in mind that we have to maintain all new features and keep supporting them in the future.
35+
This means we always can decide to not accept a PR for any reason.
3636

3737
The `master`-branch is for the latest version of minecraft.
3838
The `mc/xx`-branches are for other minecraft-versions.
39-
Changes that apply to all versions should be made on the `mc/1.13`-branch. This branch can be merged into `master` and every other `mc/xx` branch.
39+
**Changes that apply to all versions should be based on the** `base` **branch.** This branch can be merged into `master` and every other `mc/xx` branch.
4040

4141
### Todo / planned features
4242
Here is a *(surely incomplete)* list of things that i want to include in future versions. *(They are not in any specific order. There is no guarantee that any of those things will ever be included.)*
4343

4444
- live player positions
45-
- fabric version
4645
- render more tile-entities (banners, shulker-chests, etc..)
4746
- render entities (armor-stands, item-frames, maybe even cows and such..)
4847
- free-flight-controls
@@ -51,3 +50,8 @@ Here is a *(surely incomplete)* list of things that i want to include in future
5150
- ability to display the world-border
5251
- animated textures (if feasible)
5352
- add support for models in obj format (if feasible)
53+
54+
### Links
55+
**Wiki:** https://bluecolo.red/map-wiki <br>
56+
**Reddit:** https://www.reddit.com/r/BlueMap <br>
57+
**Discord:** https://bluecolo.red/map-discord <br>

0 commit comments

Comments
 (0)