Page 1 of 1

where is the sourcecode of the old minetest versions?

PostPosted: Thu Apr 30, 2015 18:14
by jbb
Im building a Launcher in Python with LNJ.
We want to support the playing of the 0.0.1 - 0.4.
I found a small number of files in:http://c55.me/minetest/oldsite/download.php.
But the versions before 0.3 arent there.
Do somebody know were the sourcecode is?

Re: where is the sourcecode of the old minetest versions?

PostPosted: Thu Apr 30, 2015 18:19
by Calinou

Re: where is the sourcecode of the old minetest versions?

PostPosted: Thu Apr 30, 2015 18:24
by jbb
thank you very much!

Re: where is the sourcecode of the old minetest versions?

PostPosted: Thu Apr 30, 2015 18:31
by jbb
The small launcher will support updtating, play older versions and download other games.
It also will have a news HTML site.
Ive got an idea: A news.minetest.net where you can find the news would be great.

Re: where is the sourcecode of the old minetest versions?

PostPosted: Thu Apr 30, 2015 19:18
by LNJ
Some of the ideas are my
I found a lot of MT versions with tags not with branches
but not the old 0.0.1. In c55 blog are just the win-32 builds.
Has someone a idea where the (0.0.1) sources are?
Or has celeron55 them just private or are they lost?

Re: where is the sourcecode of the old minetest versions?

PostPosted: Thu Apr 30, 2015 19:49
by Amaz
LNJ wrote:Some of the ideas are my
I found a lot of MT versions with tags not with branches
but not the old 0.0.1. In c55 blog are just the win-32 builds.
Has someone a idea where the (0.0.1) sources are?
Or has celeron55 them just private or are they lost?

Here is the source for the first (afaik) public minetest: http://c55.me/random/2013-01/minetest_1 ... ful.tar.gz

I found it on this page in the dev wiki: http://dev.minetest.net/Core_Architecture

If anyone could tell me how to compile the early versions of Minetest on a recent Ubuntu, I would be very grateful! I have tried a fair few times, without success...

Re: where is the sourcecode of the old minetest versions?

PostPosted: Fri May 01, 2015 00:08
by srifqi
jbb wrote:It also will have a news HTML site.
Ive got an idea: A news.minetest.net where you can find the news would be great.


Why not just use this forum's news thread?

Re: where is the sourcecode of the old minetest versions?

PostPosted: Fri May 01, 2015 07:42
by rubenwardy
srifqi wrote:
jbb wrote:It also will have a news HTML site.
Ive got an idea: A news.minetest.net where you can find the news would be great.


Why not just use this forum's news thread?


Here is an RSS feed for it: feed.php?f=18

Re: where is the sourcecode of the old minetest versions?

PostPosted: Sat May 02, 2015 10:47
by Gael de Sailly
I'm trying to use an old version (minetest 0.3.1) but it don't work.
The building fails.

Re: where is the sourcecode of the old minetest versions?

PostPosted: Sun May 03, 2015 09:37
by LNJ
rubenwardy wrote:
srifqi wrote:
jbb wrote:It also will have a news HTML site.
Ive got an idea: A news.minetest.net where you can find the news would be great.


Why not just use this forum's news thread?


Here is an RSS feed for it: feed.php?f=18


We thought that you can see there if a new version has released and maybe a small changelog and some links.
I think it's the best, if you can switch through some news pages or RSS-feeds.
Like a page for new versions e.g. versions or news.minetest.net, the WIP mods (RSS-feed), Bugs and Problems (RSS-feed), the News (RSS-feed) of course and a lot of more!

Re: where is the sourcecode of the old minetest versions?

PostPosted: Sun May 03, 2015 09:45
by LNJ
Gael de Sailly wrote:I'm trying to use an old version (minetest 0.3.1) but it don't work. The building fails.
Amaz wrote:If anyone could tell me how to compile the early versions of Minetest on a recent Ubuntu, I would be very grateful! I have tried a fair few times, without success...

I used a win-32 build with wine, it works fine!

Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
sudo apt-get update; sudo apt-get install wine
wine /path/to/exe/file [OPTIONS]

Re: where is the sourcecode of the old minetest versions?

PostPosted: Sun May 03, 2015 11:42
by rubenwardy
I attempted to build it on Linux, but then gave up. It works perfectly fine in WINE.

Re: where is the sourcecode of the old minetest versions?

PostPosted: Sun May 03, 2015 12:02
by CWz
i know old version 0.3 and older can be compiled on older versions of ubuntu

Re: where is the sourcecode of the old minetest versions?

PostPosted: Sun May 03, 2015 12:57
by LNJ
CWz wrote:i know old version 0.3 and older can be compiled on older versions of ubuntu

There is a .deb package at the debian server (wheezy) with version 0.3.1 of MT
https://packages.debian.org/de/wheezy/minetest
Ubuntu is based on Debian and works with deb packages too, so I think it works.

Install it like this:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
dpkg -i Downloads/minetest.deb Downloads/minetest-common.deb

Re: where is the sourcecode of the old minetest versions?

PostPosted: Wed May 06, 2015 19:08
by LNJ
I've got this error by compiling the MT 0.2.20110731_3 code:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
[ 53%] Building CXX object src/CMakeFiles/minetest.dir/filesys.cpp.o
/minetest-0.2.20110731_3/src/filesys.cpp: In function ‘bool fs::RecursiveDelete(std::string)’:
/minetest-0.2.20110731_3/src/filesys.cpp:236:25: error: ‘fork’ was not declared in this scope
  pid_t child_pid = fork();
                         ^
/minetest-0.2.20110731_3/src/filesys.cpp:254:22: error: ‘execv’ was not declared in this scope
   execv(argv[0], argv);
                      ^
src/CMakeFiles/minetest.dir/build.make:583: recipe for target 'src/CMakeFiles/minetest.dir/filesys.cpp.o' failed

(It is not the real filepath)
Have you the same?