Skip to content

Commit

Permalink
1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Madis0 committed Nov 1, 2021
1 parent 64a8766 commit 3a995a0
Show file tree
Hide file tree
Showing 59 changed files with 1,069 additions and 5 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,19 @@ Other

## 1.16.5

### 1.10.0

An unexpected backport update that matches the mods with 2.3.2 ones, released because 1.9.1 got broken due to a Java 16 and Jumploader issue. For the best experience I recommend upgrading to the latest version though.

* Updated all mods
* Added AdvancementInfo, Better Mount HUD, Cloth API, Custom Entity Models, Indium, Iris Shaders, LambdaBetterGrass, No Potion Offset, ToolTipFix, WI Zoom, YOSBR
* Removed Jumploader, Ok Zoomer, Smooth Scrolling Everywhere
* Added Mod Menu Helper
* Applied configs from 2.3.2
* Now uses native Fabric Loader 0.11.7 (0.12.3 is still in beta)
* Hydrogen is disabled by default in MultiMC version to be compatible with Java 16 (vanilla launcher uses bundled Java 8 anyway)
* Made a MultiMC auto-update version in Github ¯\_(ツ)_

### 1.9.1

* Several mods updated
Expand Down
6 changes: 2 additions & 4 deletions CLI tools/Curseforge to Packwiz.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
git_path = user_path + "/Documents/GitHub/fabulously-optimized/"
version_no = "1.17.1"
packwiz_path = git_path + "Packwiz/" + version_no + "/"
exe_path = "packwiz.exe"
exe_path = "..\packwiz.exe"
mods_path = packwiz_path + "mods"

mod_files = os.listdir(mods_path)
Expand All @@ -16,6 +16,4 @@
os.system(exe_path + " curseforge import \"" + from_file + "\"")
os.system(exe_path + " remove hydrogen")
os.system(exe_path + " mr install hydrogen")
os.system(exe_path + " refresh")

# TODO: Update Modrinth json
os.system(exe_path + " refresh")
5 changes: 5 additions & 0 deletions Packwiz/1.16.5/config/fabric_loader_dependencies.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"version": 1,
"overrides": {
}
}
15 changes: 15 additions & 0 deletions Packwiz/1.16.5/config/slightguimodifications/cts.groovy
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
mainMenu {
enabled = true
label {
position {
x { it - 2 }
y { it - 20 }
}
text = literal("Fabulously Optimized 1.10.0")
align = "right"
color = 0xFFFFFF
hoveredColor = 0x55FFFF
shadow = true
onClicked = url("https://www.curseforge.com/minecraft/modpacks/fabulously-optimized")
}
}
8 changes: 8 additions & 0 deletions Packwiz/1.16.5/config/yosbr/config/capes.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"clientCapeType": "MINECRAFTCAPES",
"glint": false,
"enableOptifine": true,
"enableLabyMod": true,
"enableWynntils": true,
"enableMinecraftCapesMod": true
}
2 changes: 2 additions & 0 deletions Packwiz/1.16.5/config/yosbr/config/cem.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
"use_new_model_creation_fix"=true
"use_optifine_folder"=true
6 changes: 6 additions & 0 deletions Packwiz/1.16.5/config/yosbr/config/colormatic.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#Colormatic Config
#Wed Aug 25 14:41:01 EEST 2021
fog.clearSky=false
light.flickerBlockLight=true
fog.clearVoid=false
light.blendSkyLight=true
3 changes: 3 additions & 0 deletions Packwiz/1.16.5/config/yosbr/config/cullleaves.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"enabled": true
}
4 changes: 4 additions & 0 deletions Packwiz/1.16.5/config/yosbr/config/dynamicfps.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
reduceFPSWhenUnfocused = true
unfocusedFPS = 1
restoreFPSWhenHovered = true
runGCOnUnfocus = true
5 changes: 5 additions & 0 deletions Packwiz/1.16.5/config/yosbr/config/iris.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#This file stores configuration options for Iris, such as the currently active shaderpack
#Mon Sep 06 18:05:42 EEST 2021
maxShadowRenderDistance=32
shaderPack=
enableShaders=false
8 changes: 8 additions & 0 deletions Packwiz/1.16.5/config/yosbr/config/lambdabettergrass.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# LambdaBetterGrass configuration.
# The better grass mode. Values: "off", "fastest", "fast" and "fancy".
mode = "fast"
# Debug mode. Debug mode allows to output the generated texture in the debug folder of your minecraft instance.
debug = false
# The better layer option.
better_layer = true

17 changes: 17 additions & 0 deletions Packwiz/1.16.5/config/yosbr/config/lambdynlights.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# LambDynamicLights configuration.
# The dynamic lights mode
mode = "fastest"

# Light sources settings.
[light_sources]
# Enables water-sensitive light sources check. This means that water-sensitive items will not light up when submerged in water.
water_sensitive_check = true
# Enable block entities light source.
block_entities = true
# Enable entities light source.
entities = true
# TNT lighting mode. May be off, simple or fancy.
tnt = "simple"
# Creeper lighting mode. May be off, simple or fancy.
creeper = "simple"

24 changes: 24 additions & 0 deletions Packwiz/1.16.5/config/yosbr/config/modmenu.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"sorting": "ascending",
"count_libraries": false,
"compact_list": false,
"count_children": true,
"mods_button_style": "shrink",
"count_hidden_mods": false,
"mod_count_location": "title_screen",
"hide_mod_links": false,
"show_libraries": false,
"hide_mod_license": true,
"hide_badges": true,
"hide_mod_credits": true,
"easter_eggs": false,
"modify_title_screen": true,
"modify_game_menu": true,
"hide_config_buttons": false,
"hidden_mods": [
"minecraft",
"indium",
"fabric-language-kotlin"
],
"log_deprecation_warnings": false
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
{
"fluidAdvancements": true,
"fluidStatusEffects": true,
// Whether we should unlimit the hard 60 fps limit placed on the title screen.
"unlimitTitleScreenFps": false,
"openingAnimation": {
"fluidChatOpening": false,
"fluidOpenSlideFromBottom": false,
"fluidOpenFade": false,
"fluidAnimationDuration": 400,
"affectsGameMenus": false,
"affectsInventories": false,
"ignoreSlideWhenRedirected": false,
"ignoreFadeWhenRedirected": false
},
"textFieldModifications": {
// Whether this module is enabled.
"enabled": false,
/* Set to Color to use the Border and Background Color.
Set to Texture to use resource pack:
/assets/minecraft/textures/gui/text_field.png
More documentations on website.
*/
"backgroundMode": "COLOR",
"borderColor": 10526880,
"backgroundColor": 0,
"selectionMode": "INVERT",
// Whether Text Fields should allow right click actions.
"rightClickActions": false
},
"sliderModifications": {
// Whether this module is enabled.
"enabled": false,
"grabberWidth": 8,
/* Whether to use custom texture:
/assets/slightguimodifications/textures/gui/slider(_hovered).png
or
/config/slightguimodifications/slider(_hovered).png
*/
"customBackgroundTexture": false
},
"debugInformation": {
"showFps": false
},
"customScaling": {
"vanillaScaleSlider": false,
"scale": 1.0
},
"slotHighlight": {
// Whether this module is enabled.
"enabled": false,
"color": -2130706433
},
"tooltipModifications": {
// Whether this module is enabled.
"enabled": false,
"backgroundColor": -267386864,
"outlineGradientTopColor": 1347420415,
"outlineGradientBottomColor": 1344798847
},
// Whether GUI should allow right click actions.
"rightClickActions": false,
"satisfyingScreenshots": true
}
50 changes: 50 additions & 0 deletions Packwiz/1.16.5/config/yosbr/config/sodium-extra-options.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"animation_settings": {
"animation": true,
"animate_water": true,
"animate_lava": true,
"animate_fire": true,
"animate_portal": true,
"block_animations": true
},
"particle_settings": {
"particles": true,
"rain_splash": true,
"explosion": true,
"water": true,
"smoke": true,
"potion": true,
"portal": true,
"redstone": true,
"drip": true,
"firework": true,
"bubble": true,
"environment": true,
"villagers": true,
"composter": true
},
"detail_settings": {
"rain_snow": true,
"biome_colors": true,
"sky_colors": true
},
"render_settings": {
"fog_distance": 0,
"light_updates": true,
"item_frame": true,
"armor_stand": true,
"painting": true,
"piston": true
},
"extra_settings": {
"show_fps": false,
"show_coords": false,
"reduce_resolution_on_mac": true,
"cloud_height": 128,
"toasts": true,
"static_fov": false,
"instant_sneak": false,
"prevent_shaders": false,
"use_fast_random": true
}
}
21 changes: 21 additions & 0 deletions Packwiz/1.16.5/config/yosbr/config/sodium-options.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"quality": {
"weather_quality": "FAST",
"enable_vignette": true
},
"advanced": {
"arena_memory_allocator": "ASYNC",
"animate_only_visible_textures": true,
"use_entity_culling": true,
"use_particle_culling": true,
"use_fog_occlusion": true,
"use_block_face_culling": false,
"allow_direct_memory_access": true,
"enable_memory_tracing": false,
"use_advanced_staging_buffers": true,
"max_pre_rendered_frames": 3
},
"notifications": {
"hide_donation_button": true
}
}
15 changes: 15 additions & 0 deletions Packwiz/1.16.5/config/yosbr/options.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
version:2586
autoJump:false
snooperEnabled:false
gamma:0.5
guiScale:3
resourcePacks:["vanilla","Fabric Mods","lambdabettergrass/default","cullleaves/smartleaves","file/Mod Menu Helper.zip"]
tutorialStep:none
skipMultiplayerWarning:true
joinedFirstServer:true
key_key.saveToolbarActivator:key.keyboard.unknown
key_key.wi_zoom.zoom:key.keyboard.c
key_key.antighost.reveal:key.keyboard.unknown
key_iris.keybind.reload:key.keyboard.unknown
key_iris.keybind.toggleShaders:key.keyboard.unknown
key_iris.keybind.shaderPackSelection:key.keyboard.unknown
Loading

0 comments on commit 3a995a0

Please sign in to comment.