mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Check Crostini mount points, and force name to OSCAR-test if not OSCAR
This commit is contained in:
parent
ce18739d14
commit
d5778bafb6
@ -227,10 +227,13 @@ QString appResourcePath()
|
||||
QStringList paths;
|
||||
// This one will be used if the Html and Translations folders
|
||||
// are in the same folder as the OSCAR executable
|
||||
paths.push_back( QCoreApplication::applicationDirPath() );
|
||||
paths.append( QCoreApplication::applicationDirPath() );
|
||||
#ifdef Q_OS_LINUX
|
||||
paths.push_back( QString( "/usr/share/" ) + QCoreApplication::applicationName() );
|
||||
paths.push_back( QString( "/usr/local/share/" ) + QCoreApplication::applicationName() );
|
||||
QString appName = QCoreApplication::applicationName();
|
||||
if (appName != QString("OSCAR"))
|
||||
appName = QString("OSCAR-test");
|
||||
paths.append( QString( "/usr/share/" ) + appName );
|
||||
paths.append( QString( "/usr/local/share/" ) + appName );
|
||||
#endif
|
||||
for (auto p = begin(paths); p != end(paths); ++p ) {
|
||||
QString fname = *p+QString("/Translations/oscar_qt_fr.qm");
|
||||
|
@ -832,11 +832,23 @@ QStringList getDriveList()
|
||||
#endif
|
||||
if (storage.fileSystemType() == VFAT) {
|
||||
qDebug() << "Adding" << storage.name() << "on" << storage.rootPath() << "to drivelist";
|
||||
drivelist.push_back(storage.rootPath());
|
||||
drivelist.append(storage.rootPath());
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
#if defined(Q_OS_LINUX)
|
||||
QString mntName("/mnt/chromeos/removeable");
|
||||
QDir mnt(mntName);
|
||||
if ( mnt.exists() ) {
|
||||
qDebug() << "Checking Crostini removable folders";
|
||||
QFileInfoList mntPts = mnt.entryInfoList();
|
||||
foreach ( const auto dir, mntPts ) {
|
||||
qDebug() << "Adding" << dir.filePath() << "to drivelist";
|
||||
drivelist.append(dir.filePath() );
|
||||
}
|
||||
}
|
||||
#endif
|
||||
return drivelist;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user