From d98d5fc43731b913ddc92931e074495302257deb Mon Sep 17 00:00:00 2001 From: Siphalor Date: Sat, 9 Apr 2022 16:18:05 +0200 Subject: [PATCH] Remove the separate modding section --- _config.yml | 9 ---- about.md | 6 ++- collections/_mods/mouse-wheelie.md | 47 ----------------- collections/_mods/nbt-crafting.md | 84 ------------------------------ modding.html | 34 ------------ 5 files changed, 5 insertions(+), 175 deletions(-) delete mode 100644 collections/_mods/mouse-wheelie.md delete mode 100644 collections/_mods/nbt-crafting.md delete mode 100644 modding.html diff --git a/_config.yml b/_config.yml index fd62d01..5f7bc96 100644 --- a/_config.yml +++ b/_config.yml @@ -36,10 +36,6 @@ collections: posts: output: true permalink: /posts/:title - mods: - output: true - permalink: /mods/:title - layout: mod # Markdown settings markdown: kramdown @@ -54,11 +50,6 @@ defaults: values: layout: post comments: false - - scope: - path: "" - type: mods - values: - layout: mod # Jekyll Compose default front matter jekyll_compose: diff --git a/about.md b/about.md index 3270189..aec5a9d 100644 --- a/about.md +++ b/about.md @@ -7,7 +7,11 @@ comments: false Hi, I'm a German software developer currently studying Applied Informatics. -In my spare time I do quite [some modding]({% link modding.html %}) to the sandbox video game [Minecraft](https://en.wikipedia.org/wiki/Minecraft). I also do some more or less experimental projects with Python, PHP and Rust. +In my spare time I do quite some modding to the sandbox video game [Minecraft](https://en.wikipedia.org/wiki/Minecraft) +(see +[CurseForge](https://www.curseforge.com/members/siphalor/projects) or +[Modrinth](https://modrinth.com/user/Siphalor)). +I also do some more or less experimental projects with Python, PHP and Rust. diff --git a/collections/_mods/mouse-wheelie.md b/collections/_mods/mouse-wheelie.md deleted file mode 100644 index fd89b75..0000000 --- a/collections/_mods/mouse-wheelie.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -name: Mouse Wheelie -slug: mouse-wheelie -curseforge: mouse-wheelie -modrinth: mouse-wheelie -github: https://github.com/Siphalor/mouse-wheelie -excerpt: A mod extending the mouse wheel and inventory interactions — e.g. scrolling, refilling and sorting. -mc_versions: [1.14, 1.15, 1.16, 1.17] ---- - -_No mouses were harmed in the making of this mod._ - ---- - -# Current features - -* When hovering over items you can scroll up and down to send single items up and down. - * When holding _shift_ alongside you may send whole stacks of items. - * When holding _control_ alongside you can move all stacks of the same type of item. - * When you're in scrollable inventories you might want to press _alt_ to prevent scrolling items. -* When you're sending items via shift-leftclick you can now hold both buttons to send all stacks you're hovering over -* Hold alt-leftclick to drop items quickly. -* When you're in the creative inventory and hover over the tab icons you can scroll through all the creative tabs and pages. -* In your facourite recipe books you can: - * hover over the recipe grid to scroll through the pages. - * hover over the recipe group tabs to scroll through them. -* Sort inventories by clicking with your mouse wheel (you can also define an own keybinding) - * sorts by raw id (will most likely group by mods and similar items) - * hold _shift_ while clicking to sort by quantity - * hold _control_ while clicking to sort by alphabet - * You can customize which sort modes you prefer -* Press the swap key in any inventory to swap with the offhand -* Let your slots be automagically refilled from your inventory! -* Pick the matching tools for blocks by either sneaking while picking the block or by holding a tool. (this is configurable) -* Right-click trades or recipes to directly apply the crafting. When holding shift it will craft/trade a full stack -* Also: Armor switch if MW is installed on the server-side 🙂 - -# Configuration -Lots of stuff is configurable. To open the config screen you'll need to install [Mod Menu](https://minecraft.curseforge.com/projects/modmenu). - -# Limitations -Since this mod is completely clientside item scrolling might be a bit laggy on hard-working servers. - - -This mod will not work in *Applied Energistics 2* screens and inventories. AE2 handles inventory screens even more strangely than Mojang handles creative inventories, so don't expect any fixes from my side! - -To make you aware of this MW declares a conflict with AE2 which will show up in the log. This incompatibility only applies to certain mods and all other inventories will work fine. diff --git a/collections/_mods/nbt-crafting.md b/collections/_mods/nbt-crafting.md deleted file mode 100644 index cfc3da3..0000000 --- a/collections/_mods/nbt-crafting.md +++ /dev/null @@ -1,84 +0,0 @@ ---- -name: Nbt Crafting -slug: nbt-crafting -curseforge: nbt-crafting -modrinth: nbt-crafting -github: https://github.com/Siphalor/nbt-crafting -excerpt: Extend the existing customizable crafting system to be able to do more complex operations on items. -mc_versions: [1.15, 1.16, 1.17] ---- - -## About - -It's a fabric mod which allows you to add/change JSON crafting/cooking/etc. recipes to use nbt input and output. - -Everything is kept nicely visualized in the vanilla gui. - -This can be achieved through the now reintroduced data attribute. - -For more information see [the wiki pages](https://mcwiki.siphalor.de/nbt-crafting/v2). - -You may want to use this mod with [Cotton](https://minecraft.curseforge.com/projects/cotton) since this enables you to load datapacks globally and to remove unwanted recipes. - -## Extras :) - -Nbt Crafting also gives you the ability to add new brewing recipes and enables you to add cauldron and anvil recipes. See [the wiki]((https://mcwiki.siphalor.de/nbt-crafting/v2)) for an explanation of these features. - -Due to some additions made with this mod the recipe book displays also the output amount of all recipes - yay! - - -## Server Usage - -This mod works also server-side only. This causes minor cosmetic issues at the client side. - -## Example - -A simple recipe to get a cool "Battle Axe" of a diamond and a diamond sword with less than 41 damage. - -```json -{ - "type": "crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:diamond_sword", - "data": { - "require": { - "Damage": "$..40" - } - } - }, - { "item": "minecraft:diamond" } - ], - "result": { - "item": "minecraft:diamond_axe", - "data": { - "display": { - "Name": "{\"text\":\"Battle Axe\"}" - }, - "Enchantments": [ - { - "id": "minecraft:sharpness", - "lvl": 10 - } - ] - } - } -} -``` - -## Demo - -![Example Recipe ingame](https://raw.githubusercontent.com/Siphalor/nbt-crafting/1.15/images/demo.png) - -## Mod support - -Every mod which is based on the default vanilla recipe system and which uses the Ingredient class should be compatible in terms of input nbt matching. - -## Feedback - -If you encounter bugs or have suggestions just [open a GitHub issue](https://github.com/Siphalor/nbt-crafting/issues/new/choose). - - -## License/Modpack usage - -This mod is released under Apache 2.0. Feel free to include it in modpacks etc. as long as you attribute me :) diff --git a/modding.html b/modding.html deleted file mode 100644 index 6c18222..0000000 --- a/modding.html +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: Minecraft modding -permalink: /mods/ -layout: page -excerpt: My Minecraft mods. -comments: false ---- - -

In my spare time I work on several mods for the sandbox video game Minecraft. I base these mods on the Fabric toolchain but am kindly looking forward to the Quilt toolchain officially launching :)

- -

If you're interested in status and mod updates, or just want to leave feedback or give suggestions you may join my Discord modding server.

- -

You can find most of my mods at CurseForge and Modrinth.

- -

My mods

- -
-{%- for mod in site.mods -%} - -{%- else -%} -
- No mods to see here yet. -
-{%- endfor -%} -