Browse Source

updated to 1.17

Noah Vogt 3 năm trước cách đây
mục cha
commit
5587e3bf5e
4 tập tin đã thay đổi với 27 bổ sung9 xóa
  1. 5 5
      README.md
  2. 0 0
      file-list-1.16
  3. 18 0
      file-list-1.17
  4. 4 4
      install.sh

+ 5 - 5
README.md

@@ -1,9 +1,9 @@
 ![logo](logo.png)
-# BetterPlainSurvival-1.16
+# BetterPlainSurvival 1.16 / 1.17
 
-This is a **modpack** (installer) for Minecraft 1.16 designed to archieve a more convenient playing experience **without changing any vanilla behaviour**: This modpack is *entirely client-sided*. It should be *almost multiplayer proof* ([FVT-fabric](https://github.com/Flourick/FVT-fabric) is the only concern as it has built-in 'hacking' features like freecam that are forbidden on most mutliplayer servers).
+This is a **modpack** (installer) for Minecraft both 1.16 and 1.17 designed to archieve a more convenient playing experience **without changing any vanilla behaviour**: This modpack is *entirely client-sided*. It should be *almost multiplayer proof* ([FVT-fabric](https://github.com/Flourick/FVT-fabric) is the only concern as it has built-in 'hacking' features like freecam that are forbidden on most mutliplayer servers).
 
-BetterPlainSurvival-1.16 uses [Fabric](https://fabricmc.net/) as its mod loder and some its + addidional librarys.
+BetterPlainSurvival uses [Fabric](https://fabricmc.net/) as its mod loder and some its + addidional librarys.
 
 ## Why does this exist?
 
@@ -20,7 +20,7 @@ I would hope more people in the modding scene would also do something against th
 * NEI-like mod to search item and their recipes
 * ingame account changer
 * simple HUD for FPS + coordinates
-* various performance improvement mods: [sodium](https://github.com/CaffeineMC/sodium-fabric), [phosphor](https://github.com/CaffeineMC/phosphor-fabric) and [lithium](https://github.com/CaffeineMC/lithium-fabric)
+* various performance improvement mods: [sodium](https://github.com/CaffeineMC/sodium-fabric), [phosphor](https://github.com/CaffeineMC/phosphor-fabric) and [lithium](https://github.com/CaffeineMC/lithium-fabric) *Note: only on 1.16*
 * a full advancements progress viewer (e.g. list of all biomes you've been in)
 * option to disable nether fog
 * advanced, various OptiFine-like graphics settings
@@ -33,4 +33,4 @@ I would hope more people in the modding scene would also do something against th
     * displays death coordinates after dying
 * toggleable overlay that marks blocks with a potential lightlevel lower than 7
 * disable the sidebar completely or only its numbers (is does that automatically when the are in descending order)
-* of course, it uses [ModMenu](https://github.com/TerraformersMC/ModMenu) to change the settings of most of the other mods ingame
+* of course, it uses [ModMenu](https://github.com/TerraformersMC/ModMenu) to change the settings of most of the other mods ingame

+ 0 - 0
file-list → file-list-1.16


+ 18 - 0
file-list-1.17

@@ -0,0 +1,18 @@
+https://github.com/noahvogt/AdvancementInfo/releases/download/fabric0.36.1-1.2.1/advancementinfo-1.17.1-fabric0.36.1-1.2.1.jar
+https://github.com/noahvogt/architectury-api/releases/download/v2.6.35/architectury-2.6.35.jar
+https://github.com/noahvogt/ash/releases/download/v1.1.15/ash-1.1.15.jar
+https://github.com/noahvogt/HorseStatsVanilla/releases/download/v4.1.8/horse-stats-vanilla-4.1.8.jar
+https://github.com/noahvogt/LightOverlay/releases/download/v6.0.1/light-overlay-6.0.1-fabric.jar
+https://github.com/noahvogt/NoPotionOffset/releases/download/v1.0.2/no-potion-offset-1.0.2.jar
+https://github.com/noahvogt/ugly-scoreboard-fix/releases/download/v2.4.0/uglyscoreboardfix-2.4.0.jar
+https://github.com/noahvogt/CompleteConfig/releases/download/1.2.0/completeconfig-lib-1.2.0.jar
+https://github.com/noahvogt/RoughlyEnoughItems/releases/download/v6.1.331/RoughlyEnoughItems-6.1.331.jar
+https://github.com/noahvogt/cloth-config/releases/download/v5.1.40/cloth-config-5.1.40-fabric.jar
+https://github.com/noahvogt/Better-Controls/releases/download/v.1.2.1/BetterControls-Fabric-1.17.1+v1.2.1.jar
+https://github.com/axieum/authme/releases/download/v1.5.0/authme-1.17-1.5.0.jar
+https://github.com/FabricMC/fabric/releases/download/0.42.1%2B1.17/fabric-api-0.42.1+1.17.jar
+https://github.com/CaffeineMC/lithium-fabric/releases/download/mc1.17.1-0.7.5/lithium-fabric-mc1.17.1-0.7.5.jar
+https://github.com/TerraformersMC/ModMenu/releases/download/v2.0.14/modmenu-2.0.14.jar
+https://github.com/EnnuiL/OkZoomer/releases/download/5.0.0-beta.2%2B1.17/okzoomer-5.0.0-beta.2+1.17.jar
+https://github.com/CaffeineMC/sodium-fabric/releases/download/mc1.17.1-0.3.2/sodium-fabric-mc1.17.1-0.3.2+build.7.jar
+https://github.com/Flourick/FVT-fabric/releases/download/v1.7.4/fvt-fabric-1.7.4-mc1.17.1.jar

+ 4 - 4
install.sh

@@ -1,11 +1,11 @@
 #!/bin/sh
 
-if [ $# != 1 ]; then
-    echo "Error: Usage: install.sh [output (mods) dir]" 1>&2
+if [ $# != 2 ]; then
+    echo "Error: Usage: install.sh [file list] [output (mods) dir]" 1>&2
     exit 1
 fi
 
-if [ ! -d "$1" ]; then
+if [ ! -d "$2" ]; then
     echo "Error: directory $1 not found or missing permissions" 1>&2
     exit 1
 fi
@@ -15,4 +15,4 @@ if ! command -v "wget" > /dev/null 2>&1; then
     exit 1
 fi
 
-wget -q --show-progress -P "$1" --input-file="file-list"
+wget -q --show-progress -P "$2" --input-file="$1"