Page 1 of 1

[0.17.18] no updates available for auto update

Posted: Thu Mar 28, 2019 2:36 pm
by Amarula
Playing Factorio on my new linux laptop from direct download, not via Steam. I missed a couple of days while off using the old Windows laptop playing via Steam, and when I came back, I seem to be stuck at version 18 - the auto updater tells me there are no available updates. Is there any way to get the update automatically, or do I have to download the whole game manually again?

Re: [0.17.18] no updates available for auto update

Posted: Thu Mar 28, 2019 2:39 pm
by DaleStan
I'm guessing you don't have "Enable experimental updates" checked in the settings.

Re: [0.17.18] no updates available for auto update

Posted: Fri Mar 29, 2019 11:53 am
by Amarula
I did have experimental checked, to do the updates from 12 to 18, but sure enough somehow it got unchecked... thanks!

Re: [0.17.18] no updates available for auto update

Posted: Sat Mar 30, 2019 3:20 pm
by ev21
I have the same problem, so i just download the new archive and run my quick and dirty update-script.

Code: Select all

#!/bin/sh

# Make shure you have the latest Factorio-Archive.
echo "Moving factorio to factorio_bak"
mv factorio factorio_bak

echo "Extracting Archive"
# The next line has to be edit each time you want to update!
tar xf factorio_alpha_x64_0.17.23.tar.xz

echo "Copy save-files"
cp -R factorio_bak/saves factorio/

echo "Copy mod-files"
cp -R factorio_bak/mods factorio/

echo "Copy blueprint-storage.dat"
cp factorio_bak/blueprint-storage.dat factorio/

echo "Copy player-data.json with login and shortcut-bar settings"
cp factorio_bak/player-data.json factorio/

echo "Copy config directory"
cp -R factorio_bak/config factorio/

echo "If everything works fine delete factorio_bak and the archive"