You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
where ${FLATPAK_DEST} corresponds to /app
I assume iRASPA just don't know where to look for them, how do I change this?
Also, would you be ok if I submit this to Flathub? I will keep it update, but the core devs would be invite to be the maintainer as well.
Also, the idea of adding RASPA into iRASPA flatpak comes to mind, would it make sense?
Thanks.
The text was updated successfully, but these errors were encountered:
In 'MainWindow::readDatabase' in file 'iraspagui/mainwindow.cpp', there is:
#ifdef USE_SNAP
QDir dir("/snap/iraspa/current/usr/share/iraspa/");
#else
QDir dir("/usr/share/iraspa/");
//QDir dir(QCoreApplication::applicationDirPath());
#endif
So, the default location is "/usr/share/iraspa/". You could add -DFLATPAK when compiling and:
#ifdef USE_SNAP
QDir dir("/snap/iraspa/current/usr/share/iraspa/");
#elif FLATPAK
QDir dir("flatpak-location");
#else
QDir dir("/usr/share/iraspa/");
//QDir dir(QCoreApplication::applicationDirPath());
#endif
and fill in the appropriate flatpak location.
Submitting to Flathub is fine. One issue with snaps and flatpaks is that OpenCL is not supported and iRASPA falls back to CPU-computation for certain computations.
Hi,
I tried to package iRASPA as Flatpak.
Here is the manifest https://github.com/kevinsmia1939/flathub/tree/org.iraspa.iRASPA
Right now it compile and run, however, the log console show.
In my flatpak manifest, I did install them like this.
where ${FLATPAK_DEST} corresponds to /app
I assume iRASPA just don't know where to look for them, how do I change this?
Also, would you be ok if I submit this to Flathub? I will keep it update, but the core devs would be invite to be the maintainer as well.
Also, the idea of adding RASPA into iRASPA flatpak comes to mind, would it make sense?
Thanks.
The text was updated successfully, but these errors were encountered: