Gscreen - a GTK / Glade / Python based screen
under the [HAL] heading
add:
HALCMD = loadusr gscreen -ini gscreen.ini
changing the ini filename as appropriate.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
ill try and give it a test drive when i have afree afternoon
rob
Please Log in or Create an account to join the conversation.
very nice i must say
would it be possible to have a colour system on the program edit screen. ie , rapid txt lines in red, feeds in green etc , as my full editor on windows we use alot has this sort of thing and it becomes very quick eye reff after awhile,
would it be possible to add a offset table for work coordinates to view and edit, g54,g55 etc
Please Log in or Create an account to join the conversation.
Michael is hosting gscreen on his git repo.
git.mah.priv.at/gitweb/emc2-dev.git
I tried gscreen using the zipped patch above and it looks good. So now it's my turn to ask a dumb question.
I want to get the latest version so I tried to clone it into a new directory with
git clone git.mah.priv.at/gitweb/emc2-dev.git emc2-dev
but git complained:
remote HEAD refers to nonexistent ref, unable to checkout
Is there a way I can do this?
Karl
Please Log in or Create an account to join the conversation.
so dont know if u did a new pull or not but below will not hert
in the Git tree to wish to apply it to
git reset --hard remotes/origin/master
git pull origin master
git merge git.mah.priv.at/gitweb/emc2-dev.git gscreen_master
or if it fails try
git pull git.mah.priv.at/gitweb/emc2-dev.git gscreen_master
then do config make etc
rob
Please Log in or Create an account to join the conversation.
yes a tool offsets editor is on the to do list.
chamging the colors of the gcode text should be possible but not in Gscreen. I'll look into how to do that.
Chris m
Please Log in or Create an account to join the conversation.
Thanks for the reply. Still having problems.
That worked fine.git reset --hard remotes/origin/master
git pull origin master
That didn't work:git merge git.mah.priv.at/gitweb/emc2-dev.git gscreen_master
fatal: 'git.mah.priv.at/gitweb/emc2-dev.git' does not point to a commit
That also didn't work:git pull git.mah.priv.at/gitweb/emc2-dev.git gscreen_master
fatal: Couldn't find remote ref gscreen_master
I'm not sure if it's right, but I inserted http:// to make the git URL. Otherwise it wasn't recognized as a remote reference. I also tried git:// but I don't have access.
Karl
Please Log in or Create an account to join the conversation.
should get you there
Please Log in or Create an account to join the conversation.
That did it. Thank you very much.git pull git://git.mah.priv.at/emc2-dev.git gscreen_master
should get you there
Karl
Please Log in or Create an account to join the conversation.