Skip to content

Latest commit

 

History

History
89 lines (59 loc) · 2.64 KB

CHANGELOG.md

File metadata and controls

89 lines (59 loc) · 2.64 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

6.0.0 - 2024-03-30

Breaking

  • Update to egui 0.27

5.0.0 - 2024-02-11

Breaking

  • Update to egui 0.26

4.0.0 - 2024-01-18

Breaking

  • Update to egui 0.25

3.0.0 - 2023-10-16

Breaking

  • Update to egui 0.24.
  • MSRV bumped to 1.72.0

2.0.0 - 2023-10-16

Breaking

  • AutoCompleteTextEdit::new function now takes a impl IntoIterator<Item=impl AsRef<str>> instead of &[String] #16 thanks @JiangengDong

[1.0.0] - 2023-09-30

Breaking

  • egui dependency updated to 0.23
  • MSRV bumped to 1.70.0

0.2.0 - 2023-08-16

Breaking

  • API has moved to a builder pattern, with only the required parameters in the new function
    • Max suggestions is no longer in the new function. To get the same behavior change usage as follows
      Old
      AutoCompleteTextEdit::new(&mut text, &inputs, max_suggestions);
      New
      AutoCompleteTextEdit::new(&mut text, &inputs).max_suggestions(max_suggestions);

Added

  • API to change max_suggestions .max_suggestions(usize)
  • API to enable highlighting of the matched characters .highlight_matches(bool)
  • API to modify the internal egui TextEdit .set_text_edit_properties
    • See docs for example for this

0.1.2 - 2023-08-07

Added

  • Tab can now be used to accept currently highlighted autocomplete

Fixed

  • Added serde feature to support when running egui with persistence feature
  • Initial Release