Skip to content

Commit ea72256

Browse files
committed
Merge branch 'rolling'
2 parents 23728a0 + be5828c commit ea72256

File tree

10 files changed

+17
-17
lines changed

10 files changed

+17
-17
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,9 @@ In other cases you can contact the developer via email: <img src="https://raw.gi
4747

4848

4949

50-
##### 8.0.2 - Multi Meter Support (2021-07-23
50+
##### 8.0.3 - Multi Meter Support (2021-07-25)
5151

52+
* NEW 8.0.3: bug fix: reboot during `config.ini` handling, html error
5253
* NEW 8.0.2: saving roundes prevalue, bug fix html server
5354
* NEW 8.0.1: bug fix html handling of parameter `FixedExposure` and `ImageSize`
5455
* Dual / multi meter support (more than 1 number to be recognized)

code/components/jomjol_fileserver_ota/server_file.cpp

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -486,10 +486,10 @@ static esp_err_t upload_post_handler(httpd_req_t *req)
486486
int start_fn = strlen(((struct file_server_data *)req->user_ctx)->base_path);
487487
printf("Directory: %s, start_fn: %d, found: %d\n", directory.c_str(), start_fn, found);
488488
directory = directory.substr(start_fn, found - start_fn + 1);
489-
printf("Directory danach: %s\n", directory.c_str());
489+
printf("Directory danach 1: %s\n", directory.c_str());
490490

491491
directory = "/fileserver" + directory;
492-
printf("Directory danach: %s\n", directory.c_str());
492+
printf("Directory danach 2: %s\n", directory.c_str());
493493

494494
/* Redirect onto root to see the updated file list */
495495
httpd_resp_set_status(req, "303 See Other");
@@ -500,11 +500,13 @@ static esp_err_t upload_post_handler(httpd_req_t *req)
500500
httpd_resp_set_hdr(req, "Location", directory.c_str());
501501
httpd_resp_sendstr(req, "File uploaded successfully");
502502

503+
/*
503504
if (strcmp(filepath, CONFIG_FILE) == 0) {
504-
printf("New config foung. Reload handler.");
505+
printf("New config found. Reload handler.");
505506
gpio_handler_deinit();
506507
MQTTdestroy();
507508
}
509+
*/
508510

509511
return ESP_OK;
510512
}
@@ -606,10 +608,10 @@ static esp_err_t delete_post_handler(httpd_req_t *req)
606608
int start_fn = strlen(((struct file_server_data *)req->user_ctx)->base_path);
607609
printf("Directory: %s, start_fn: %d, found: %d\n", directory.c_str(), start_fn, found);
608610
directory = directory.substr(start_fn, found - start_fn + 1);
609-
printf("Directory danach: %s\n", directory.c_str());
611+
printf("Directory danach 3: %s\n", directory.c_str());
610612

611613
directory = "/fileserver" + directory;
612-
printf("Directory danach: %s\n", directory.c_str());
614+
printf("Directory danach 4: %s\n", directory.c_str());
613615
}
614616

615617

code/main/version.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const char* GIT_REV="9ae8d0a";
1+
const char* GIT_REV="104b725";
22
const char* GIT_TAG="";
3-
const char* GIT_BRANCH="master";
4-
const char* BUILD_TIME="2021-07-23 20:49";
3+
const char* GIT_BRANCH="rolling";
4+
const char* BUILD_TIME="2021-07-25 18:05";

code/main/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ extern "C"
1313
#include "Helper.h"
1414
#include <fstream>
1515

16-
const char* GIT_BASE_BRANCH = "master - v8.0.2 - 2021-07-23";
16+
const char* GIT_BASE_BRANCH = "master - v8.0.3 - 2021-07-25";
1717

1818

1919
const char* git_base_branch(void)

code/version.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const char* GIT_REV="9ae8d0a";
1+
const char* GIT_REV="104b725";
22
const char* GIT_TAG="";
3-
const char* GIT_BRANCH="master";
4-
const char* BUILD_TIME="2021-07-23 20:49";
3+
const char* GIT_BRANCH="rolling";
4+
const char* BUILD_TIME="2021-07-25 18:05";

firmware/bootloader.bin

0 Bytes
Binary file not shown.

firmware/firmware.bin

-16 Bytes
Binary file not shown.

firmware/html.zip

-7 Bytes
Binary file not shown.

sd-card/html/edit_config_param.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -367,9 +367,6 @@ <h4><input type="checkbox" id="Category_Analog_enabled" value="1" onclick = 'Up
367367
</td>
368368
</tr>
369369

370-
371-
ExtendedResolution
372-
373370
<tr class="expert" id="ex10">
374371
<td width="20px" style="padding-left: 40px;"> </td>
375372
<td> <class id="Analog_ModelInputSize_text" style="color:black;">ModelInputSize</class> </td>

sd-card/html/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9.5.1
1+
9.5.2

0 commit comments

Comments
 (0)