272 Commits

Author SHA1 Message Date
Maksim Gamarnik
92041152e1 v. 1.1.2-pre | build1 2016-02-23 06:40:14 +02:00
est31
f3f4af3fb9 Fix android build
Android had a linker error since commit:

31e0667a4a53a238d0321194b57b083bd74c0a5b "Add Lua interface to HTTPFetchRequest"

Fixes #3766. Thanks to @MoNTE48 for reporting the bug.
2016-02-23 01:48:52 +01:00
Maksim Gamarnik
7420584c5d test 2016-02-23 02:31:19 +02:00
Maksim Gamarnik
ae3d7c3ebc Merge remote-tracking branch 'upstream/master' 2016-02-23 00:38:30 +02:00
est31
a26970cdd4 Android: hardcode leveldb revision
Newest leveldb commit breaks build.
With no fix in sight, there is no other way
than to fall back to the last working leveldb
revision, and hardcode it.

Workaround for upstream bug

https://github.com/google/leveldb/issues/340
2016-02-22 17:46:16 +01:00
Maksim Gamarnik
9ac4477a67 Doc fix 2016-02-20 01:36:36 +02:00
Maksim Gamarnik
152d9cfbdb ver. 1.1.2
Fix license, remove npc, fix creative inventory, mobs spawning fix, doc
improve
2016-02-19 00:31:22 +02:00
Maksim Gamarnik
108b5aa536 Fix 2016-02-17 20:34:20 +02:00
Maksim Gamarnik
1f7f17458e Android: final optimization! 2016-02-17 10:16:41 +02:00
Maksim Gamarnik
7b5d77084e Android: SPEEEEED! 2016-02-17 07:13:12 +02:00
Maksim Gamarnik
6a235702a3 Optimization, scaling and game control improve 2016-02-16 16:31:14 +02:00
Maksim Gamarnik
69f679800d RC1 2016-02-12 06:35:36 +02:00
Maksim Gamarnik
9abdf23879 Not Minetest, MultiCraft!
Change Minetest on MultiCraft. =)
2016-02-12 05:52:43 +02:00
Maksim Gamarnik
4a1647fcf4 Revert2 2016-02-12 05:10:44 +02:00
Maksim Gamarnik
e5b0d4b95c Revert ogg/vorbis patch 2016-02-12 04:43:50 +02:00
Maksim Gamarnik
6f0ffee2d9 revert 2016-02-12 04:35:46 +02:00
Maksim Gamarnik
86bc1f4300 Merge pull request #22 from grigoriis/freetype
Android: vorbis with ogg
2016-02-11 22:04:09 +02:00
ubulem
6b1e289987 New algorithm. Transliteration 2016-02-11 16:26:38 +03:00
grigoriis
ba956be80f vorbis with ogg 2016-02-11 14:56:22 +02:00
grigoriis
f71f59a33c fix description 2016-02-10 17:14:27 +02:00
grigoriis
90efbed7f6 -png -harfbuzz 2016-02-10 17:09:54 +02:00
grigoriis
98f5e59321 vorbis OK 2016-02-09 22:18:41 +02:00
grigoriis
8abae4e924 add ogg, vorbis 2016-02-09 21:26:55 +02:00
grigoriis
a8c0bedc4f success openal 2016-02-09 16:29:53 +02:00
grigoriis
2b61fee0ee openal with patch 2016-02-09 15:22:04 +02:00
grigoriis
b84eaceb66 Freetype 2016-02-09 14:58:21 +02:00
Maksim Gamarnik
7958b395ed Android performance
Thanks http://blog.alexrp.com/2014/02/18/android-hard-float-support/

1
2016-02-09 06:51:01 +02:00
Maksim Gamarnik
e4364bcff6 Update Makefile
Add ARMv8 (not working now!)
2016-02-08 23:42:41 +02:00
Maksim Gamarnik
1ac7f0dbc5 Very big update! MultiCraft 1.1 | Part 1/3
Joystick.
environment.cpp improve (thanks @Bremaweb)
Improving the management interface.
The new font.
Settings to improve performance.
Improvements ellementov size on larger phones.
A lot of small fixes and improvements.
2016-02-07 03:11:12 +02:00
Maksim Gamarnik
4327fab167 Fix OpenAl, -O3 optimisation, fix LevelDB disabling 2016-02-04 13:27:56 +02:00
Maksim Gamarnik
af41a0321c Pre-release 2016-02-01 18:11:26 +02:00
Maksim Gamarnik
18c6b747b6 Merge branch 'master' of https://github.com/minetest/minetest 2016-01-31 20:57:03 +02:00
est31
ef779b0ab6 Fix compilation warning if compiling for android with c++11 2016-01-23 06:26:58 +01:00
Duane Robertson
3c6b2ffb10 Add Valleys mapgen. 2016-01-14 05:04:29 +00:00
ubulem
ab26e30b68 MultiCraft instead SnowCraft in strings 2015-12-30 18:25:01 +03:00
berkut
dc3d9784f9 Bunch of actual files 2015-12-29 23:10:33 +03:00
berkut
927e063e47 old files removed 2015-12-29 23:08:30 +03:00
Maksim Gamarnik
a2251f0f79 MultiCraft 1.0.2 2015-12-27 22:55:32 +02:00
Sapier
9c9b02ca8a Android: shorten initial progress bar text way more simple 2015-12-23 21:01:35 +01:00
est31
98d16e0d9a Android: Tell make about sub-makes to speed up build
Before, sub-makes called by make were called without make knowing they
were sub-makes. This however led make's jobserver not do its tasks,
and the build process ended up with inefficient parralelisation. This
commit fixes this by applying the two ways the make manual tells
about: putting + to the start of the line (used when ndk-build is
invoked), and exchanging "make" with "$(MAKE)".

Before, make complained with messages like:

make[2]: warning: jobserver unavailable: using -j1.  Add `+' to parent make rule.

This complaint can now only been seen for openssl. openssl has issues
if make gets exchanged with $(MAKE): if exchanged, above error message
is multiplied for various subdirs of the openssl source tree.

On a 4 core box, "make -j 4" build time from "make clean_all" cleaned
source tree could be improved from 15:34 minutes to 10:45 minutes.
This means a speedup of 45%.
2015-12-23 06:17:42 +01:00
ShadowNinja
b4eb614d31 Android: Fix extra files being copied to the APK
dcb91cf0c0c9a20622feeb4e5e8104ffbc9fa8ec hacked around the biggest issue
this caused, but wasted a lot of CPU time and disk space  It also still
included a lot of other unwanted files.  This removes all of `doc/` except
the license, and also removes the server list.
2015-12-20 12:48:55 +01:00
Sapier
bde6194638 Android: Remove unused build target curl_binary 2015-12-17 23:00:51 +01:00
Sapier
dcb91cf0c0 Android: Don't put html docs to apk 2015-12-17 23:00:43 +01:00
Sapier
a3fd167dda Android: Remove non freetype fonts from apk 2015-12-17 23:00:31 +01:00
Maksim Gamarnik
b05a829924 Fix 2015-12-15 14:05:18 +02:00
est31
6133b2bc45 Fix android build
Fix android build since commit

696148e29889b2923f926b27f76979454676506d "Fix Event implementation"

by @ShadowNinja.

Fixes #3444. Thanks @kwolekr for pointing out the fix.
2015-12-11 11:24:26 +01:00
Maksim Gamarnik
9251e980f8 Merge and Fix 2015-12-11 11:18:54 +02:00
Maksim Gamarnik
e150219b9d Merge last minetest commits 2015-11-27 12:57:52 +02:00
Maksim Gamarnik
4edb331124 Update 1 2015-11-27 12:03:23 +02:00
est31
2f58e4d962 Android: hardcode irrlicht revision, update other dependencies
Recent irrlicht revisions break the build, hardcode the revision to a working one
until upstream publishes a working version. See issue #3366 for
a discussion about this.

Also update dependencies to current versions.
2015-11-16 17:33:01 +01:00