Skip to content

Commit

Permalink
bump to v0.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Builditluc committed Aug 11, 2023
1 parent 79896b8 commit b4cceaf
Show file tree
Hide file tree
Showing 6 changed files with 52 additions and 4 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
# v0.8.2 (Fri Aug 11 2023)

:tada: This release contains work from a new contributor! :tada:

Thank you, null[@ethamck](https://github.com/ethamck), for all your work!

#### Bug Fixes 🐛

- Fix notice for unsupported elements [#215](https://github.com/Builditluc/wiki-tui/pull/215) ([@Builditluc](https://github.com/Builditluc))
- Fix translations not appearing [#214](https://github.com/Builditluc/wiki-tui/pull/214) ([@Builditluc](https://github.com/Builditluc))
- Fix word cut off [#213](https://github.com/Builditluc/wiki-tui/pull/213) ([@Builditluc](https://github.com/Builditluc))
- Fix invalid search links after language change [#209](https://github.com/Builditluc/wiki-tui/pull/209) ([@Builditluc](https://github.com/Builditluc))

#### Structure and Style Changes

- Replace raster logo with vectors [#208](https://github.com/Builditluc/wiki-tui/pull/208) ([@ethamck](https://github.com/ethamck))

#### Authors: 2

- [@Builditluc](https://github.com/Builditluc)
- [@ethamck](https://github.com/ethamck)

---

# v0.8.1 (Sat Aug 05 2023)

### Release Notes
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wiki-tui"
version = "0.8.1"
version = "0.8.2"
authors = ["builditluc <[email protected]>"]
edition = "2018"
repository = "https://github.com/Builditluc/wiki-tui"
Expand Down
24 changes: 24 additions & 0 deletions docs/changelog/index.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
# v0.8.2 (Fri Aug 11 2023)

:tada: This release contains work from a new contributor! :tada:

Thank you, null[@ethamck](https://github.com/ethamck), for all your work!

#### Bug Fixes 🐛

- Fix notice for unsupported elements [#215](https://github.com/Builditluc/wiki-tui/pull/215) ([@Builditluc](https://github.com/Builditluc))
- Fix translations not appearing [#214](https://github.com/Builditluc/wiki-tui/pull/214) ([@Builditluc](https://github.com/Builditluc))
- Fix word cut off [#213](https://github.com/Builditluc/wiki-tui/pull/213) ([@Builditluc](https://github.com/Builditluc))
- Fix invalid search links after language change [#209](https://github.com/Builditluc/wiki-tui/pull/209) ([@Builditluc](https://github.com/Builditluc))

#### Structure and Style Changes

- Replace raster logo with vectors [#208](https://github.com/Builditluc/wiki-tui/pull/208) ([@ethamck](https://github.com/ethamck))

#### Authors: 2

- [@Builditluc](https://github.com/Builditluc)
- [@ethamck](https://github.com/ethamck)

---

# v0.8.1 (Sat Aug 05 2023)

### Release Notes
Expand Down
2 changes: 1 addition & 1 deletion src/ui/article/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use crate::config::{Config, TocPosition, CONFIG};
use crate::config::{TocPosition, CONFIG};
use crate::ui::panel::WithPanel;
use crate::ui::search::bar_popup::open_search_bar;
use crate::ui::toc::display_toc;
Expand Down
2 changes: 1 addition & 1 deletion src/ui/search/display.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ pub fn display_search_results(siv: &mut Cursive, search: Search) -> Result<()> {

// create the continue button (Button)
let search_continue_button = {
let search = search.clone();
let search = search;
Button::new("Show more results...", move |s| {
on_continue_submit(s, search.clone())
})
Expand Down

0 comments on commit b4cceaf

Please sign in to comment.