Skip to content

Commit

Permalink
Merge pull request #96 from vortigont/r3.6.1
Browse files Browse the repository at this point in the history
Rel v3.6.1
  • Loading branch information
vortigont committed May 27, 2024
2 parents cee6ba6 + 98cce04 commit b963bfc
Show file tree
Hide file tree
Showing 14 changed files with 23 additions and 16 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 3.6.1 (2024-05-27)
* fix demo time save/restore
* fix displaying MP3 volume on TM1637 display
- Remove LinkedList dependency
* minor cleanup, readme update, links, etc...

## 3.6.0 (2024-05-13)
+ Factory firmware builds
- on-demandfactory images builder CI pipeline
Expand Down
2 changes: 1 addition & 1 deletion src/bencoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
This file is a part of FireLamp_JeeUI project
https://github.com/vortigont/FireLamp_JeeUI
Copyright © 2023 Emil Muratov (vortigont)
Copyright © 2023-2024 Emil Muratov (Vortigont)
FireLamp_JeeUI is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion src/bencoder.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
This file is a part of FireLamp_JeeUI project
https://github.com/vortigont/FireLamp_JeeUI
Copyright © 2023 Emil Muratov (vortigont)
Copyright © 2023-2024 Emil Muratov (Vortigont)
FireLamp_JeeUI is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion src/display.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
This file is a part of FireLamp_JeeUI project
https://github.com/vortigont/FireLamp_JeeUI
Copyright © 2023 Emil Muratov (vortigont)
Copyright © 2023-2024 Emil Muratov (Vortigont)
FireLamp_JeeUI is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion src/display.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
This file is a part of FireLamp_JeeUI project
https://github.com/vortigont/FireLamp_JeeUI
Copyright © 2023 Emil Muratov (vortigont)
Copyright © 2023-2024 Emil Muratov (Vortigont)
FireLamp_JeeUI is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
3 changes: 1 addition & 2 deletions src/evtloop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
This file is a part of FireLamp_JeeUI project
https://github.com/vortigont/FireLamp_JeeUI
Copyright © 2023 Emil Muratov (vortigont)
Copyright © 2020 Dmytro Korniienko (kDn)
Copyright © 2023-2024 Emil Muratov (Vortigont)
FireLamp_JeeUI is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
3 changes: 1 addition & 2 deletions src/evtloop.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
This file is a part of FireLamp_JeeUI project
https://github.com/vortigont/FireLamp_JeeUI
Copyright © 2023 Emil Muratov (vortigont)
Copyright © 2020 Dmytro Korniienko (kDn)
Copyright © 2023-2024 Emil Muratov (Vortigont)
FireLamp_JeeUI is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 2 additions & 0 deletions src/filehelpers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
a fork of https://github.com/DmytroKorniienko/FireLamp_EmbUI
Copyright © 2023-2024 Emil Muratov (Vortigont)
FireLamp_JeeUI is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
Expand Down
2 changes: 2 additions & 0 deletions src/filehelpers.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
a fork of https://github.com/DmytroKorniienko/FireLamp_EmbUI
Copyright © 2023-2024 Emil Muratov (Vortigont)
FireLamp_JeeUI is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
Expand Down
3 changes: 1 addition & 2 deletions src/interface.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/*
Copyright © 2023 Emil Muratov (vortigont)
Copyright © 2023-2024 Emil Muratov (Vortigont)
Copyright © 2020 Dmytro Korniienko (kDn)
JeeUI2 lib used under MIT License Copyright (c) 2019 Marsel Akhkamov
This file is part of FireLamp_JeeUI.
Expand Down
3 changes: 1 addition & 2 deletions src/lamp.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright © 2023-2024 Emil Muratov (Vortigont)
Copyright © 2020 Dmytro Korniienko (kDn)
JeeUI2 lib used under MIT License Copyright (c) 2019 Marsel Akhkamov
This file is part of FireLamp_JeeUI.
Expand Down Expand Up @@ -488,7 +488,6 @@ void Lamp::setDemoTime(uint32_t seconds){
demoTime = seconds;
if(demoTask){
demoTask->setInterval(demoTime * TASK_SECOND);
return;
}
esp_err_t err;
std::unique_ptr<nvs::NVSHandle> handle = nvs::open_nvs_handle(T_lamp, NVS_READWRITE, &err);
Expand Down
2 changes: 1 addition & 1 deletion src/lamp.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright © 2023-2024 Emil Muratov (Vortigont)
Copyright © 2020 Dmytro Korniienko (kDn)
JeeUI2 lib used under MIT License Copyright (c) 2019 Marsel Akhkamov
This file is part of FireLamp_JeeUI.
Expand Down
3 changes: 2 additions & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright © 2023-2024 Emil Muratov (Vortigont)
Copyright © 2020 Dmytro Korniienko (kDn)
JeeUI2 lib used under MIT License Copyright (c) 2019 Marsel Akhkamov
This file is part of FireLamp_JeeUI.
Expand Down Expand Up @@ -34,6 +34,7 @@ JeeUI2 lib used under MIT License Copyright (c) 2019 Marsel Akhkamov
вместе с этой программой. Если это не так, см.
<https://www.gnu.org/licenses/>.)
*/

#include "main.h"
#include "filehelpers.hpp"
#include "lamp.h"
Expand Down
4 changes: 2 additions & 2 deletions src/main.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright © 2023-2024 Emil Muratov (Vortigont)
Copyright © 2020 Dmytro Korniienko (kDn)
JeeUI2 lib used under MIT License Copyright (c) 2019 Marsel Akhkamov
This file is part of FireLamp_JeeUI.
Expand Down Expand Up @@ -45,7 +45,7 @@ JeeUI2 lib used under MIT License Copyright (c) 2019 Marsel Akhkamov

#define LAMPFW_VERSION_MAJOR 3
#define LAMPFW_VERSION_MINOR 6
#define LAMPFW_VERSION_REVISION 0
#define LAMPFW_VERSION_REVISION 1

#define LAMPFW_VERSION_VALUE (MAJ, MIN, REV) ((MAJ) << 16 | (MIN) << 8 | (REV))

Expand Down

0 comments on commit b963bfc

Please sign in to comment.