Skip to content

Commit

Permalink
Breaking Changes NfMd Variants are deprecated and will be replaced by…
Browse files Browse the repository at this point in the history
… their equivalent NfFa Variant in the next release
  • Loading branch information
andretcarpizo committed Dec 23, 2023
1 parent 8f7a129 commit d3d0f02
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased] - 2023-12-23

### Breaking Changes
NfMd Variants are deprecated and will be replaced by their equivalent NfFa Variant in the next release
- NfMdGreaterThan
- NfMdLessThan
- NfMdEqual
- NfMdThumbsUp
- NfMdThumbsDown
- NfMdFolder
- NfMdFolderOpen


## [1.2.1] - 2023-12-22

### Changed
Expand Down
8 changes: 5 additions & 3 deletions DEVLOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
# Dev Log
## [Unreleased] - 2023-12-23

### Added
- Add: whisper_with_fallback method experimental

### Changed
- Change: whisper or else fallback ok
- Change: whisper_or_else fallback err
- Rename: to whisper_or_else
- Update: makefile

### Added
- Add: whisper_with_fallback method experimental

### Other
- NfMd: Variants are deprecated and will be replaced by their equivalent NfFa Variant in the next release
- 2023-12-23 07: 57:58
- 2023-12-22 04: 54:11

2 changes: 2 additions & 0 deletions src/icon_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@ pub static ICON_MAP: Lazy<Mutex<HashMap<IconKind, (&'static str, &'static str)>>

i_map.insert(IconKind::NfOctDotFill, ("\u{f444} ", WHITE)); // 

// Deprecate NfMd variants
// Todo: Replace with equivalenf NfFa variants
i_map.insert(IconKind::NfMdGreaterThan, ("\u{f096d} ", WHITE)); // 󰥭
i_map.insert(IconKind::NfMdLessThan, ("\u{f097c} ", WHITE)); // 󰥼
i_map.insert(IconKind::NfMdEqual, ("\u{f01fc} ", WHITE)); // 󰇼
Expand Down

0 comments on commit d3d0f02

Please sign in to comment.