Check Crostini mount points, and force name to OSCAR-test if not OSCAR

This commit is contained in:
Phil Olynyk 2020-08-25 21:09:53 -04:00
parent ce18739d14
commit d5778bafb6
2 changed files with 19 additions and 4 deletions

View File

@ -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");

View File

@ -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;
}