Skip to content

Commit

Permalink
Merge pull request #111 from RickyDane/bug/renaming_and_opening
Browse files Browse the repository at this point in the history
Bug/renaming and opening
  • Loading branch information
RickyDane authored Aug 11, 2024
2 parents 3ee75d4 + e9356db commit f417bcb
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
32 changes: 32 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,38 @@ CoDriver does not use path caching to access files and folders, so the performan
- All other items will show a small tile with some information about it. (path, size, last modified)
<br/>

## Dependencies

### Linux

#### Debian / Ubuntu
```
sudo apt update
sudo apt install libwebkit2gtk-4.0-dev \
build-essential \
curl \
wget \
file \
libssl-dev \
libgtk-3-dev \
libayatana-appindicator3-dev \
librsvg2-dev
```

#### Arch
```
sudo apt update
sudo apt install libwebkit2gtk-4.0-dev \
build-essential \
curl \
wget \
file \
libssl-dev \
libgtk-3-dev \
libayatana-appindicator3-dev \
librsvg2-dev
```

## 🖥️ FTP integration (sshfs)
Dependencies (Need to be installed additionally):

Expand Down
2 changes: 2 additions & 0 deletions ui/main_logic.js
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@ function closeAllPopups() {
closeYtDownloadPopup();
closeInfoProperties();
resetProgressBar();
closeInputDialogs();
unSelectAllItems();
IsPopUpOpen = false;
IsInputFocused = false;
Expand Down Expand Up @@ -2330,6 +2331,7 @@ function closeInputDialogs() {
}

function renameElementInputPrompt(item) {
unSelectAllItems();
let tempFilePath = item.getAttribute("itempath");
let tempRenameFilePath = item.getAttribute("itempath").split("/");
let tempFileName = tempRenameFilePath[tempRenameFilePath.length - 1].replace(
Expand Down

0 comments on commit f417bcb

Please sign in to comment.