Skip to content

Commit

Permalink
Updated project files for new version.
Browse files Browse the repository at this point in the history
  • Loading branch information
Crystal-Spider committed May 22, 2022
1 parent e07e91a commit d6742c1
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Forge Semantic Versioning](https://mcforge.readthedocs.io/en/1.18.x/gettingstarted/versioning/#versioning).

## [Unreleased]
- Nothing new.

## [1.18.2-3.1.0.0] - 2022/05/22
- Fixed crash when this mod is put only on server.
- Fixed client-server compatibility.
- Improved light for translucent vertical slabs.

## [1.18.2-3.0.0.0] - 2022/05/16
Expand Down Expand Up @@ -35,6 +40,7 @@ and this project adheres to [Forge Semantic Versioning](https://mcforge.readthed
- Added creative tab with all vertical slabs.

[Unreleased]: https://github.com/Nyphet/just-vertical-slabs
[1.18.2-3.1.0.0]: https://github.com/Nyphet/just-vertical-slabs/releases/tag/v1.18.2-3.1.0.0
[1.18.2-3.0.0.0]: https://github.com/Nyphet/just-vertical-slabs/releases/tag/v1.18.2-3.0.0.0
[1.18.2-2.0.0.0]: https://github.com/Nyphet/just-vertical-slabs/releases/tag/v1.18.2-2.0.0.0
[1.18.2-1.0.0.0]: https://github.com/Nyphet/just-vertical-slabs/releases/tag/v1.18.2-1.0.0.0
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ A very big thank you goes to the Forge team that allowed anyone to mod Minecraft
In particular I want to thank diesieben07 that followed me throughout most of the development, without him none of this would have been possible.

## Technical details
This mod is required on both server and client to work.
For slab items to be recognized as slabs they must have the *minecraft:slabs* tag, as they should. If they don't, there's no way to understand whether they are slabs or not, so they are assumed to be not.
If another mod adds slabs that are not recognized by this mod, it's most probably for this reason, so check it and ask the other mod author to fix that.

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ plugins {
}
apply plugin: 'net.minecraftforge.gradle'

version = '1.18.2-3.0.0.0'
version = '1.18.2-3.1.0.0'
group = 'crystalspider.justverticalslabs'
archivesBaseName = 'justverticalslabs'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import net.minecraft.world.level.block.state.BlockState;

/**
*
* Cutout Vertical Slab BlockItem.
*/
public class CutoutVerticalSlabBlockItem extends VerticalSlabBlockItem {
public CutoutVerticalSlabBlockItem() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import net.minecraft.world.level.block.state.BlockState;

/**
*
* Translucent Vertical Slab BlockItem.
*/
public class TranslucentVerticalSlabBlockItem extends VerticalSlabBlockItem {
public TranslucentVerticalSlabBlockItem() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
public class MapsInstantiator {
/**
* Searches through all {@link Item Items} with the {@link ItemTags#SLABS slabs} tag and associates them to the block they're made from.
* Also instantiate other utility maps.
* Also instantiates other utility maps.
*
* @param recipeManager
*/
Expand Down
5 changes: 3 additions & 2 deletions updates.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"homepage": "https://www.curseforge.com/minecraft/mc-mods/just-vertical-slabs/files",
"1.18.2": {
"1.18.2-3.1.0.0": "",
"1.18.2-3.0.0.0": "https://www.curseforge.com/minecraft/mc-mods/just-vertical-slabs/files/3793049",
"1.18.2-2.0.0.0": "https://www.curseforge.com/minecraft/mc-mods/just-vertical-slabs/files/3786215",
"1.18.2-1.0.0.0": "https://www.curseforge.com/minecraft/mc-mods/just-vertical-slabs/files/3785696"
},
"promos": {
"1.18.2-latest": "1.18.2-3.0.0.0",
"1.18.2-recommended": "1.18.2-3.0.0.0"
"1.18.2-latest": "1.18.2-3.1.0.0",
"1.18.2-recommended": "1.18.2-3.1.0.0"
}
}

0 comments on commit d6742c1

Please sign in to comment.