Releases: funnygeeker/micropython-easymenu
Releases · funnygeeker/micropython-easymenu
v3.0.3
v3.0.2
更新
- 更新
micropython-easydisplay
至v2.3.0
Update
- Update
micropython-easydisplay
tov2.3.0
v3.0.1
修复
- 将函数作为菜单或选项名称时,不显示菜单或选项名称的 BUG
- 更新
micropython-easydisplay
至v2.2.2
,修复了其中的一些 BUG,以及SH1106
驱动无法正常初始化的 BUG
Fix
- Fixed a bug where the menu or option name was not being displayed when using a function as the menu or option name.
- Updated
micropython-easydisplay
tov2.2.2
which fixes some bugs, including the bug where theSH1106
driver was not initializing correctly.
v3.0.0
修复
- 更新
micropython-easydisplay
至v2.2.0
,修复了其中的一些 BUG
Fixes
- Updated
micropython-easydisplay
tov2.2.0
, fixing some of the bugs in it.
v3.0.0-beta.1
更新
- 重大更新:菜单由字典菜单更改为类菜单,更灵活和抽象
- 新增:MenuItem, ValueItem, ToggleItem, BackItem 类,可构建更复杂的菜单
- 更新:所依赖的组件:easydisplay
- 更新:字体文件
- 请注意,该版本与上一版本完全不兼容
Update
- Major update: The menu has been changed from a dictionary-based menu to a class-based menu, making it more flexible and abstract.
- Added: MenuItem, ValueItem, ToggleItem, BackItem classes, allowing for the construction of more complex menus.
- Updated: Dependencies: easydisplay component.
- Updated: Font files.
- Please note that this version is completely incompatible with the previous version.
v2.0.0-beta.2
更新
- 重命名部分函数
- 新增
sh1106
屏幕驱动 - 对
st7735
st7789
屏幕驱动进行了错误修复和优化 - 重命名部分参数,若更新到此版本,请先检查代码兼容性
修复
- 当
'select': False
所在的选项索引为零时,会被选中的BUG
Updates
- Renamed some functions
- Added support for
sh1106
display driver - Fixed and optimized
st7735
andst7789
display drivers - Renamed some parameters. If updating to this version, please check code compatibility first.
Bug Fix
- Fixed a bug where the option with the index of zero would be selected when
'select': False
was set.
v2.0.0-beta.1
更新
- 优化默认布局
- 全新的菜单配置格式,更多的选项和功能
- 由
1 * n
的默认布局更新到了灵活的n * n
布局
Update
- Optimized default layout
- New menu configuration format with more options and features
- Updated from a default layout of
1 * n
to a flexible layout ofn * n