Skip to content

Commit

Permalink
Merge pull request #2397 from slaff/release/4.4.1
Browse files Browse the repository at this point in the history
Release: 4.4.1
  • Loading branch information
slaff authored Oct 20, 2021
2 parents 910eb17 + d2a2a49 commit 4523db2
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 16 deletions.
6 changes: 4 additions & 2 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@ version: 2
# Optionally build your docs in additional formats such as PDF and ePub
formats:
- htmlzip
# - pdf

sphinx:
configuration: docs/source/conf.py

# Optionally set the version of Python and requirements required to build your docs
python:
version: 3.7
version: 3.8
install:
- requirements: docs/requirements.txt

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ Supported SDK: ESP-IDF v4.3. See https://sming.readthedocs.io/en/latest/_inc/Smi

### Stable

- [Sming V4.4.0](https://github.com/SmingHub/Sming/releases/tag/4.4.0) - great new features, performance and stability improvements.
- [Sming V4.4.1](https://github.com/SmingHub/Sming/releases/tag/4.4.1) - great new features, performance and stability improvements.


### Long Term Support (LTS)
Expand Down
1 change: 0 additions & 1 deletion Sming/Arch/Esp32/Components/esp32/component.mk
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ SDK_COMPONENTS += \
esp_wifi \
esp_eth \
lwip \
mbedtls \
mbedcrypto \
esp_netif \
openssl
Expand Down
3 changes: 3 additions & 0 deletions Sming/Arch/Esp32/Components/esp32/sdk/config/common
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,8 @@ CONFIG_VFS_SUPPORT_DIR=n
CONFIG_VFS_SUPPORT_SELECT=n
CONFIG_VFS_SUPPORT_TERMIOS=n

# Not used
CONFIG_MBEDTLS_CERTIFICATE_BUNDLE=n

# Debugging
CONFIG_ESP_SYSTEM_PANIC_GDBSTUB=y
2 changes: 1 addition & 1 deletion Sming/Core/SmingVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#define SMING_MAJOR_VERSION 4
#define SMING_MINOR_VERSION 4
#define SMING_PATCH_VERSION 0
#define SMING_PATCH_VERSION 1
#define SMING_PRE_RELEASE ""

#define MACROQUOT(x) #x
Expand Down
15 changes: 8 additions & 7 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# Requirements file for pip
# list of Python packages used in documentation build
sphinx==2.4.4
sphinx-rtd-theme
m2r
breathe==4.13.0
sphinx==4.2.0
sphinx-rtd-theme==1.0.0
m2r2
breathe==4.31.0
sphinxcontrib-wavedrom
sphinx-copybutton
sphinxcontrib-seqdiag>=0.8.5
jinja2>=2.11.3
setuptools==57.5.0
sphinxcontrib-seqdiag==2.0.0
jinja2==2.11.3
setuptools>=57.5.0
funcparserlib==1.0.0a0
9 changes: 5 additions & 4 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
# so developers can more easily locate the appropriate reference documentation.
#
extensions = [
'm2r',
'm2r2',
'breathe',
'sphinxcontrib.seqdiag',
'link-roles',
Expand Down Expand Up @@ -101,6 +101,10 @@
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']

html_css_files = [
'custom.css',
]

html_extra_path = [
'../api/html'
]
Expand Down Expand Up @@ -134,6 +138,3 @@

subprocess.call('make -C ../../Sming submodules SMING_ARCH=Host', shell=True)
subprocess.call('make -C .. setup api API_VERSION="' + version + '"', shell=True)

def setup(app):
app.add_stylesheet('custom.css')

0 comments on commit 4523db2

Please sign in to comment.