File tree Expand file tree Collapse file tree 7 files changed +22
-16
lines changed
Arch/Esp32/Components/esp32 Expand file tree Collapse file tree 7 files changed +22
-16
lines changed Original file line number Diff line number Diff line change @@ -8,11 +8,13 @@ version: 2
8
8
# Optionally build your docs in additional formats such as PDF and ePub
9
9
formats :
10
10
- htmlzip
11
- # - pdf
11
+
12
+ sphinx :
13
+ configuration : docs/source/conf.py
12
14
13
15
# Optionally set the version of Python and requirements required to build your docs
14
16
python :
15
- version : 3.7
17
+ version : 3.8
16
18
install :
17
19
- requirements : docs/requirements.txt
18
20
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ Supported SDK: ESP-IDF v4.3. See https://sming.readthedocs.io/en/latest/_inc/Smi
117
117
118
118
### Stable
119
119
120
- - [ Sming V4.4.0 ] ( https://github.com/SmingHub/Sming/releases/tag/4.4.0 ) - great new features, performance and stability improvements.
120
+ - [ Sming V4.4.1 ] ( https://github.com/SmingHub/Sming/releases/tag/4.4.1 ) - great new features, performance and stability improvements.
121
121
122
122
123
123
### Long Term Support (LTS)
Original file line number Diff line number Diff line change @@ -117,7 +117,6 @@ SDK_COMPONENTS += \
117
117
esp_wifi \
118
118
esp_eth \
119
119
lwip \
120
- mbedtls \
121
120
mbedcrypto \
122
121
esp_netif \
123
122
openssl
Original file line number Diff line number Diff line change @@ -37,5 +37,8 @@ CONFIG_VFS_SUPPORT_DIR=n
37
37
CONFIG_VFS_SUPPORT_SELECT=n
38
38
CONFIG_VFS_SUPPORT_TERMIOS=n
39
39
40
+ # Not used
41
+ CONFIG_MBEDTLS_CERTIFICATE_BUNDLE=n
42
+
40
43
# Debugging
41
44
CONFIG_ESP_SYSTEM_PANIC_GDBSTUB=y
Original file line number Diff line number Diff line change 7
7
8
8
#define SMING_MAJOR_VERSION 4
9
9
#define SMING_MINOR_VERSION 4
10
- #define SMING_PATCH_VERSION 0
10
+ #define SMING_PATCH_VERSION 1
11
11
#define SMING_PRE_RELEASE ""
12
12
13
13
#define MACROQUOT (x ) #x
Original file line number Diff line number Diff line change 1
1
# Requirements file for pip
2
2
# list of Python packages used in documentation build
3
- sphinx == 2.4.4
4
- sphinx-rtd-theme
5
- m2r
6
- breathe == 4.13 .0
3
+ sphinx == 4.2.0
4
+ sphinx-rtd-theme == 1.0.0
5
+ m2r2
6
+ breathe == 4.31 .0
7
7
sphinxcontrib-wavedrom
8
8
sphinx-copybutton
9
- sphinxcontrib-seqdiag >= 0.8.5
10
- jinja2 >= 2.11.3
11
- setuptools == 57.5.0
9
+ sphinxcontrib-seqdiag == 2.0.0
10
+ jinja2 == 2.11.3
11
+ setuptools >= 57.5.0
12
+ funcparserlib == 1.0.0a0
Original file line number Diff line number Diff line change 45
45
# so developers can more easily locate the appropriate reference documentation.
46
46
#
47
47
extensions = [
48
- 'm2r ' ,
48
+ 'm2r2 ' ,
49
49
'breathe' ,
50
50
'sphinxcontrib.seqdiag' ,
51
51
'link-roles' ,
101
101
# so a file named "default.css" will overwrite the builtin "default.css".
102
102
html_static_path = ['_static' ]
103
103
104
+ html_css_files = [
105
+ 'custom.css' ,
106
+ ]
107
+
104
108
html_extra_path = [
105
109
'../api/html'
106
110
]
134
138
135
139
subprocess .call ('make -C ../../Sming submodules SMING_ARCH=Host' , shell = True )
136
140
subprocess .call ('make -C .. setup api API_VERSION="' + version + '"' , shell = True )
137
-
138
- def setup (app ):
139
- app .add_stylesheet ('custom.css' )
You can’t perform that action at this time.
0 commit comments