Skip to content

Commit

Permalink
revise CHANGELOG etc for Release 0.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
elehobica committed Jun 6, 2024
1 parent e79ec58 commit b72916d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,16 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [v0.9.5] - 2024-06-06
### Added
* Add support of Waveshare RP2040-LCD-0.96 board
* Support tag information by ID3v2 tag (RIFF ID3v2) as higher priority than that by LIST chunk
* Also support coverart image from the JPEG bitstream in ID3v2 tag as higher priority than separate JPEG file in local directory
* Add button layout configurations for natural button assignment in FileView and Config mode when buttons are horizontally placed
### Changed
* Replace transistor with MOS-FET in battery operation circuit (Q2) thanks to conditional pullup
* Self-check if active battery check circuit is populated, not by USE_ACTIVE_BATTERY_CHECK macro definition
* Self-configure by checking if active battery check circuit is populated, not define USE_ACTIVE_BATTERY_CHECK macro
* Use submodule for pico_flash_param library
### Fixed
* Add workaround for mount fail case of Samsung PRO Plus card
Expand Down
7 changes: 6 additions & 1 deletion src/ConfigParam.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ struct ConfigParam : FlashParamNs::FlashParam {
return instance;
}
// Parameter<T> inst id name default size
FlashParamNs::Parameter<std::string> P_CFG_REVISION {CFG_REVISION, "CFG_REVISION", "0.9.4", 8};
FlashParamNs::Parameter<std::string> P_CFG_REVISION {CFG_REVISION, "CFG_REVISION", "0.9.5", 8};
FlashParamNs::Parameter<uint32_t> P_CFG_SEED {CFG_SEED, "CFG_SEED", 0};
FlashParamNs::Parameter<uint8_t> P_CFG_VOLUME {CFG_VOLUME, "CFG_VOLUME", 65};
FlashParamNs::Parameter<uint8_t> P_CFG_STACK_COUNT {CFG_STACK_COUNT, "CFG_STACK_COUNT", 0};
Expand Down Expand Up @@ -89,4 +89,9 @@ struct ConfigParam : FlashParamNs::FlashParam {
FlashParamNs::Parameter<uint32_t> P_CFG_MENU_IDX_PLAY_TIME_TO_NEXT_PLAY {CFG_MENU_IDX_PLAY_TIME_TO_NEXT_PLAY, "CFG_MENU_IDX_PLAY_TIME_TO_NEXT_PLAY", 2};
FlashParamNs::Parameter<uint32_t> P_CFG_MENU_IDX_PLAY_NEXT_PLAY_ALBUM {CFG_MENU_IDX_PLAY_NEXT_PLAY_ALBUM, "CFG_MENU_IDX_PLAY_NEXT_PLAY_ALBUM", 1};
FlashParamNs::Parameter<uint32_t> P_CFG_MENU_IDX_PLAY_RANDOM_DIR_DEPTH {CFG_MENU_IDX_PLAY_RANDOM_DIR_DEPTH, "CFG_MENU_IDX_PLAY_RANDOM_DIR_DEPTH", 1};

void initialize(bool preserveStoreCount = false) override {
FlashParamNs::FlashParam::initialize();
P_CFG_REVISION.setDefault();
}
};

0 comments on commit b72916d

Please sign in to comment.