Skip to content
GitLab
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
a692f3bb
Commit
a692f3bb
authored
Aug 07, 2017
by
Vincent Pinon
Browse files
Remove project profiles sharing (knsrc)
Never used, not created on store.kde.org
BUG: 383238
parent
ecbc0967
Changes
7
Hide whitespace changes
Inline
Side-by-side
data/CMakeLists.txt
View file @
a692f3bb
...
...
@@ -34,7 +34,7 @@ install(FILES
# kdenlivemonitorsplit.qml
DESTINATION
${
DATA_INSTALL_DIR
}
/kdenlive
)
install
(
FILES kdenlive.notifyrc DESTINATION
${
KNOTIFYRC_INSTALL_DIR
}
)
install
(
FILES
kdenlive_projectprofiles.knsrc
kdenlive_renderprofiles.knsrc kdenlive_wipes.knsrc kdenlive_titles.knsrc DESTINATION
${
CONFIG_INSTALL_DIR
}
)
install
(
FILES kdenlive_renderprofiles.knsrc kdenlive_wipes.knsrc kdenlive_titles.knsrc DESTINATION
${
CONFIG_INSTALL_DIR
}
)
install
(
FILES profiles.xml DESTINATION
${
DATA_INSTALL_DIR
}
/kdenlive/export
)
install
(
FILES org.kde.kdenlive.appdata.xml DESTINATION
${
KDE_INSTALL_METAINFODIR
}
)
install
(
FILES org.kde.kdenlive.desktop DESTINATION
${
XDG_APPS_INSTALL_DIR
}
)
...
...
data/kdenlive_projectprofiles.knsrc
deleted
100644 → 0
View file @
ecbc0967
[KNewStuff2]
ProvidersUrl=https://kdenlive.org/data/mltprofilesources.xml
TargetDir=kdenlive/profiles
Uncompress=archive
[KNewStuff3]
ProvidersUrl=https://kdenlive.org/data/mltprofilesources.xml
TargetDir=kdenlive/profiles
Uncompress=archive
data/kdenlive_renderprofiles.knsrc
View file @
a692f3bb
[KNewStuff2]
ProvidersUrl=https://kdenlive.org/data/rendersources.xml
TargetDir=kdenlive/export
Uncompress=archive
[KNewStuff3]
Name=Kdenlive Render Profiles
Name[ca]=Perfils de renderització del Kdenlive
...
...
data/kdenlive_titles.knsrc
View file @
a692f3bb
[KNewStuff2]
ProvidersUrl=https://kdenlive.org/data/titletemplates.xml
TargetDir=kdenlive/titles
Uncompress=archive
[KNewStuff3]
Name=Kdenlive Title Templates
Name[ca]=Plantilles de títol del Kdenlive
...
...
data/kdenlive_wipes.knsrc
View file @
a692f3bb
[KNewStuff2]
ProvidersUrl=http://download.kde.org/khotnewstuff/kdenlive-providers.xml
TargetDir=kdenlive/lumas/HD
Uncompress=archive
[KNewStuff3]
Name=Kdenlive Transition Wipes
Name[ca]=Cortinetes de transició del Kdenlive
...
...
src/mainwindow.cpp
View file @
a692f3bb
...
...
@@ -1252,7 +1252,6 @@ void MainWindow::setupActions()
KNS3
::
standardAction
(
i18n
(
"Download New Wipes..."
),
this
,
SLOT
(
slotGetNewLumaStuff
()),
actionCollection
(),
"get_new_lumas"
);
KNS3
::
standardAction
(
i18n
(
"Download New Render Profiles..."
),
this
,
SLOT
(
slotGetNewRenderStuff
()),
actionCollection
(),
"get_new_profiles"
);
//KNS3::standardAction(i18n("Download New Project Profiles..."), this, SLOT(slotGetNewMltProfileStuff()), actionCollection(), "get_new_mlt_profiles");
KNS3
::
standardAction
(
i18n
(
"Download New Title Templates..."
),
this
,
SLOT
(
slotGetNewTitleStuff
()),
actionCollection
(),
"get_new_titles"
);
addAction
(
QStringLiteral
(
"run_wizard"
),
i18n
(
"Run Config Wizard"
),
this
,
SLOT
(
slotRunWizard
()),
KoIconUtils
::
themedIcon
(
QStringLiteral
(
"tools-wizard"
)));
...
...
@@ -3111,17 +3110,6 @@ void MainWindow::slotGetNewRenderStuff()
}
}
void
MainWindow
::
slotGetNewMltProfileStuff
()
{
if
(
getNewStuff
(
QStringLiteral
(
"kdenlive_projectprofiles.knsrc"
))
>
0
)
{
// update the list of profiles in settings dialog
KdenliveSettingsDialog
*
d
=
static_cast
<
KdenliveSettingsDialog
*>
(
KConfigDialog
::
exists
(
QStringLiteral
(
"settings"
)));
if
(
d
)
{
d
->
checkProfile
();
}
}
}
void
MainWindow
::
slotAutoTransition
()
{
if
(
pCore
->
projectManager
()
->
currentTimeline
())
{
...
...
src/mainwindow.h
View file @
a692f3bb
...
...
@@ -381,7 +381,6 @@ private slots:
void
slotGetNewLumaStuff
();
void
slotGetNewTitleStuff
();
void
slotGetNewRenderStuff
();
void
slotGetNewMltProfileStuff
();
void
slotAutoTransition
();
void
slotRunWizard
();
void
slotZoneMoved
(
int
start
,
int
end
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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