mirror of
https://github.com/lotabout/skim.git
synced 2026-09-10 07:16:23 -04:00
feat: 120 FPS
This commit is contained in:
parent
7e962392cd
commit
3dc64cfb90
|
|
@ -7,7 +7,6 @@ documentation = "https://docs.rs/skim"
|
|||
homepage = "https://github.com/skim-rs/skim"
|
||||
repository = "https://github.com/skim-rs/skim"
|
||||
readme = "README.md"
|
||||
changelog = "CHANGELOG.md"
|
||||
keywords = ["fuzzy", "menu", "util"]
|
||||
license = "MIT"
|
||||
edition = "2024"
|
||||
|
|
|
|||
12
justfile
12
justfile
|
|
@ -1,16 +1,20 @@
|
|||
bump-version version:
|
||||
sed -i 's/^version = ".*"/version = "{{ version }}"/' ./Cargo.toml
|
||||
|
||||
generate-files:
|
||||
cargo run -- --man > ./man/man1/sk.1
|
||||
cargo run -- --shell bash > ./shell/completion.bash
|
||||
cargo run -- --shell zsh > ./shell/completion.zsh
|
||||
cargo run -- --shell fish > ./shell/completion.fish
|
||||
|
||||
release version:
|
||||
sed -i 's/^version = ".*"/version = "{{ version }}"/' ./Cargo.toml
|
||||
cargo generate-lockfile
|
||||
changelog:
|
||||
git cliff -o CHANGELOG.md
|
||||
just generate-files
|
||||
|
||||
release version: (bump-version version) generate-files changelog
|
||||
cargo generate-lockfile
|
||||
git add CHANGELOG.md Cargo.lock Cargo.toml man/ shell/
|
||||
git commit -m 'release: v{{ version }}'
|
||||
git tag 'v{{ version }}'
|
||||
read -p "Press any key to confirm pushing tag v{{ version }}"
|
||||
git push
|
||||
git push --tags
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ use tokio_util::sync::CancellationToken;
|
|||
use super::{Event, Size};
|
||||
|
||||
const TICK_RATE: f64 = 12.;
|
||||
const FRAME_RATE: f64 = 12.;
|
||||
const FRAME_RATE: f64 = 120.;
|
||||
static PANIC_HOOK_SET: Once = Once::new();
|
||||
|
||||
/// Terminal user interface handler for skim
|
||||
|
|
|
|||
Loading…
Reference in a new issue