Skip to content

Commit 5c44656

Browse files
committed
fix(config): fix wrong header order
1 parent 82ad522 commit 5c44656

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

CHANGELOG.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
# ChangeLog
22

3-
## v0.1.3 - 2024-05-26
3+
## v0.1.2 - 2024-05-27
44

55
### Enhancements:
66

77
* feat(config): add version control for all configuration files by @lzw655 (#32)
88

9-
## v0.1.2 - 2024-05-17
10-
119
### Bugfixes:
1210

1311
* fix(docs): fix broken links in 'Panel Test Example' README by @lboue (#27)
12+
* fix(config): fix wrong header order by @lzw655 (#35)
1413

1514
## v0.1.1 - 2024-05-16
1615

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=ESP32_Display_Panel
2-
version=0.1.3
2+
version=0.1.2
33
author=espressif
44
maintainer=espressif
55
sentence=ESP32_Display_Panel is an Arduino library designed for ESP SoCs to drive display panels and facilitate rapid GUI development.

src/ESP_PanelVersions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/* Library Version */
1212
#define ESP_PANEL_VERSION_MAJOR 0
1313
#define ESP_PANEL_VERSION_MINOR 1
14-
#define ESP_PANEL_VERSION_PATCH 3
14+
#define ESP_PANEL_VERSION_PATCH 2
1515

1616
/* File `ESP_Panel_Conf.h` */
1717
#define ESP_PANEL_CONF_VERSION_MAJOR 0

src/ESP_Panel_Board_Internal.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
#endif
1717
#endif
1818

19+
#include "ESP_PanelTypes.h"
20+
1921
/* If "ESP_Panel_*_Board.h" are available from here, try to use them later */
2022
#ifdef __has_include
2123
#if __has_include("ESP_Panel_Board_Supported.h")
@@ -83,8 +85,6 @@
8385
#include "board/ESP_PanelBoard.h"
8486
#endif
8587

86-
#include "ESP_PanelTypes.h"
87-
8888
/* Define some special macros for devices */
8989
/*-------------------------------- LCD Related --------------------------------*/
9090
#if ESP_PANEL_USE_LCD

0 commit comments

Comments
 (0)