diff --git a/src/pug/index.pug b/src/pug/index.pug index 6d7eccf..33846ec 100644 --- a/src/pug/index.pug +++ b/src/pug/index.pug @@ -76,7 +76,7 @@ html(lang="en") .brand img(src="/images/onefinity_logo.png") .version - div Version: v{{config.full_version}} Alpha 5 + div Version: v{{config.full_version}} Alpha 6 div IP Address: {{config.ip}} div WiFi: {{config.wifiName}} a.upgrade-link(v-if="show_upgrade()", href="#admin-general") diff --git a/src/pug/templates/control-view.pug b/src/pug/templates/control-view.pug index bac96ee..a416b1a 100644 --- a/src/pug/templates/control-view.pug +++ b/src/pug/templates/control-view.pug @@ -62,11 +62,15 @@ script#control-view-template(type="text/x-template") td(style="height:100px",align="center") button(@click="jog_fn(-1,0,0,0)") X- td(style="height:100px",align="center") - button(@click="showMoveToZeroDialog('xy')") XY Origin + button(@click="showMoveToZeroDialog('xy')") + | XY + | Origin td(style="height:100px",align="center") button(@click="jog_fn(1,0,0,0)") X+ td(style="height:100px",align="center") - button(@click="showMoveToZeroDialog('z')") Z Origin + button(@click="showMoveToZeroDialog('z')") + | Z + | Origin tr td(style="height:100px",align="center") button(@click="jog_fn(-1,-1,0,0)") @@ -267,8 +271,7 @@ script#control-view-template(type="text/x-template") .fa(:class="is_running ? 'fa-pause' : 'fa-play'") button.pure-button(title="Stop program.", @click="stop", style="height:100px;width:100px;font-weight:normal") - svg(width="50", height="50") - image(href="../resources/icons/button_stop.webp", width="50", height="50") + img(src=require("../resources/icons/button_stop.webp"), alt="Stop") button.pure-button(title="Pause program at next optional stop (M1).", @click="optional_pause", v-if="false", style="height:100px;width:100px;font-weight:normal")