RcloneBrowser icon indicating copy to clipboard operation
RcloneBrowser copied to clipboard

Update size-transferred regex for progress in Jobs tab

Open djpohly opened this issue 3 years ago • 5 comments

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

djpohly avatar Jul 14 '22 14:07 djpohly

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!

tissole avatar Jul 15 '22 12:07 tissole

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.

kapitainsky avatar Jul 15 '22 14:07 kapitainsky

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.

tissole avatar Jul 15 '22 17:07 tissole

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

We need to use [email protected] 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

yelban avatar Mar 22 '23 02:03 yelban

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

God-damnit-all avatar May 28 '23 20:05 God-damnit-all