Skip to content

Commit

Permalink
Version and documentation updated.
Browse files Browse the repository at this point in the history
Signed-off-by: Pavel Erokhin (MairwunNx) <[email protected]>
  • Loading branch information
MairwunNx committed Jan 27, 2020
1 parent bad0adc commit c3e62da
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 13 deletions.
8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.14.4-1.1.1] - 2020-01-27

### Changed
- Logger message with logging new home data.

### Fixed
- Incorrect operator level for executing home commands.

## [1.14.4-1.1.0] - 2020-01-23

### Added
Expand Down
8 changes: 4 additions & 4 deletions documentation/how-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ Downloads: [Cooldown](https://github.com/ProjectEssentials/ProjectEssentials-Coo
├── config
├── libraries
├── mods (that's how it should be)
│ ├── Project Essentials Core-MOD-1.14.4-1.X.X.X.jar (mandatory)
│ ├── Project Essentials Cooldown-1.14.4-1.X.X.X.jar (recommended)
│ ├── Project Essentials Permissions-1.14.4-1.X.X.X.jar (recommended)
│ └── Project Essentials Home-1.14.4-1.X.X.X.jar
│ ├── Project Essentials Core-MOD-1.14.4-1.X.X.jar (mandatory)
│ ├── Project Essentials Cooldown-1.14.4-1.X.X.jar (recommended)
│ ├── Project Essentials Permissions-1.14.4-1.X.X.jar (recommended)
│ └── Project Essentials Home-1.14.4-1.X.X.jar
└── ...
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ kotlinx_serialization_version=0.14.0
ess_core_version=v1.14.4-1.1.+
ess_perm_version=v1.14.4-1.1.+
ess_cooldown_version=v1.14.4-1.0.+
module_version=1.14.4-1.1.0
module_version=1.14.4-1.1.1
module_name=Project Essentials Home
module_id=project_essentials_home
module_vendor=MairwunNx (Pavel Erokhin)
8 changes: 4 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@

### Explore

#### [Download mod](https://github.com/ProjectEssentials/ProjectEssentials-Home/releases/download/v1.14.4-1.1.0/Project.Essentials.Home-1.14.4-1.1.0.jar) · [How to install](documentation/how-install.md) · [Troubleshooting](https://github.com/ProjectEssentials/ProjectEssentials-Home/issues/new/choose) · [CurseForge](https://www.curseforge.com/minecraft/mc-mods/ProjectEssentials-Home) · [Change log](changelog.md)
#### [Download mod](https://github.com/ProjectEssentials/ProjectEssentials-Home/releases/download/v1.14.4-1.1.1/Project.Essentials.Home-1.14.4-1.1.1.jar) · [How to install](documentation/how-install.md) · [Troubleshooting](https://github.com/ProjectEssentials/ProjectEssentials-Home/issues/new/choose) · [CurseForge](https://www.curseforge.com/minecraft/mc-mods/ProjectEssentials-Home) · [Change log](changelog.md)

### Commands and Permissions

|Command name |Aliases |Permission |Op level |Description |
|----- |----- |---- |---- |---- |
|`/home` |`/ehome` |`ess.home` |`2` |Teleport you to your home. If command executed without arguments then will be used default home name `home`. Execution example with home name `/home home2`.|
|`/sethome` |`/esethome` |`ess.home.set` |`2` |Create new home point at player position. If command executed without argument `name` then will be used default home name `home`. If home with some name exist, then command execution will be aborted if you not use argument `override`, for overriding existing home, just type `true` after home name. (`boolean` type argument).|
|`/delhome` |`/edelhome`, `/removehome`, `/remhome` |`ess.home.remove` |`2` |Remove existing home point with name. If command executed without arguments then home with name `home` will be removed.|
|`/home` |`/ehome` |`ess.home` |`0` |Teleport you to your home. If command executed without arguments then will be used default home name `home`. Execution example with home name `/home home2`.|
|`/sethome` |`/esethome` |`ess.home.set` |`0` |Create new home point at player position. If command executed without argument `name` then will be used default home name `home`. If home with some name exist, then command execution will be aborted if you not use argument `override`, for overriding existing home, just type `true` after home name. (`boolean` type argument).|
|`/delhome` |`/edelhome`, `/removehome`, `/remhome` |`ess.home.remove` |`0` |Remove existing home point with name. If command executed without arguments then home with name `home` will be removed.|

### Compatibility

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ issueTrackerURL="https://github.com/ProjectEssentials/ProjectEssentials-Home/iss

[[mods]]
modId="project_essentials_home"
version="1.14.4-1.1.0"
version="1.14.4-1.1.1"
displayName="Project Essentials Home"
updateJSONURL="https://raw.githubusercontent.com/ProjectEssentials/ProjectEssentials-Home/MC-1.14.4/update.json"
displayURL="https://github.com/ProjectEssentials/ProjectEssentials-Home"
Expand Down
7 changes: 4 additions & 3 deletions update.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"homepage": "https://github.com/ProjectEssentials/ProjectEssentials-Home/releases/tag/v1.14.4-1.1.0",
"homepage": "https://github.com/ProjectEssentials/ProjectEssentials-Home/releases/tag/v1.14.4-1.1.1",
"1.14.4": {
"1.14.4-1.1.1": " - Changed logger message with logging new home data.\n - Incorrect operator level for executing home commands fixed.",
"1.14.4-1.1.0": " - German support by @BixelPitch added.\n - Checks for availability `cooldown` and `permissions` modules added.\n - Compatibility with core `1.1.0.0` and permissions `1.1.0.0` added.\n - Checking on already exist home added.\n - `override` argument for overriding existing home added.\n - Removing previous home if override enabled added.\n - Gradle wrapper version updated.\n - Java plugin removed from buildscript.\n - Project Essentials dependencies updated.\n - Kotlin and Kotlinx Serialization dependencies updated.\n - `gradle.properties` variable naming improved.\n - Usings `jsonInstance` from core module.\n - Issue tracker url in `mods.toml` file fixed.\n - Permissions module from mandatory dependencies removed.\n - Redundant logger messages removed.\n - Kotlin compiler option `-Xuse-experimental` from buildscript removed.\n - `createConfigDirs` method from `StorageBase` removed.\n - `UseExperimental` annotation for `StorageBase` class removed.",
"1.14.4-1.0.0.0": " - Initial release of Project Essentials Home as Project Essentials part."
},
"promos": {
"1.14.4-latest": "1.14.4-1.1.0",
"1.14.4-recommended": "1.14.4-1.1.0"
"1.14.4-latest": "1.14.4-1.1.1",
"1.14.4-recommended": "1.14.4-1.1.1"
}
}

0 comments on commit c3e62da

Please sign in to comment.