MAY 4 2026: APP 2.0.0-beta44 has been released !
New improved internal memory controls should now work on all computers
May 1 2026: APP 2.0.0-beta43 has been released !
Improved internal memory controls (much more stable and faster on big datasets), fixed CPU image viewer, fixed Narrowband extraction demosaic algortihms.
Apr 29 2026 APP 2.0.0-beta42 has been released !
New improved Normalization engine, Fixed random crashes in integration, fixed RGB Combine & Calibrate Star Colors, fixed Narrowband extraction algorithms, new development platform with performance gains, bug fixes in the tools, etc...
Apr 14 2026: Google Pay, Apple Pay & WeChat Pay added as payment options
Update on the 2.0.0 release & the full manual
We are getting close to the 2.0.0 stable release and the full manual. The manual will soon become available on the website and also in PDF format. Both versions will be identical and once released, will start to follow the APP release cycle and thus will stay up-to-date to the latest APP version.
Once 2.0.0 is released, the price for APP will increase. Owner's license holders will not need to pay an upgrade fee to use 2.0.0, neither do Renter's license holders.
The tutorial shows how to run APP on a powerful server/desktop, but use the UI on an other machine (e.g. laptop) securely via SSH. It is recommended to run only on your home network with good Ethernet/WLAN bandwidths. I written these instructions for Ubuntu Linux. You need to adapt these steps for your own distribution if needs be.
Setup the server/desktop:
1. Install APP and openssh server. It is assumed that you have a running Xorg server on the machine.
2. Enable X11 forwarding in /etc/ssh/sshd_config:
X11Forwarding yes
X11DisplayOffset 10
X11UseLocalhost no
3. Restart ssh on the server:Â sudo service ssh restart
4. Modify the APP config because it uses OpenGL and it crashes the X11 forwarding with SSH. Edit /opt/AstroPixelProcessor/app/AstroPixelProcessor.cfg and add the following line to the [JVMOptions] section:
-Djogl.disable.openglarbcontext=true
Setup the laptop where you will see and control the UI:
1. Install ssh client.
2. Enable the X11 forwarding in the client config. For security reasons, enable only from the server. Edit or create the ssh config file under your home directory (/home/your_username/.ssh/config):
Host YOUR_SERVER_IP
  ForwardX11 yes
  ForwardX11Trusted yes
3. Run APP on the server from your laptop:
ssh -X YOUR_SERVER_IP DISPLAY=:10 /opt/AstroPixelProcessor/AstroPixelProcessor
4. Enter your license information and process your images as usual.
Â
Hi Csaba @kecsap,
Wow, thank you very much for this instruction. This is simply awesome 😉 !
I know about X11 forwarding through SSH, used it myself during my astrophysics studies 🙂 to use the calculation power of the astrophysics department from home.
Excellent that you knew how to disable opengl in the configuration of the application as well. I should probably make this easier in APP's configuration through it's gui, so I will add this to my todo list.
Are you running APP on a powerful network of you own, company or university perhaps?
Thanks !
Mabula
Â
Hi Mabula,
I did not know how to disable OpenGL, but the initial UI refresh was broken thus I had to google a solution for a few hours, I am not familiar with Java. 🙂
I just use my home server which is packed with bunch of RAM, CPU cores and that is the place where I upload my subs. It was straightforward to make this X11 forwarding work for your app.
Csaba
Hi Csaba,
Thank you once again for this tutorial 😉
I have upgraded this to a sticky.
Mabula
Â
ssh -X YOUR_SERVER_IP DISPLAY=:10 /opt/AstroPixelProcessor/AstroPixelProcessor
Â
Nowadays, it is also enough on Ubuntu 18.04: