Skip to content

Commit

Permalink
Removed Update Checks
Browse files Browse the repository at this point in the history
Thanks to @KaneHart
  • Loading branch information
Dream-Master committed Nov 23, 2016
1 parent ff3d1ba commit 2b36053
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 13 deletions.
2 changes: 1 addition & 1 deletion config/Automagy.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ general {
B:thirstytank_preserve_water_source=true

# On startup, check whether a newer version of the mod exists
B:version_checking=true
B:version_checking=false

# Use Waila to add information about how much experience a brain in a jar is holding.
B:waila_brain_jar=true
Expand Down
2 changes: 1 addition & 1 deletion config/BloodArsenal.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ miscellaneous {
B:"Is RED > PURPLE?"=false

# Allows for your version to be checked against the latest version
B:"Is auto-magic version checking allowed?"=true
B:"Is auto-magic version checking allowed?"=false

# Breaking glass is dangerous unless you're a wimp
B:"Is glass dangerous?"=true
Expand Down
7 changes: 6 additions & 1 deletion config/NEI/client.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#Most of these options can be changed ingame.
#Deleting any element will restore it to it's default value

checkUpdates=true
checkUpdates=false

#Change these options if you have a different mod installed on the server that handles the commands differently, Eg. Bukkit Essentials
command
Expand Down Expand Up @@ -74,6 +74,11 @@ tools
enchantment=0
itempanel=0
potion=2

neiintegration
{
dimension=0
}
}
}

Expand Down
49 changes: 40 additions & 9 deletions config/OpenComputers.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ opencomputers {
# generated), and 127 means maximum amplitude / volume.
beepVolume=32

# Whether to emit particle effects around players via nanomachines. This
# includes the basic particles giving a rough indication of the current
# power level of the nanomachines as well as particles emitted by the
# particle effect behaviors.
enableNanomachinePfx=true

# This is the scaling of the individual chars rendered on screens. This
# is set to slightly overscale per default, to avoid gaps between fully
# filled chars to appear (i.e. the block symbol that is used for cursor
Expand Down Expand Up @@ -188,6 +194,14 @@ opencomputers {
# can reconfigure any CPU to use the Lua 5.3 architecture.
enableLua53=true

# The total maximum amount of memory a Lua machine may use for user
# programs. The total amount made available by components cannot
# exceed this. The default is 64*1024*1024. Keep in mind that this does
# not include memory reserved for built-in code such as `machine.lua`.
# IMPORTANT: DO NOT MESS WITH THIS UNLESS YOU KNOW WHAT YOU'RE DOING.
# IN PARTICULAR, DO NOT REPORT ISSUES AFTER MESSING WITH THIS!
maxTotalRam=67108864

# This setting allows you to fine-tune how RAM sizes are scaled internally
# on 64 Bit machines (i.e. when the Minecraft server runs in a 64 Bit VM).
# Why is this even necessary? Because objects consume more memory in a 64
Expand Down Expand Up @@ -330,6 +344,10 @@ opencomputers {
# to work.
logFullNativeLibLoadErrors=false

# Logs information about malformed glyphs (i.e. glyphs that deviate in
# width from what wcwidth says).
logHexFontErrors=false

# Used to suppress log spam for OpenGL errors on derpy drivers. I'm
# quite certain the code in the font render is valid, display list
# compatible OpenGL, but it seems to cause 'invalid operation' errors
Expand Down Expand Up @@ -388,7 +406,7 @@ opencomputers {
# otherwise). This is to ensure that users cannot spam the file system
# with an infinite number of files and/or folders. Note that the size
# returned via the API will always be the real file size, however.
fileCost=256
fileCost=512

# The size of writable floppy disks, in kilobytes.
floppySize=512
Expand All @@ -399,7 +417,7 @@ opencomputers {
hddPlatterCounts=[
2,
4,
8
6
]

# The sizes of the three tiers of hard drives, in kilobytes. This list
Expand Down Expand Up @@ -464,7 +482,7 @@ opencomputers {
# hologram once by its own size.
maxTranslation=[
0.25,
1
0.5
]

# The delay forced on computers between calls to `hologram.setRaw`, in
Expand Down Expand Up @@ -569,6 +587,9 @@ opencomputers {
# the `request` method on internet card components becomes available.
enableHttp=true

# Whether to allow adding custom headers to HTTP requests.
enableHttpHeaders=true

# Whether to allow TCP connections via internet cards. When enabled,
# the `connect` method on internet card components becomes available.
enableTcp=true
Expand Down Expand Up @@ -677,10 +698,13 @@ opencomputers {
# is decided in an extra roll of the dice.
lootProbability=5

# Whether to allow loot disk cycling by crafting them with a wrench.
lootRecrafting=true

# The maximum length of a string that may be pasted. This is used to limit
# the size of the data sent to the server when the user tries to paste a
# string from the clipboard (Shift+Ins on a screen with a keyboard).
maxClipboard=8192
maxClipboard=1024

# The maximum number of "data parts" a network packet is allowed to have.
# When sending a network message, from Lua this may look like so:
Expand All @@ -706,7 +730,7 @@ opencomputers {
# bigger screens it's probably safe to bump this quite a bit before you
# notice anything, since at least incremental updates should be very
# efficient (i.e. when adding/removing a single screen).
maxScreenHeight=8
maxScreenHeight=6

# The maximum width of multi-block screens, in blocks.
# See also: `maxScreenHeight`.
Expand All @@ -718,7 +742,7 @@ opencomputers {
# which may or may not lead to performance issues for ridiculous ranges -
# like, you know, more than the loaded area.
# See also: `wirelessCostPerRange`.
maxWirelessRange=512
maxWirelessRange=400

# Probablility that at certain celebratory times crafting an OC item will
# spawn a present in the crafting player's inventory. Set to zero to
Expand Down Expand Up @@ -755,6 +779,10 @@ opencomputers {
# server load. AGAIN, USE WITH CARE!
threadPriority=-1

# The maximum range between the drone/robot and a villager for a trade to
# be performed by the trading upgrade
tradingRange=8

# Whether to perform an update check and informing local players and OPs
# if a new version is available (contacts Github once the first player
# joins a server / the first map in single player is opened).
Expand Down Expand Up @@ -1227,6 +1255,9 @@ opencomputers {
IndustrialCraft2=400
Mekanism=1333.33
RedstoneFlux=100

# / 11256, same as AE2
RotaryCraft=200
}
}

Expand Down Expand Up @@ -1262,7 +1293,7 @@ opencomputers {
# for the individual states (off and on), so it is possible to have up to
# this many shapes *per state* (the reasoning being that only one state
# will ever be visible at a time).
maxShapes=64
maxShapes=24

# By what (linear) factor the cost of a print increases if one or both of
# its states are non-collidable (i.e. entities can move through them).
Expand Down Expand Up @@ -1530,6 +1561,6 @@ opencomputers {
# The version of OC this config was generated by. This is used to allow the
# mod to reset parts of the config when their meaning changed across
# versions, so that the user does not have to delete it.
version="1.5.22.46"
version="1.6.0.9"

}
}
2 changes: 1 addition & 1 deletion config/cofh/core/common.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ General {
B:EnableItemStacking=true

# Set to TRUE to be informed of non-critical updates. You will still receive critical update notifications.
B:EnableUpdateNotifications=true
B:EnableUpdateNotifications=false
}


Expand Down

0 comments on commit 2b36053

Please sign in to comment.