Changed default data paths for packaging

This commit is contained in:
Digital Artifex
2025-08-05 05:40:38 -04:00
parent 342ffb0bc7
commit bcf2ad80f1

View File

@@ -2,12 +2,12 @@
ShaderPackModel::ShaderPackModel(QObject *parent) ShaderPackModel::ShaderPackModel(QObject *parent)
: QObject(parent), : QObject(parent),
m_shaderPackPath(QString::fromLatin1("%1/.local/share/komplex/packs/default").arg(QStandardPaths::writableLocation(QStandardPaths::HomeLocation))), m_shaderPackPath(QString::fromLatin1("/usr/share/komplex/packs/default")),
m_shaderPackInstallPath(QString::fromLatin1("%1/.local/share/komplex/packs").arg(QStandardPaths::writableLocation(QStandardPaths::HomeLocation))), m_shaderPackInstallPath(QString::fromLatin1("/usr/share/komplex/packs")),
m_shadersPath(QString::fromLatin1("%1/.local/share/komplex/shaders").arg(QStandardPaths::writableLocation(QStandardPaths::HomeLocation))), m_shadersPath(QString::fromLatin1("/usr/share/komplex/shaders")),
m_imagesPath(QString::fromLatin1("%1/.local/share/komplex/images").arg(QStandardPaths::writableLocation(QStandardPaths::HomeLocation))), m_imagesPath(QString::fromLatin1("/usr/share/komplex/images")),
m_cubeMapsPath(QString::fromLatin1("%1/.local/share/komplex/cubemaps").arg(QStandardPaths::writableLocation(QStandardPaths::HomeLocation))), m_cubeMapsPath(QString::fromLatin1("/usr/share/komplex/cubemaps")),
m_videosPath(QString::fromLatin1("%1/.local/share/komplex/videos").arg(QStandardPaths::writableLocation(QStandardPaths::HomeLocation))), m_videosPath(QString::fromLatin1("/usr/share/komplex/videos")),
m_json(QString()) m_json(QString())
{ {
} }