mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 03:22:33 +01:00
Cleanup unused files
This commit is contained in:
parent
ce397137c9
commit
2f7719d056
@ -207,9 +207,6 @@ set(RESOURCES
|
||||
assets/licenses/Apache2.txt
|
||||
assets/licenses/OFL.txt
|
||||
assets/macos/app.screenplay.plist
|
||||
assets/particle/backgroundGlow.png
|
||||
assets/particle/dot.png
|
||||
assets/shader/movingcolorramp.fsh
|
||||
assets/startinfo/blender.png
|
||||
assets/startinfo/flaticon.png
|
||||
assets/startinfo/forums.png
|
||||
@ -238,7 +235,6 @@ set(RESOURCES
|
||||
assets/wizards/License_CC_Attribution-ShareAlike_4.0.txt
|
||||
assets/wizards/License_CC_Attribution_4.0.txt
|
||||
assets/wizards/License_GPL_3.0.txt
|
||||
assets/wizards/QmlProject.qmlproject
|
||||
assets/WorkshopPreview.html
|
||||
legal/DataProtection.txt
|
||||
legal/gpl-3.0.txt
|
||||
@ -247,6 +243,7 @@ set(RESOURCES
|
||||
legal/OpenSSL.txt
|
||||
profiles.json
|
||||
qml/Create/WizardsFiles/HTMLWallpaperMain.html
|
||||
qml/Create/WizardsFiles/QmlProject.qmlproject
|
||||
qml/Create/WizardsFiles/HTMLWidgetMain.html
|
||||
qml/Create/WizardsFiles/QMLWallpaperMain.qml
|
||||
qml/Create/WizardsFiles/QMLWidgetMain.qml
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 115 KiB |
Binary file not shown.
Before Width: | Height: | Size: 3.2 KiB |
@ -1,18 +0,0 @@
|
||||
uniform float time;
|
||||
uniform float shaderOpacity;
|
||||
uniform vec2 resolution;
|
||||
|
||||
void main( void ) {
|
||||
|
||||
|
||||
vec2 position = ( gl_FragCoord.xy / resolution.xy );
|
||||
|
||||
vec3 color1 = vec3(1.0, 0.6, 0.01);
|
||||
vec3 color2 = vec3(0.97, 0.24, 0.24);
|
||||
float mixValue = distance(position,vec2(0,1));
|
||||
|
||||
vec3 color = mix( color1, color2, mixValue);
|
||||
|
||||
gl_FragColor = vec4(color,mixValue) * shaderOpacity;
|
||||
|
||||
}
|
Binary file not shown.
@ -273,7 +273,7 @@ void Wizards::createQMLWallpaper(
|
||||
}
|
||||
|
||||
const QString qmlproject = workingPath + "/" + title + ".qmlproject";
|
||||
if (!Util::writeFileFromQrc(":/qml/ScreenPlayApp/assets/wizards/" + QString("QmlProject.qmlproject"), qmlproject)) {
|
||||
if (!Util::writeFileFromQrc(":/qml/ScreenPlayApp/qml/Create/WizardsFiles/" + QString("QmlProject.qmlproject"), qmlproject)) {
|
||||
qWarning() << "Could not write " << qmlproject;
|
||||
emit widgetCreationFinished(WizardResult::WriteLicenseFileError);
|
||||
return;
|
||||
|
@ -102,7 +102,7 @@ void ScreenPlayTest::import_convert_video()
|
||||
auto* createWallpaperInit = m_window->findChild<QQuickItem*>("createWallpaperInit");
|
||||
QVERIFY(createWallpaperInit);
|
||||
|
||||
const QString originalVideoPath = QString(SCREENPLAY_SOURCE_DIR) + "/ScreenPlay/assets/tests/video_import.mp4";
|
||||
const QString originalVideoPath = QString(SCREENPLAY_SOURCE_DIR) + "/Content/wallpaper_video_nebula_h264/mantissa.xyz_loop_072.mp4";
|
||||
qInfo() << originalVideoPath;
|
||||
|
||||
QVERIFY(QMetaObject::invokeMethod(createWallpaperInit,
|
||||
|
@ -46,7 +46,7 @@ set(QML
|
||||
qml/Wallpaper.qml
|
||||
qml/WebsiteWallpaper.qml)
|
||||
|
||||
set(RESOURCES dot.png qtquickcontrols2.conf index.html)
|
||||
set(RESOURCES qtquickcontrols2.conf index.html)
|
||||
|
||||
set(LIB_SOURCES)
|
||||
set(LIB_HEADER)
|
||||
|
@ -104,14 +104,6 @@ Rectangle {
|
||||
}
|
||||
}
|
||||
|
||||
ImageParticle {
|
||||
height: 16
|
||||
width: 16
|
||||
source: "dot.png"
|
||||
system: particleSystem
|
||||
opacity: root.imgOpacity
|
||||
}
|
||||
|
||||
Text {
|
||||
id: txtMousePos
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user