vifm 0.10.1

Closes #42658.

Signed-off-by: Chongyu Zhu <i@lembacon.com>
This commit is contained in:
Caleb Xu 2019-08-01 07:44:26 -04:00 committed by Chongyu Zhu
parent 44e7a6dbf6
commit 77ff926ba8
No known key found for this signature in database
GPG key ID: 1A43E3C9100B38F5

View file

@ -1,8 +1,8 @@
class Vifm < Formula class Vifm < Formula
desc "Ncurses based file manager with vi like keybindings" desc "Ncurses based file manager with vi like keybindings"
homepage "https://vifm.info/" homepage "https://vifm.info/"
url "https://github.com/vifm/vifm/releases/download/v0.10/vifm-0.10.tar.bz2" url "https://github.com/vifm/vifm/releases/download/v0.10.1/vifm-0.10.1.tar.bz2"
sha256 "e05a699f58279f69467d75d8cd3d6c8d2f62806c467fd558eda45ae9590768b8" sha256 "99006f56db05e1bdfb7983e8d5c31c9ac93bf2ac9e0409a577c8ca660fecd03b"
bottle do bottle do
sha256 "ecd4ded0553705dff6ce635bfd424671e9ce8e4c7aebb279fc4040763041e98b" => :mojave sha256 "ecd4ded0553705dff6ce635bfd424671e9ce8e4c7aebb279fc4040763041e98b" => :mojave
@ -10,10 +10,6 @@ class Vifm < Formula
sha256 "ebeea80fbbce5f75d6541c1ee2b1bad9d29076a84ead9b6b9d019b259d7c3566" => :sierra sha256 "ebeea80fbbce5f75d6541c1ee2b1bad9d29076a84ead9b6b9d019b259d7c3566" => :sierra
end end
# Upstream fix: https://github.com/vifm/vifm/commit/4ad11aca
# Remove in next version
patch :DATA
def install def install
system "./configure", "--disable-dependency-tracking", system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}", "--prefix=#{prefix}",
@ -30,20 +26,3 @@ class Vifm < Formula
assert_match version.to_s, shell_output("#{bin}/vifm --version") assert_match version.to_s, shell_output("#{bin}/vifm --version")
end end
end end
__END__
diff --git a/src/ui/ui.c b/src/ui/ui.c
index 117ca8b86..ce82b17e8 100644
--- a/src/ui/ui.c
+++ b/src/ui/ui.c
@@ -345,6 +345,11 @@ ui_update_term_state(void)
int
ui_char_pressed(wint_t c)
{
+ if(curr_stats.load_stage < 2)
+ {
+ return 0;
+ }
+
wint_t pressed = L'\0';
const int cancellation_state = ui_cancellation_pause();