Why no more installer?
Providing signed Windows installers now requires paying expensive yearly certificates.
As EditiX is maintained by a single developer, and with fewer users than before,
continuing to pay for those certificates is no longer sustainable.
Instead, EditiX is 100% free and open-source. You build it once using standard Java tools (git +
ant), and you get a fully functioning editor with the same features as before.
This ensures:
- transparency
- long-term access to the code
- no hidden dependencies
- and a maintained product without subscription or installer fees
Thank you for your understanding and support.
Use the binaries if you don't want to compile EditiX XML Editor yourself.
Windows
1°) Install Git on your computer from https://git-scm.com/install
Check that the 'git' command is available in your terminal
[screen]
2°) Install a Java JDK on your computer from https://www.oracle.com/java/technologies/downloads
Check that the 'java' and the 'javac' commands are available in your terminal
[screen]
3°) Install Apache Ant to compile and run EditiX from https://ant.apache.org/ivy/download.cgi
Check that the 'ant' command is available in your terminal
[screen]
4°) Download EditiX XML Editor using the following command line :
git clone https://github.com/AlexandreBrillant/Editix-xml-editor
5°) Compile the EditiX XML Editor source code using the following command in a terminal :
ant compile
6°) Run EditiX XML Editor using the following command :
ant run
or
run.bat or run.sh
7°) Get the latest version with
git pull
Linux/macOS
You will have to adapt the following command to your distribution. We use Ubuntu as an example here.
1°) Install OpenJDK 8 or later
We use version 17 here, but newer versions may also work.
sudo apt install openjdk-17-jre
sudo apt install openjdk-17-jdk
2°) Install ant (if required)
sudo apt install ant
3°) Download EditiX XML Editor using the following command :
git clone https://github.com/AlexandreBrillant/Editix-xml-editor
4°) Compile the EditiX XML Editor source
ant compile
5°) Run EditiX XML Editor
ant run
If you see the following error "java.awt.AWTError : Assistive Technology not found..."
then edit the /etc/java-8-openjdk/accessibility.properties (change "8" by your java
version) and put a comment(#) for the line "assistive_technologies=..."
6°) Get the latest version with
git pull