kapitainsky / RcloneBrowser

Simple cross platform GUI for rclone. Supports macOS, GNU/Linux, BSD family and Windows.
https://github.com/kapitainsky/RcloneBrowser
MIT License
2.24k stars 215 forks source link

Update size-transferred regex for progress in Jobs tab #212

Open djpohly opened 2 years ago

djpohly commented 2 years ago

Not sure which rclone version changed the output format, but this regex works for 1.58.1.

tissole commented 2 years ago

Thank you for the fix! I compiled it on Windows 10 with master branch (v 1.8) and it works fine, now it shows the stats. But with newest test2 branch (v 2.0) it fails to compile. Can you make a fix for that branch too? Thanks!

kapitainsky commented 2 years ago

2.0 is still experimental - so problems with compilation are expected:)

On 15 Jul 2022, at 13:34, tissole @.***> wrote:

Thank you for the fix! I compiled it on Windows 10 with master branch (v 1.8) and it works fine, now it shows the stats. But with newest test2 branch (v 2.0) it fails to compile. Can you make a fix for that branch too? Thanks!

— Reply to this email directly, view it on GitHub https://github.com/kapitainsky/RcloneBrowser/pull/212#issuecomment-1185501711, or unsubscribe https://github.com/notifications/unsubscribe-auth/ADXJHOVJ4WWOQCX7SCLRDALVUFLFBANCNFSM53SRAQKQ. You are receiving this because you are subscribed to this thread.

tissole commented 2 years ago

Branch 2.0 compiles fine without this fix, but the stats does not appear when downloading and uploading files, same for the 1.8 stable. Release binaries for branch 2.0 so that people can run tests and report bugs. It will speed up development.

yelban commented 1 year ago

The current version of qt@5 on homebrew does not compile rclone-browser successfully.

We need to use qt@5.14.2 or earlier

download qt-opensource-mac-x64-5.14.2.dmg from https://download.qt.io/archive/qt/5.14/5.14.2/

open qt-opensource-mac-x64-5.14.2.dmg and using default installation (You will need to wait a while for the 2.6G installation file to open)

The QT 5.14.2 path will be located at ~/Qt5.14.2

brew install git cmake rclone
git clone https://github.com/kapitainsky/RcloneBrowser.git
cd RcloneBrowser
git fetch origin pull/212/head
git checkout -b pullrequest FETCH_HEAD
mkdir build
cd build
cmake .. -DCMAKE_PREFIX_PATH:PATH=/Users/{YOU}/Qt5.14.2/5.14.2/clang_64
make
cd build
/Users/{YOU}/Qt5.14.2/5.14.2/clang_64/bin/macdeployqt rclone-browser.app -executable="rclone-browser.app/Contents/MacOS/rclone-browser" -qmldir=../src/

The rclone-browser.app that shows progress is located at ~/RcloneBrowser/build/build

image

God-damnit-all commented 1 year ago

Any idea how to compile it into an AppImage on Ubuntu? The build instructions don't cover that.