Page 1 of 1
"Nightly" builds
Posted: Sun Jun 16, 2024 4:55 pm
by Giu
Hi all,
I'm so excited about the upcoming changes for mobile, and would like to do some testing, but I would like to ask what could be a good/fast way of testing?
I though that maybe cloning github repo, and then run update could be an option to get a snapshot working with latest changes?
Regards.
Re: "Nightly" builds
Posted: Sun Jun 16, 2024 7:37 pm
by Janusz
Do you use the linux server (LAMP)? If yes I can provide some info on how to make automatic update of the nuBuilder from the GitHub.
For example to check from linux terminal installed version you can use:
Code: Select all
#!/bin/bash
echo nubuilder local ver.:
y=$(head /var/www/html/nubuilder/version.txt -n 4 | tail -2)
echo $y
echo GitHub ver.:
x=$(curl -s https://raw.githubusercontent.com/nuBuilder/nuBuilder/master/version.txt | head -n 4 | tail -2)
echo $x
if test "$x" != "$y" ; then
echo ">>> NOK, new nuBuilder version available!"
else
echo ">>> OK, the latest version is installed :-)"
fi
Re: "Nightly" builds
Posted: Sun Jun 16, 2024 7:45 pm
by kev1n
You can download the latest development version from
GitHub.
To activate "Mobile View 2", follow the instructions provided in the
announcement.
It is constantly being improved.
Re: "Nightly" builds
Posted: Sun Jun 16, 2024 8:22 pm
by Giu
Janusz wrote: ↑Sun Jun 16, 2024 7:37 pm
Do you use the linux server (LAMP)? If yes I can provide some info on how to make automatic update of the nuBuilder from the GitHub.
For example to check from linux terminal installed version you can use:
Code: Select all
#!/bin/bash
echo nubuilder local ver.:
y=$(head /var/www/html/nubuilder/version.txt -n 4 | tail -2)
echo $y
echo GitHub ver.:
x=$(curl -s https://raw.githubusercontent.com/nuBuilder/nuBuilder/master/version.txt | head -n 4 | tail -2)
echo $x
if test "$x" != "$y" ; then
echo ">>> NOK, new nuBuilder version available!"
else
echo ">>> OK, the latest version is installed :-)"
fi
Sometimes I'm under windows and sometimes under Linux, usually more time under Linux, I only reboot to Windows when needed.
My problem under Linux is I like to use weird things not being a Linux expert, then, right now I'm under NixOS, that it's awesome, but I don't know how to do a lot of things rofl.