apoplexy v3.9 released

Windows and Linux editor of PoP1 (for DOS and SNES) and PoP2 (for DOS).
Locked
User avatar
Norbert
The Prince of Persia
The Prince of Persia
Posts: 5743
Joined: April 9th, 2009, 10:58 pm

apoplexy v3.9 released

Post by Norbert »

I've just released version 3.9 of apoplexy.

Download via: https://www.apoplexy.org/
Download mirror: https://www.popot.org/level_editors.php?editor=apoplexy

Changes since the last version:
+ PoP1 for DOS shadow starting positions and (shadow and prince) automatic moves can now be modified (F3).
I recently posted a screenshot of the new stuff here.
User avatar
atrueprincefanfrom18
Site Shah
Site Shah
Posts: 1782
Joined: January 21st, 2020, 2:53 pm
Contact:

Re: apoplexy v3.9 released

Post by atrueprincefanfrom18 »

I just tried installing it for Linux (Ubuntu 18.04) and ran into the same problem as mentioned here.
The error message this time was:

./apoplexy: error while loading shared libraries: libzip.so.5: cannot open shared object file: No such file or directory

What's left to install now? :?

I updated and upgraded the packages but the error is still there.
Love to create new MODS :)

My complete list of mods until now!

My channel. Do consider subscribing it! :)
User avatar
Norbert
The Prince of Persia
The Prince of Persia
Posts: 5743
Joined: April 9th, 2009, 10:58 pm

Re: apoplexy v3.9 released

Post by Norbert »

atrueprincefanfrom18 wrote: August 5th, 2020, 11:41 am./apoplexy: error while loading shared libraries: libzip.so.5: cannot open shared object file: No such file or directory
You can try:
$ sudo apt install libzip5

If it then still does not work, try:
$ cd apoplexy-3.9/src/
$ make
(make will will take a while)

If the latter is necessary and works, then recompiling was necessary to make it use libzip version 4 instead of 5 (which is active on my PC).
User avatar
atrueprincefanfrom18
Site Shah
Site Shah
Posts: 1782
Joined: January 21st, 2020, 2:53 pm
Contact:

Re: apoplexy v3.9 released

Post by atrueprincefanfrom18 »

Norbert wrote: August 5th, 2020, 12:08 pm You can try:
$ sudo apt install libzip5
There is no such package in the repository called as libzip5.
Norbert wrote: August 5th, 2020, 12:08 pm If it then still does not work, try:
$ cd apoplexy-3.9/src/
$ make
(make will will take a while)

If the latter is necessary and works, then recompiling was necessary to make it use libzip version 4 instead of 5 (which is active on my PC).
Latter doesn't work as well... I get this error message when I try to compile:

Code: Select all

apoplexy.c:38:10: fatal error: curl/curl.h: No such file or directory
 #include <curl/curl.h>
          ^~~~~~~~~~~~~
compilation terminated.
although I have curl installed on the system.

I tried both, clang and gcc. Both have failed to compile it. :(
Love to create new MODS :)

My complete list of mods until now!

My channel. Do consider subscribing it! :)
User avatar
Norbert
The Prince of Persia
The Prince of Persia
Posts: 5743
Joined: April 9th, 2009, 10:58 pm

Re: apoplexy v3.9 released

Post by Norbert »

atrueprincefanfrom18 wrote: August 5th, 2020, 2:24 pmI get this error message when I try to compile: [...]
Oh, that's right.
There's a bunch of libraries you will need to recompile.
Forgot to mention that.
Based on docs/compiling.txt, before running make, you will need to:
$ sudo apt install libsdl2-dev libsdl2-image-dev libsdl2-ttf-dev libcurl4-openssl-dev libzip-dev
User avatar
atrueprincefanfrom18
Site Shah
Site Shah
Posts: 1782
Joined: January 21st, 2020, 2:53 pm
Contact:

Re: apoplexy v3.9 released

Post by atrueprincefanfrom18 »

Thanks! That worked perfectly! :)
Love to create new MODS :)

My complete list of mods until now!

My channel. Do consider subscribing it! :)
User avatar
atrueprincefanfrom18
Site Shah
Site Shah
Posts: 1782
Joined: January 21st, 2020, 2:53 pm
Contact:

Re: apoplexy v3.9 released

Post by atrueprincefanfrom18 »

Posted on FB.
Love to create new MODS :)

My complete list of mods until now!

My channel. Do consider subscribing it! :)
User avatar
Norbert
The Prince of Persia
The Prince of Persia
Posts: 5743
Joined: April 9th, 2009, 10:58 pm

Re: apoplexy v3.9 released

Post by Norbert »

atrueprincefanfrom18 wrote: August 6th, 2020, 8:56 am Thanks! That worked perfectly! :)
Nice.
Thanks for the FB post.
Locked