Skip to content

Commit e2104bd

Browse files
committed
update
1 parent fe5a615 commit e2104bd

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/ESP_PanelVersions.h

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,28 +14,28 @@
1414
#define ESP_PANEL_VERSION_PATCH 3
1515

1616
/* File `ESP_Panel_Conf.h` */
17-
#define ESP_PANEL_CONF_VERSION_MAJOR 1
17+
#define ESP_PANEL_CONF_VERSION_MAJOR 0
1818
#define ESP_PANEL_CONF_VERSION_MINOR 1
1919
#define ESP_PANEL_CONF_VERSION_PATCH 0
2020

2121
/* File `ESP_Panel_Board_Custom.h` */
22-
#define ESP_PANEL_BOARD_CUSTOM_VERSION_MAJOR 1
22+
#define ESP_PANEL_BOARD_CUSTOM_VERSION_MAJOR 0
2323
#define ESP_PANEL_BOARD_CUSTOM_VERSION_MINOR 1
2424
#define ESP_PANEL_BOARD_CUSTOM_VERSION_PATCH 0
2525

2626
/* File `ESP_Panel_Board_Supported.h` */
27-
#define ESP_PANEL_BOARD_SUPPORTED_VERSION_MAJOR 1
27+
#define ESP_PANEL_BOARD_SUPPORTED_VERSION_MAJOR 0
2828
#define ESP_PANEL_BOARD_SUPPORTED_VERSION_MINOR 1
2929
#define ESP_PANEL_BOARD_SUPPORTED_VERSION_PATCH 0
3030

3131
/* Check if the current configuration file version is compatible with the library version */
3232
// File `ESP_Panel_Conf.h`
33-
// If the version is not defined, set it to `1.0.0`
33+
// If the version is not defined, set it to `0.1.0`
3434
#if !defined(ESP_PANEL_CONF_FILE_VERSION_MAJOR) && \
3535
!defined(ESP_PANEL_CONF_FILE_VERSION_MINOR) && \
3636
!defined(ESP_PANEL_CONF_FILE_VERSION_PATCH)
37-
#define ESP_PANEL_CONF_FILE_VERSION_MAJOR 1
38-
#define ESP_PANEL_CONF_FILE_VERSION_MINOR 0
37+
#define ESP_PANEL_CONF_FILE_VERSION_MAJOR 0
38+
#define ESP_PANEL_CONF_FILE_VERSION_MINOR 1
3939
#define ESP_PANEL_CONF_FILE_VERSION_PATCH 0
4040
#endif
4141
// Check if the current configuration file version is compatible with the library version
@@ -49,12 +49,12 @@
4949
#ifdef ESP_PANEL_USE_BOARD
5050
/* For using a supported board */
5151
#if CONFIG_ESP_PANEL_USE_SUPPORTED_BOARD || ESP_PANEL_USE_SUPPORTED_BOARD
52-
// If the version is not defined, set it to `1.0.0`
52+
// If the version is not defined, set it to `0.1.0`
5353
#if !defined(ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MAJOR) && \
5454
!defined(ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MINOR) && \
5555
!defined(ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_PATCH)
56-
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MAJOR 1
57-
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MINOR 0
56+
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MAJOR 0
57+
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_MINOR 1
5858
#define ESP_PANEL_BOARD_SUPPORTED_FILE_VERSION_PATCH 0
5959
#endif
6060
// Check if the current configuration file version is compatible with the library version
@@ -66,12 +66,12 @@
6666

6767
#else /* For using a custom board */
6868

69-
// If the version is not defined, set it to `1.0.0`
69+
// If the version is not defined, set it to `0.1.0`
7070
#if !defined(ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MAJOR) && \
7171
!defined(ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MINOR) && \
7272
!defined(ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_PATCH)
73-
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MAJOR 1
74-
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MINOR 0
73+
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MAJOR 0
74+
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_MINOR 1
7575
#define ESP_PANEL_BOARD_CUSTOM_FILE_VERSION_PATCH 0
7676
#endif
7777
// Check if the current configuration file version is compatible with the library version

0 commit comments

Comments
 (0)