Skip to content

Commit c2c97c6

Browse files
committed
update to version 1.27.0+70
1 parent 05aa553 commit c2c97c6

20 files changed

+145
-15
lines changed

CHANGELOG.md

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
1-
1.26.0+68
1+
1.27.0+70
22

3-
• add mod AE2 Utilities
4-
• add mod Better Fusion Reactor
5-
• add mod Not Enough Energistics
3+
• add mod Galacticraft Legacy
4+
5+
• add config Better Fusion Reactor
66

77
• update mod Asmodeus Core
8-
• update mod Floralis
9-
• update mod Galactic Tweaks
8+
• update mod Better Fusion Reactor
9+
• update mod Foam Fix
1010
• update mod Galaxy Space
11-
• update mod Hammer Lib
12-
• update mod Interstellar Exoplanets
1311
• update mod Mixin Booter
14-
• update mod Steve KunG's Lib
15-
16-
• add config Not Enough Energistics
12+
• update mod More Planets
13+
• update mod Open Computers
1714

18-
• update config Asmodeus Core
15+
• update config Foam Fix
16+
• update config Galacticraft Legacy
1917
• update config Galaxy Space
20-
• update config Hammer Lib
18+
• update config Open Computers
19+
20+
• remove mod Galacticraft Core
21+
• remove mod Galacticraft Planets
22+
• remove mod Micdoodle Core
23+
24+
• fix console output formatting

config/Galacticraft/core.conf

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ achievements {
66
}
77

88

9+
chunkloading {
10+
# If you don't want each player's chunks to load when they log in, set to false
11+
B:LoadOnLogin=true
12+
}
13+
14+
915
client {
1016
# Setting this to false will revert night skies back to default minecraft star count
1117
B:"More Stars"=true
@@ -22,6 +28,9 @@ client {
2228
# If true, this will move the Oxygen Indicator to the bottom. You can combine this with "Minimap Left"
2329
B:"Minimap Bottom"=false
2430

31+
# If you have FPS problems, setting this to true will disable GC Rocket icons from rotating in GUI's
32+
B:"Disable Rocket Icon Rotation"=false
33+
2534
# By default, Galacticraft will override capes with the mod's donor cape. Set to false to disable.
2635
B:"Override Capes"=true
2736
}

config/GalaxySpace/alpha_centauri/dimensions.conf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ dimensions {
99
general {
1010
# Enable/Disable Proxima B
1111
B:enableProxima_B=true
12+
13+
# Enable/Disable Proxima C
14+
B:enableProxima_C=true
15+
16+
# Enable/Disable Proxima D
17+
B:enableProxima_D=true
1218
}
1319

1420

config/GalaxySpace/dimensions.conf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,9 @@ general {
141141

142142
# Enable/Disable Venus Space Station
143143
B:enableVenusSpaceStation=true
144+
145+
# Enable/Disable Mars Space Station
146+
B:enableMarsSpaceStation=true
144147
}
145148

146149

config/better_fusion_reactor.cfg

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Configuration file
2+
3+
better_fusion_reactor {
4+
# Explosion radius of reactor controller. 4 - TNT size
5+
I:explosion_radius=4
6+
7+
# How often Reactivity changes and error level change speed. Values between (1..20), default 10
8+
I:reaction_difficulty=10
9+
10+
# Small explosion when reactor reaches 100% error level
11+
B:reactor_meltdown=false
12+
}
13+
14+

config/foamfix.cfg

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,13 @@ client {
3434
# Faster/less memory-churning construction mechanism for ModelResourceLocation objects. Identified by malte0811 in FerriteCore - implemented in a distinct way. [default: true]
3535
B:modelResourceLocationFastConstruct=true
3636

37-
# More optimized multipart model condition storage. Inspired by malte0811's research. [default: true]
37+
# Fix opening URLs on Linux-based installs. [default: true]
38+
B:openUrlLinux=true
3839
B:smallModelConditions=true
3940

41+
# More optimized multipart model condition storage. Inspired by malte0811's research. Now not broken! [default: true]
42+
B:smallModelConditionsV2=true
43+
4044
# Wipes the IModel cache after baking is finished. Saves a lot of RAM, as most IModels will not be reloaded. [default: true]
4145
B:wipeModelCache=true
4246
}

config/opencomputers/default.recipes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,11 @@ pistonupgrade {
319319
[stickWood, "oc:circuitChip1", stickWood]
320320
[ingotIron, "oc:materialCircuitBoardPrinted", ingotIron]]
321321
}
322+
stickypistonupgrade {
323+
type: shapeless
324+
input: ["oc:pistonUpgrade", "minecraft:slime_ball"]
325+
output: 1
326+
}
322327
signupgrade {
323328
input: [[ingotIron, dyeBlack, ingotIron]
324329
["oc:circuitChip1", stickWood, "oc:circuitChip1"]

config/opencomputers/settings.conf

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -486,6 +486,27 @@ opencomputers {
486486
# set to a non-positive value the tmp file system will not be created.
487487
tmpSize=64
488488
}
489+
490+
# Graphics Card Component Settings
491+
gpu {
492+
493+
# This setting assigns the budget call cost to invoke bitblt to write vram
494+
# to a screen. Video ram can bitblit to a screen which can cause real life
495+
# network laod the defaults settings put bitblit network impact close to gpu.set
496+
# Increase these values to throttle bitblt more. The cost tier N is bitbltCost * 2^(tier)
497+
# default is .5, which gives: .5, 1, 4
498+
bitbltCost=0.5
499+
500+
# Video ram can be allocated on a gpu. The amount of vram you can allocate
501+
# is equal to the width*height of the max resolution of the gpu multiplied
502+
# by the "vramSize" for that tier. For example, a T2 gpu can have 80*25*2 of
503+
# text buffer space allocated
504+
vramSizes=[
505+
1,
506+
2,
507+
3
508+
]
509+
}
489510
hologram {
490511

491512
# Whether the hologram block should provide light. It'll also emit light
@@ -1635,6 +1656,6 @@ opencomputers {
16351656
# The version of OC this config was generated by. This is used to allow the
16361657
# mod to reset parts of the config when their meaning changed across
16371658
# versions, so that the user does not have to delete it.
1638-
version="1.7.5.192"
1659+
version="1.7.7+5413028"
16391660

16401661
}

log4j2_server.xml

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Configuration status="WARN" packages="com.mojang.util">
3+
<Appenders>
4+
<Console name="FmlSysOut" target="SYSTEM_OUT">
5+
<PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level] [%logger]: %replace{%msg}{(?i)\u00A7[0-9A-FK-OR]}{}%n" />
6+
</Console>
7+
<Console name="SysOut" target="SYSTEM_OUT">
8+
<PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level]: %replace{%msg}{(?i)\u00A7[0-9A-FK-OR]}{}%n" />
9+
</Console>
10+
<Queue name="ServerGuiConsole" ignoreExceptions="true">
11+
<PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level] [%logger]: %replace{%msg}{(?i)\u00A7[0-9A-FK-OR]}{}%n" />
12+
</Queue>
13+
<RollingRandomAccessFile name="File" fileName="logs/latest.log" filePattern="logs/%d{yyyy-MM-dd}-%i.log.gz">
14+
<PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level]: %replace{%msg}{(?i)\u00A7[0-9A-FK-OR]}{}%n" />
15+
<Policies>
16+
<TimeBasedTriggeringPolicy />
17+
<OnStartupTriggeringPolicy />
18+
</Policies>
19+
</RollingRandomAccessFile>
20+
<Routing name="FmlFile">
21+
<Routes pattern="$${ctx:side}">
22+
<Route>
23+
<RollingRandomAccessFile name="FmlFile" fileName="logs/fml-${ctx:side}-latest.log" filePattern="logs/fml-${ctx:side}-%i.log">
24+
<PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level] [%logger/%X{mod}]: %replace{%msg}{(?i)\u00A7[0-9A-FK-OR]}{}%n" />
25+
<DefaultRolloverStrategy max="3" fileIndex="max" />
26+
<Policies>
27+
<OnStartupTriggeringPolicy />
28+
</Policies>
29+
</RollingRandomAccessFile>
30+
</Route>
31+
<Route key="$${ctx:side}">
32+
<RandomAccessFile name="FmlFile" fileName="logs/fml-junk-earlystartup.log" >
33+
<PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level] [%logger]: %replace{%msg}{(?i)\u00A7[0-9A-FK-OR]}{}%n" />
34+
</RandomAccessFile>
35+
</Route>
36+
</Routes>
37+
</Routing>
38+
</Appenders>
39+
<Loggers>
40+
<Logger level="info" name="com.mojang" additivity="false">
41+
<AppenderRef ref="SysOut" level="INFO" />
42+
<AppenderRef ref="File" />
43+
<AppenderRef ref="ServerGuiConsole" level="INFO" />
44+
</Logger>
45+
<Logger level="info" name="net.minecraft" additivity="false">
46+
<filters>
47+
<MarkerFilter marker="NETWORK_PACKETS" onMatch="DENY" onMismatch="NEUTRAL" />
48+
<RegexFilter regex=".*\$\{[^}]*\}.*" onMatch="DENY" onMismatch="NEUTRAL"/>
49+
</filters>
50+
<AppenderRef ref="SysOut" level="INFO" />
51+
<AppenderRef ref="File" />
52+
<AppenderRef ref="ServerGuiConsole" level="INFO" />
53+
</Logger>
54+
<Root level="all">
55+
<filters>
56+
<MarkerFilter marker="NETWORK_PACKETS" onMatch="DENY" onMismatch="NEUTRAL"/>
57+
<RegexFilter regex=".*\$\{[^}]*\}.*" onMatch="DENY" onMismatch="NEUTRAL"/>
58+
</filters>
59+
<AppenderRef ref="FmlSysOut" level="INFO" />
60+
<AppenderRef ref="ServerGuiConsole" level="INFO" />
61+
<AppenderRef ref="FmlFile"/>
62+
</Root>
63+
</Loggers>
64+
</Configuration>

0 commit comments

Comments
 (0)