Compare commits

..

No commits in common. "89028758064b7fb9af2d2025486a168318e24638" and "ce2004e09c73b5b0f9196b9ad0cbcbf4553a51cb" have entirely different histories.

2 changed files with 4 additions and 8 deletions

10
ani-cli
View File

@ -387,10 +387,8 @@ find_media() {
dotdotslash="${inp%/*}"
if [ -z "$dotdotslash" ]; then
find_media "/"
insert_history "directory" "/"
else
find_media "$dotdotslash"
insert_history "directory" "$dotdotslash"
fi
;;
Quit)
@ -400,7 +398,7 @@ find_media() {
if [ ! -d "$inp/$selection" ] && [ ! -f "$inp/$selection" ]; then
return 1
else
insert_history "directory" "$inp/$selection"
insert_history "directory" "$inp/$selection" &
if [ "$inp" = "/" ]; then
find_media "/$selection"
else
@ -420,7 +418,7 @@ get_search_query() {
# Get search history
stmt="SELECT DISTINCT id || '. ' || anime_name \
FROM search_history \
ORDER BY search_date DESC;"
ORDER BY id DESC;"
msg="Choose from list of searched anime below, or enter a unique name of an anime to search for"
span="$(generate_span "$msg")"
@ -657,7 +655,7 @@ open_episode() {
dpage_link=$(get_dpage_link "$anime_id" "$episode")
video_url=$(get_video_quality "$dpage_link")
lg "Download link: $dpage_link"
lg "Download link: $video_url"
lg "Video url: $video_url"
if [ $half_ep -eq 1 ]; then
@ -903,7 +901,7 @@ main() {
file)
lg "STARTING DIR: $play_dir"
[ ! -d "$play_dir" ] && die "$play_dir does not exist"
insert_history "directory" "$play_dir"
insert_history "directory" "$play_dir" &
video_path=$(find_media "$play_dir")
retcode="$?"
if [ "$retcode" -ne 0 ]; then

View File

@ -108,8 +108,6 @@ window {
background-color: var(background);
width: 75%;
border-radius: 12px;
anchor: center;
location: center;
}
mainbox {
padding: 0;