Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Multimedia
Kdenlive
Commits
f44fa281
Commit
f44fa281
authored
Sep 17, 2021
by
Julius Künzel
⚠
Browse files
First implementation of KAboutComponents
parent
4ea09c57
Pipeline
#81133
canceled with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/main.cpp
View file @
f44fa281
...
...
@@ -183,8 +183,16 @@ int main(int argc, char *argv[])
aboutData
.
setTranslator
(
i18n
(
"NAME OF TRANSLATORS"
),
i18n
(
"EMAIL OF TRANSLATORS"
));
aboutData
.
setOrganizationDomain
(
QByteArray
(
"kde.org"
));
#if KICONTHEMES_VERSION < QT_VERSION_CHECK(5,87,0)
aboutData
.
setOtherText
(
i18n
(
"Using:
\n
<a href=
\"
https://mltframework.org
\"
>MLT</a> version %1
\n
<a href=
\"
https://ffmpeg.org
\"
>FFmpeg</a> libraries"
,
mlt_version_get_string
()));
#endif
#if KICONTHEMES_VERSION >= QT_VERSION_CHECK(5,84,0)
aboutData
.
addComponent
(
i18n
(
"MLT"
),
i18n
(
"Open source multimedia framework."
),
mlt_version_get_string
(),
QStringLiteral
(
"https://mltframework.org"
)
/*, KAboutLicense::LGPL_V2_1*/
);
aboutData
.
addComponent
(
i18n
(
"FFmpeg"
),
i18n
(
"A complete, cross-platform solution to record, convert and stream audio and video."
),
QString
(),
QStringLiteral
(
"https://ffmpeg.org"
));
#endif
aboutData
.
setDesktopFileName
(
QStringLiteral
(
"org.kde.kdenlive"
));
// Register about data
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment