fervor icon indicating copy to clipboard operation
fervor copied to clipboard

Simple multiplatform (Qt-based) application update tool inspired by Sparkle

Results 10 fervor issues
Sort by recently updated
recently updated
newest added

Has this been merged in? Maybe updating README is in order if it has.

This commit implements a download dialog to be used inside the application (removing the need of opening the link in a web browser). The dialog manages the downloads, gives information...

Everyone else seems to be doing that now.

Is there any technical reason why this is still not done?

This is a new version of #14 fix. Now it doesn't break existing code.

The library uses its own variable for settings storage, at least in fvignoredversions.cpp (autoupdate branch). When an application uses the library, it might end up storing settings in two different...

I am not able to make this because of a missing header file. It appears ui_fvupdatedownloadprogress.h is not in the project anywhere.

Line 31 in fvupdater.cpp: I get a compile error: "unresolved external" - "extern QSettings\* settings;". This is no wonder. I couldn't find any place in the code where "settings" is...

If update window is called from the dialog box (Preferences in my case), it will appear "below" it. This call helps: ``` setWindowModality(Qt::ApplicationModal); ``` (same in FvUpdateConfirmDialog) Have them to...

Also I got a few crashes on quitting of the update dialog box, so I think that it could be safer to move call: ``` FvUpdater::sharedUpdater()->updaterWindowWasClosed(); ``` to ``` FvUpdateWindow::~FvUpdateWindow()...