Skip to content

Commit

Permalink
Prepare release v2.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rstrouse committed Dec 27, 2023
1 parent 47ff9bb commit 56c6fa0
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ConfigSettings.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#ifndef configsettings_h
#define configsettings_h

#define FW_VERSION "v2.2.3a"
#define FW_VERSION "v2.2.3"
enum DeviceStatus {
DS_OK = 0,
DS_ERROR = 1,
Expand Down
Binary file modified SomfyController.ino.esp32.bin
Binary file not shown.
Binary file modified SomfyController.littlefs.bin
Binary file not shown.
1 change: 1 addition & 0 deletions Web.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1954,6 +1954,7 @@ void Web::begin() {
});
server.on("/scanaps", []() {
webServer.sendCORSHeaders(server);
if(server.method() == HTTP_OPTIONS) { server.send(200, "OK"); return; }
int statusCode = 200;
int n = WiFi.scanNetworks();
Serial.print("Scanned ");
Expand Down
8 changes: 4 additions & 4 deletions data/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<link rel="stylesheet" href="main.css?v=2.2.3a" type="text/css" />
<link rel="stylesheet" href="widgets.css?v=2.2.3a" type="text/css" />
<link rel="stylesheet" href="icons.css?v=2.2.3a" type="text/css" />
<link rel="stylesheet" href="main.css?v=2.2.3" type="text/css" />
<link rel="stylesheet" href="widgets.css?v=2.2.3" type="text/css" />
<link rel="stylesheet" href="icons.css?v=2.2.3" type="text/css" />
<link rel="icon" type="image/png" href="favicon.png" />
<script type="text/javascript" src="index.js?v=2.2.3a"></script>
<script type="text/javascript" src="index.js?v=2.2.3"></script>
</head>
<body>
<div id="divContainer" class="container main" data-auth="false">
Expand Down
2 changes: 1 addition & 1 deletion data/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1253,7 +1253,7 @@ var security = new Security();

class General {
initialized = false;
appVersion = 'v2.2.3a';
appVersion = 'v2.2.3';
reloadApp = false;
init() {
if (this.initialized) return;
Expand Down

0 comments on commit 56c6fa0

Please sign in to comment.