-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #81 from Builditluc/feature/improve-ui
- Loading branch information
Showing
49 changed files
with
1,268 additions
and
729 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{% extends "base.html" %} | ||
|
||
{% block announce %} | ||
|
||
v0.6.0 is out now! | ||
Changes include: | ||
|
||
<ul> | ||
<li>Multiple border types</li> | ||
<li>A better looking default theme</li> | ||
<li>Cleaner UI</li> | ||
<li>Popup Searchbar (Press Shift+S inside of an article)</li> | ||
<li>Auto generation of the configuration file</li> | ||
</ul> | ||
|
||
And more! | ||
|
||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
use cursive::backends; | ||
use cursive_buffered_backend::BufferedBackend; | ||
|
||
#[cfg(feature = "blt-backend")] | ||
pub fn backend() -> Box<BufferedBackend> { | ||
let blt_backend = backends::blt::Backend::init(); | ||
let buffered_backend = BufferedBackend::new(blt_backend); | ||
Box::new(buffered_backend) | ||
} | ||
|
||
#[cfg(feature = "termion-backend")] | ||
pub fn backend() -> Box<BufferedBackend> { | ||
let termion_backend = backends::termion::Backend::init().unwrap(); | ||
let buffered_backend = BufferedBackend::new(termion_backend); | ||
Box::new(buffered_backend) | ||
} | ||
|
||
#[cfg(feature = "crossterm-backend")] | ||
pub fn backend() -> Box<BufferedBackend> { | ||
let crossterm_backend = backends::crossterm::Backend::init().unwrap(); | ||
let buffered_backend = BufferedBackend::new(crossterm_backend); | ||
Box::new(buffered_backend) | ||
} | ||
|
||
#[cfg(feature = "pancurses-backend")] | ||
pub fn backend() -> Box<BufferedBackend> { | ||
let pancurses_backend = backends::curses::pan::Backend::init().unwrap(); | ||
let buffered_backend = BufferedBackend::new(pancurses_backend); | ||
Box::new(buffered_backend) | ||
} | ||
|
||
#[cfg(feature = "ncurses-backend")] | ||
pub fn backend() -> Box<BufferedBackend> { | ||
let ncurses_backend = backends::curses::n::Backend::init().unwrap(); | ||
let buffered_backend = BufferedBackend::new(ncurses_backend); | ||
Box::new(buffered_backend) | ||
} |
Oops, something went wrong.