Skip to content

v0.3.0

Compare
Choose a tag to compare
@akarsh1995 akarsh1995 released this 10 Aug 03:02
· 125 commits to main since this release
e46b676

[0.3.0] - 2023-08-10

Demo

Added

  • Neetcode 75 question list.
  • Search feature on keypress /

Changed

  • Not null constraints on the fields that are never null from the server.
  • QuestionModelContainer { question: RefCell<QuestionModel> } changed to Rc<RefCell<QuestionModel>>
    • As prior implemented hash. Hashables should not be mutable.
  • Colorscheme as per tokyonight style.

Fixed

  • Some questions did not appear in "All" question list because they were not attached to any topic.
    • To resolve Unknown topic tag is added to the questions which do not have any topic tag.
  • App now successfully restores the terminal state. No residual prints on closing the app.
  • High CPU usage due to 100ms tick interval. Now tick interval changed to 5 seconds.