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.
Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
"Nightly" builds
-
- nuBuilder Team
- Posts: 505
- Joined: Fri Dec 28, 2018 1:41 pm
- Location: Krakow, Poland
- Has thanked: 4 times
- Been thanked: 18 times
Re: "Nightly" builds
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:
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
If you like nuBuilder, please leave a review on SourceForge
-
- nuBuilder Team
- Posts: 4201
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 67 times
- Been thanked: 413 times
- Contact:
Re: "Nightly" builds
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.
To activate "Mobile View 2", follow the instructions provided in the announcement.
It is constantly being improved.
Re: "Nightly" builds
Sometimes I'm under windows and sometimes under Linux, usually more time under Linux, I only reboot to Windows when needed.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
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.