changing name everywhere to lumina
This commit is contained in:
parent
a70acbdeea
commit
bfa3f7280c
6 changed files with 116 additions and 39 deletions
|
@ -1,7 +1,7 @@
|
|||
|
||||
add_executable(presenter main.cpp resources.qrc)
|
||||
add_executable(lumina main.cpp resources.qrc)
|
||||
|
||||
target_sources(presenter
|
||||
target_sources(lumina
|
||||
PRIVATE
|
||||
main.cpp resources.qrc
|
||||
cpp/songsqlmodel.cpp cpp/songsqlmodel.h
|
||||
|
@ -19,9 +19,9 @@ target_sources(presenter
|
|||
cpp/framedecoder.h cpp/framedecoder.cpp
|
||||
)
|
||||
|
||||
target_compile_options (presenter PUBLIC -fexceptions)
|
||||
target_compile_options (lumina PUBLIC -fexceptions)
|
||||
|
||||
target_link_libraries(presenter PRIVATE
|
||||
target_link_libraries(lumina PRIVATE
|
||||
${AVUTIL_LIBRARIES}
|
||||
${AVFILTER_LIBRARIES}
|
||||
${AVFORMAT_LIBRARIES}
|
||||
|
|
10
src/main.cpp
10
src/main.cpp
|
@ -107,21 +107,21 @@ int main(int argc, char *argv[])
|
|||
QGuiApplication::setWindowIcon(QIcon::fromTheme(QStringLiteral("video-display")));
|
||||
QtWebEngine::initialize();
|
||||
QGuiApplication app(argc, argv);
|
||||
KLocalizedString::setApplicationDomain("librepresenter");
|
||||
KAboutData aboutData("librepresenter", i18n("Libre Presenter"), "0.1",
|
||||
KLocalizedString::setApplicationDomain("lumina");
|
||||
KAboutData aboutData("lumina", i18n("lumina"), "0.1",
|
||||
i18n("A church presentation app built with KDE tech."),
|
||||
KAboutLicense::GPL_V3,
|
||||
i18n("Copyright 2017 Bar Foundation"), QString(),
|
||||
"https://www.foo-the-app.net");
|
||||
// overwrite default-generated values of organizationDomain & desktopFileName
|
||||
aboutData.setOrganizationDomain("tfcconnection.org");
|
||||
aboutData.setDesktopFileName("org.tfcconnection.librepresenter");
|
||||
aboutData.setDesktopFileName("org.tfcconnection.lumina");
|
||||
|
||||
// set the application metadata
|
||||
KAboutData::setApplicationData(aboutData);
|
||||
QCoreApplication::setOrganizationName(QStringLiteral("librepresenter"));
|
||||
QCoreApplication::setOrganizationName(QStringLiteral("lumina"));
|
||||
QCoreApplication::setOrganizationDomain(QStringLiteral("tfcconnection.org"));
|
||||
QCoreApplication::setApplicationName(QStringLiteral("Libre Presenter"));
|
||||
QCoreApplication::setApplicationName(QStringLiteral("lumina"));
|
||||
// qSetMessagePattern("[%{type} %{time h:m:s ap}: %{function} in %{file}]: %{message}\n");
|
||||
|
||||
#ifdef Q_OS_WINDOWS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue