Why no more installer?
Providing signed Windows installers now requires paying expensive yearly certificates.
As EditiX is now 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% 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 didn't want to compile EditiX XML Editor
Windows
1°) Install git for your machine at https://git-scm.com/install
Check that the 'git' command is available in your terminal
[screen]
2°) Install java JDK for your machine at https://www.oracle.com/java/technologies/downloads
Check that the 'java' and the 'javac' commands are available in your terminal
[screen]
3°) Install ant (for compiling/running all) for your machine at 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 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 here ubuntu.
1°) Install openjdk at least a 8 version (if required)
/p>
sudo apt install openjdk-8-jre-headless
sudo apt install openjdk-8-jdk-headless
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