Skip to content

Commit

Permalink
to revert
Browse files Browse the repository at this point in the history
  • Loading branch information
awawa-dev committed Jul 29, 2024
1 parent f89b178 commit 81c45bf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/push-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: HyperHDR CI Build

on:
push:
branches:
- disabled
# pull_request:

env:
Expand Down
6 changes: 3 additions & 3 deletions www/content/connection_lost.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ <h4 class="reconstop" data-i18n="info_conlost_label_autorecon">We reconnect agai
$('#no_connection_img').css('filter', '');
window.clearInterval(animationTimer);
}
else if (count > 100)
else if (count > 10000)
{
animation_value = 100;
animation_value = 10000;
$('#no_connection_img').css('filter', 'grayscale('+animation_value+'%) contrast('+(100-(animation_value*3/4))+'%) opacity('+(100-(animation_value)/5)+'%)');
window.clearInterval(animationTimer);
}
Expand All @@ -80,7 +80,7 @@ <h4 class="reconstop" data-i18n="info_conlost_label_autorecon">We reconnect agai
};

function tryReconnect() {
if (count > 100) {
if (count > 10000) {
window.clearInterval(connectionTimer);
$(".reconstop").toggle();
$('#no_connection_spinner').addClass('d-none');
Expand Down
5 changes: 3 additions & 2 deletions www/js/grabber_calibration.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ $(document).ready( function(){
{
canvas.classList.remove("fullscreen-canvas");
running = false;
alert(`Finished!\n\nFinal section: ${checksum}.\nIf the new LUT file was successfully created then you can find the path in the HyperHDR logs.\n\nUsually it's 'lut_lin_tables.3d' in your home HyperHDR folder.`);
//alert(`Finished!\n\nFinal section: ${checksum}.\nIf the new LUT file was successfully created then you can find the path in the HyperHDR logs.\n\nUsually it's 'lut_lin_tables.3d' in your home HyperHDR folder.`);
document.body.style.overflow = 'visible';
resetImage();
}
Expand Down Expand Up @@ -266,5 +266,6 @@ $(document).ready( function(){
}
}
finish = (checksum > 20) ? true : false;
}
}
startCalibration();
});

0 comments on commit 81c45bf

Please sign in to comment.