-
Notifications
You must be signed in to change notification settings - Fork 9
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
Showing
13 changed files
with
107 additions
and
43 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,8 +1,13 @@ | ||
title: Minegasm | ||
logo: minegasm.png | ||
logo: /minegasm.png | ||
repository: RainbowVille/minegasm | ||
description: A haptics Minecraft Forge mod | ||
description: A haptics Minecraft (Neo)Forge mod | ||
theme: just-the-docs | ||
color_scheme: minegasm | ||
callouts: | ||
warning: | ||
color: red | ||
highlight: | ||
color: blue | ||
plugins: | ||
- jemoji |
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,3 +1,3 @@ | ||
<footer class="site-footer"> | ||
Powered by <a href="https://jekyllrb.com/">Jekyll</a> & <a href="https://github.com/just-the-docs/just-the-docs">Just the Docs</a>. | ||
Powered by <a href="https://jekyllrb.com/">Jekyll</a> & <a href="https://github.com/just-the-docs/just-the-docs">Just the Docs</a> | ||
</footer> |
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
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
layout: default | ||
title: Development Guide | ||
nav_order: 7 | ||
has_children: true | ||
--- | ||
|
||
# Development Guide | ||
{: .no_toc } | ||
|
||
This section is intended for contributors. |
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
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
layout: default | ||
title: Release Notes | ||
nav_order: 6 | ||
has_children: true | ||
--- | ||
|
||
# Release Notes | ||
{: .no_toc } |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
layout: default | ||
title: v0.1 | ||
nav_order: 5 | ||
parent: Release Notes | ||
--- | ||
|
||
# v0.1 | ||
|
||
Initial release with very basic functionalities. The mod will connect to the toy upon starting and issue a vibrate command with a random intensity and duration whenever the player is hurt. |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
layout: default | ||
title: v0.2 | ||
nav_order: 4 | ||
parent: Release Notes | ||
--- | ||
|
||
# v0.2 | ||
|
||
The mod is now configurable. From the mod config menu, you can choose between 3 predefined modes: | ||
|
||
* NORMAL: the toy will vibrate when you attack other entities, mine, or gain XP. | ||
* MASOCHIST: the toy will vibrate when you're hurt or dying. | ||
* HEDONIST: the toy will vibrate on all events defined in other modes, except dying (this is replaced, instead, by having the toy vibrate when you're full and healthy). | ||
|
||
The fourth CUSTOM mode allows you to set your own preferences by defining the intensity of the vibration on various events. |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
layout: default | ||
title: v0.3 | ||
nav_order: 3 | ||
parent: Release Notes | ||
--- | ||
|
||
# v0.3 | ||
|
||
*Internal only*. Switched the hardware control library to [`buttplug-rs-ffi`](https://github.com/buttplugio/buttplug-rs-ffi). Abandoned in favor of v0.4. |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
layout: default | ||
title: v0.4 | ||
nav_order: 2 | ||
parent: Release Notes | ||
--- | ||
|
||
# v0.4 | ||
|
||
* Now covers Minecraft 1.12 to 1.20 | ||
* Migrated hardware control library to [`buttplug4j`](https://github.com/blackspherefollower/buttplug4j) (this supersedes v0.3) | ||
* Java 11 is required for 1.12.2–1.16.5 because of the `buttplug4j` library. | ||
|
||
## Known Issues | ||
* The mod for 1.12.2 is reported to be broken. | ||
* There is currently a bug in some versions of the Minecraft launcher that prevents the use of newer Java runtimes: [https://bugs.mojang.com/browse/MCL-18306](https://bugs.mojang.com/browse/MCL-18306). This affects the mods for the Minecraft versions before 1.17 as Minegasm requires at least Java 11. If you encounter this issue, a workaround is to delete `JavaCheck.jar` shipped with the launcher. | ||
* In-game config menu is missing for 1.13.2, 1.17.1, 1.18.2, 1.19.4, and 1.20.1. The mod can still be configured manually by editing the config file. |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
layout: default | ||
title: v0.5 | ||
nav_order: 1 | ||
parent: Release Notes | ||
--- | ||
|
||
# v0.5 | ||
|
||
* Added multiplayer support | ||
* Vibration intensity calculation is readjusted | ||
* Various fixes and stability improvements | ||
* Removed some unpopular versions: 1.13.2, 1.14.4, 1.16.3 | ||
* 1.12.2–1.16.5 now uses proper Java 8 version |
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
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,7 +1,7 @@ | ||
--- | ||
layout: default | ||
title: Troubleshoot | ||
nav_order: 5 | ||
nav_order: 4 | ||
--- | ||
|
||
# Troubleshooting | ||
|