Skip to content

Commit

Permalink
Merge pull request #205 from jomjol/rolling
Browse files Browse the repository at this point in the history
v6.7.2
  • Loading branch information
jomjol authored May 1, 2021
2 parents 19fd6a1 + bc6a014 commit c2d1bbb
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 7 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ In other cases you can contact the developer via email: <img src="https://raw.gi



##### 6.7.1 Image Processing in Memory - (2021-01-05)
##### 6.7.2 Image Processing in Memory - (2021-01-05)

* NEW 6.7.2: Updated html for setup modus - remove reboot on edit configuration)

* NEW 6.7.1: Improved stability of camera (back to v6.6.1) - remove black strips and areas

Expand Down
Binary file modified firmware/html.zip
Binary file not shown.
28 changes: 25 additions & 3 deletions sd-card/html/edit_config_param.html
Original file line number Diff line number Diff line change
Expand Up @@ -683,9 +683,13 @@ <h4><input type="checkbox" id="Category_Analog_enabled" value="1" onclick = 'Up
<p>

</p>
<p>
<button class="button" id="reboot" type="button" onclick="doReboot()">Reboot to activate updates</button>
</p>
<div id="doreboot">
<p>
<button class="button" id="Edit_Config_Direct" onclick="editConfigDirect()" style="display:none">Edit Config.ini direct</button>

<button class="button" id="reboot" type="button" onclick="doReboot()">Reboot to activate updates</button>
</p>
</div>

</div>

Expand All @@ -701,6 +705,14 @@ <h4><input type="checkbox" id="Category_Analog_enabled" value="1" onclick = 'Up


function LoadConfigNeu() {

var isInitialSetup = getParameterByName('InitialSetup');
if (isInitialSetup === 'true')
{
document.getElementById("reboot").style.display = "none";
}


basepath = getbasepath();
if (!loadConfig(basepath)) {
alert("Config.ini could not be loaded!\nPlease reload the page.");
Expand All @@ -715,6 +727,16 @@ <h4><input type="checkbox" id="Category_Analog_enabled" value="1" onclick = 'Up
document.getElementById("divall").style.display = '';
}


function getParameterByName(name, url = window.location.href) {
name = name.replace(/[\[\]]/g, '\\$&');
var regex = new RegExp('[?&]' + name + '(=([^&#]*)|&|#|$)'),
results = regex.exec(url);
if (!results) return null;
if (!results[2]) return '';
return decodeURIComponent(results[2].replace(/\+/g, ' '));
}

function WriteParameter(_param, _category, _cat, _name, _optional, _select = false, _anzpara = 1){
if (_param[_cat][_name]["found"]){
if (_optional) {
Expand Down
2 changes: 1 addition & 1 deletion sd-card/html/gethost.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function getbasepath(){
{
// host = "http://192.168.2.118"; // jomjol interner test
// host = "http://192.168.178.26"; // jomjol interner test
host = "http://192.168.178.26"; // jomjol interner Real
host = "http://192.168.178.22"; // jomjol interner Real
// host = "."; // jomjol interner localhost

}
Expand Down
2 changes: 1 addition & 1 deletion sd-card/html/setup.html
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ <h1>Digitizer - Initial Setup</h1>

break;
case 5:
document.getElementById('maincontent').src = '/edit_config_param.html';
document.getElementById('maincontent').src = '/edit_config_param.html?InitialSetup=true';
document.getElementById('explaincontent').src = '/explain_5.html';
document.getElementById('h_iframe_explain').style.display = "";
document.getElementById("previous").disabled = false;
Expand Down
2 changes: 1 addition & 1 deletion sd-card/html/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.4.1
6.5.0

0 comments on commit c2d1bbb

Please sign in to comment.