1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-14 22:42:34 +02:00

WIP on master: 844215db Update steamSDK to 1.56

This commit is contained in:
Elias Steurer 2023-04-21 11:13:30 +02:00
commit e85c5ac6b6
26 changed files with 166 additions and 173 deletions

View File

@ -1,5 +1,6 @@
{
"recommendations": [
"sanaajani.taskrunnercode"
"sanaajani.taskrunnercode",
"delgan.qml-format"
]
}

View File

@ -14,7 +14,7 @@ namespace ScreenPlay {
class InstalledListFilter : public QSortFilterProxyModel {
Q_OBJECT
QML_UNCREATABLE("")
public:
InstalledListFilter(const std::shared_ptr<InstalledListModel>& ilm);

View File

@ -14,7 +14,7 @@ Item {
property Item modalSource
Component.onCompleted: {
StackView.onActivated: {
wizardContentWrapper.state = "in";
stackView.push("qrc:/qml/ScreenPlayApp/qml/Create/StartInfo.qml");
}

View File

@ -39,7 +39,7 @@ Item {
}
}
Component.onCompleted: {
StackView.onActivated: {
navWrapper.state = "in";
App.installedListFilter.sortBySearchType(SearchType.All);
checkIsContentInstalled();

View File

@ -76,19 +76,6 @@ Item {
SettingsHorizontalSeperator {
}
SettingBool {
headline: qsTr("High priority Autostart")
available: false
description: qsTr("This options grants ScreenPlay a higher autostart priority than other apps.")
isChecked: App.settings.highPriorityStart
onCheckboxChanged: {
App.settings.setHighPriorityStart(checked);
}
}
SettingsHorizontalSeperator {
}
SettingBool {
height: 70
headline: qsTr("Send anonymous crash reports and statistics")
@ -240,7 +227,7 @@ Item {
header: SettingsHeader {
id: headerPerformance
text: qsTr("Performance")
text: qsTr("Wallpaper and Widgets")
image: "qrc:/qml/ScreenPlayApp/assets/icons/icon_build.svg"
}
@ -249,22 +236,10 @@ Item {
anchors.margins: 20
spacing: 20
SettingBool {
headline: qsTr("Pause wallpaper video rendering while another app is in the foreground")
description: qsTr("We disable the video rendering (not the audio!) for the best performance. If you have problem you can disable this behaviour here. Wallpaper restart required!")
isChecked: App.settings.checkWallpaperVisible
onCheckboxChanged: function (checked) {
App.settings.setCheckWallpaperVisible(checked);
}
}
SettingsHorizontalSeperator {
}
SettingsComboBox {
id: cbVideoFillMode
headline: qsTr("Default Fill Mode")
headline: qsTr("Default Wallpaper Fill Mode")
description: qsTr("Set this property to define how the video is scaled to fit the target area.")
Component.onCompleted: {
cbVideoFillMode.comboBox.currentIndex = root.indexOfValue(cbVideoFillMode.comboBox.model, App.settings.videoFillMode);

View File

@ -24,6 +24,7 @@ set(QML_PLUGIN_SOURCES
src/ipaddress.cpp
src/ram.cpp
src/storage.cpp
src/audiolevel.cpp
src/sysinfo.cpp
src/uptime.cpp)
@ -35,6 +36,7 @@ set(QML_PLUGIN_HEADER
src/mathhelper.h
src/ram.h
src/storage.h
src/audiolevel.h
src/sysinfo.h
src/uptime.h)
@ -43,7 +45,8 @@ target_link_libraries(${PROJECT_NAME} PRIVATE Qt6::Core Qt6::Quick infoware)
target_include_directories(${PROJECT_NAME} PUBLIC src/)
if(WIN32)
target_link_libraries(${PROJECT_NAME} PRIVATE ole32.lib winmm.lib)
find_package(wil CONFIG REQUIRED)
target_link_libraries(${PROJECT_NAME} PRIVATE ole32.lib winmm.lib WIL::WIL)
endif()
qt_add_qml_module(

View File

@ -16,6 +16,10 @@ Window {
property string fontFamily: "Arial"
property int fontPointSize: 14
AudioLevel {
id: audioLevel
}
SysInfo {
id: sysInfo
}

View File

@ -1,8 +1,8 @@
// SPDX-License-Identifier: LicenseRef-EliasSteurerTachiom OR AGPL-3.0-only
#pragma once
#include <qobjectdefs.h>
#include <QtCore/qmetatype.h>
#include <QObject>
namespace ScreenPlay {
/*!
\namespace ScreenPlay::SearchType

View File

@ -20,7 +20,7 @@ ScreenPlay::WallpaperExitCode MacWindow::start()
// OSX Development workaround:
// This folder needs then to be copied into the .app/Contents/MacOS/
// for the deploy version.
m_window.engine()->addImportPath(QGuiApplication::instance()->applicationDirPath()+ "/qml");
m_window.engine()->addImportPath(QGuiApplication::instance()->applicationDirPath() + "/qml");
// WARNING: Setting Window flags must be called *here*!
Qt::WindowFlags flags = m_window.flags();

View File

@ -36,7 +36,7 @@ int main(int argc, char* argv[])
// If we start with only one argument (path, appID, type),
// it means we want to test a single widget
if (argumentList.length() == 1) {
//WidgetWindow spwmw("test", "appid", "qmlWidget", { 100, 100 }, true);
// WidgetWindow spwmw("test", "appid", "qmlWidget", { 100, 100 }, true);
QString exampleContentPath = QString(SCREENPLAY_SOURCE_DIR) + "/Content";
QStringList contentFolder = {

View File

@ -10,11 +10,12 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
find_package(
Qt6
COMPONENTS Core Quick QuickControls2
COMPONENTS Core Quick QuickControls2 QuickTest
REQUIRED)
set(QML
# cmake-format: sort
qml/tests/tst_profile.qml
qml/Background.qml
qml/Forum.qml
qml/Navigation.qml
@ -41,6 +42,7 @@ set(SOURCES
src/steamaccount.cpp
src/steamapiwrapper.cpp
src/steamqmlimageprovider.cpp
src/steamprofilepicture.cpp
src/steamworkshop.cpp
src/steamworkshopitem.cpp
src/steamworkshoplistmodel.cpp)
@ -52,6 +54,7 @@ set(HEADER
src/steamaccount.h
src/steamapiwrapper.h
src/steamqmlimageprovider.h
src/steamprofilepicture.h
src/steamworkshop.h
src/steamworkshopitem.h
src/steamworkshoplistmodel.h
@ -142,5 +145,16 @@ if(${SCREENPLAY_STEAM})
ScreenPlayUtilplugin
SteamSDK
SteamSDKQtEnums)
endif()
qt_add_executable(tst_ScreenPlayWorkshop_QTest src/QuickTestMain.cpp)
target_link_libraries(
tst_ScreenPlayWorkshop_QTest
PRIVATE Qt6::Quick
Qt6::QuickControls2
Qt6::QuickTest
${PROJECT_NAME}plugin
ScreenPlayUtilplugin
SteamSDK
SteamSDKQtEnums)
endif()
endif()

View File

@ -5,8 +5,6 @@ import QtQuick.Controls.Material
import Qt5Compat.GraphicalEffects
import ScreenPlayWorkshop
import ScreenPlayUtil
import ScreenPlayApp
import ScreenPlay
Popup {
id: root

View File

@ -8,12 +8,12 @@ import "upload/"
Item {
id: root
objectName: "WorkshopProfilePage"
property ScreenPlayWorkshop screenPlayWorkshop
property SteamWorkshop steamWorkshop
signal requestBack
Component.onCompleted: steamWorkshop.requestUserItems()
property StackView stackView
StackView.onActivated: steamWorkshop.requestUserItems()
Flickable {
id: scrollView
@ -39,28 +39,11 @@ Item {
verticalCenter: parent.verticalCenter
}
spacing: 20
SteamImage {
SteamProfilePicture {
id: avatar
width: 70
height: 70
Component.onCompleted: {
root.steamWorkshop.steamAccount.loadAvatar();
}
Connections {
function onAvatarChanged(_avatar) {
avatar.setImage(_avatar);
avatarPlaceholder.opacity = 0;
}
target: root.steamWorkshop.steamAccount
}
Image {
id: avatarPlaceholder
anchors.fill: parent
source: "qrc:/qml/ScreenPlayWorkshop/assets/images/steam_default_avatar.png"
}
}
Text {
@ -71,7 +54,9 @@ Item {
Button {
text: qsTr("Back")
onClicked: root.requestBack()
onClicked: {
stackView.pop();
}
}
}
}

View File

@ -44,15 +44,6 @@ Item {
StackView {
id: stackView
property int duration: 300
Connections {
target: stackView.currentItem
ignoreUnknownSignals: true
function onRequestBack() {
stackView.pop();
}
}
anchors.fill: parent
replaceEnter: Transition {
OpacityAnimator {

View File

@ -15,7 +15,7 @@ Item {
property SteamWorkshop steamWorkshop
property Background background
Component.onCompleted: {
StackView.onActivated: {
root.state = "searching";
root.steamWorkshop.searchWorkshopByText("");
}
@ -239,6 +239,7 @@ Item {
Button {
id: btnSteamProfile
objectName: "btnSteamProfile"
anchors {
verticalCenter: parent.verticalCenter
@ -251,7 +252,8 @@ Item {
onClicked: {
stackView.push("qrc:/qml/ScreenPlayWorkshop/qml/SteamProfile.qml", {
"screenPlayWorkshop": root.screenPlayWorkshop,
"steamWorkshop": root.steamWorkshop
"steamWorkshop": root.steamWorkshop,
"stackView": root.stackView
});
}
}
@ -270,7 +272,8 @@ Item {
onClicked: {
stackView.push("qrc:/qml/ScreenPlayWorkshop/qml/upload/UploadProject.qml", {
"screenPlayWorkshop": root.screenPlayWorkshop,
"steamWorkshop": root.steamWorkshop
"steamWorkshop": root.steamWorkshop,
"stackView": root.stackView
});
}
}
@ -287,43 +290,44 @@ Item {
leftMargin: 20
verticalCenter: parent.verticalCenter
}
ToolButton {
icon.source: "qrc:/qml/ScreenPlayWorkshop/assets/icons/icon_search.svg"
onClicked: {
root.state = "searching";
root.steamWorkshop.searchWorkshopByText(tiSearch.text);
}
icon.width: 20
icon.height: 20
anchors {
left: parent.left
leftMargin: -3
bottom: parent.bottom
bottomMargin: 3
}
}
TextField {
id: tiSearch
placeholderTextColor: Material.secondaryTextColor
placeholderText: qsTr("Search for Wallpaper and Widgets...")
// WORKAROUND:
// onEditingFinished causes internal qml layout crash in Qt 6.4
Keys.onReturnPressed: event => {
event.accepted = true;
tiSearch.searchWorkshop();
}
// WORKAROUND:
// onEditingFinished causes internal qml layout crash in Qt 6.4
Timer {
id: timer
interval: 300
repeat: false
onTriggered: tiSearch.searchWorkshop()
}
onTextEdited: timer.restart()
function searchWorkshop() {
if (root.state === "searching") {
print("SEARCHING");
return;
}
root.state = "searching";
print("EDITING FINISHED", root.state);
if (tiSearch.text === "")
return root.steamWorkshop.searchWorkshop(SteamEnums.K_EUGCQuery_RankedByTrend);
root.steamWorkshop.searchWorkshopByText(tiSearch.text);
if (tiSearch.text === "") {
Qt.callLater(function () {
root.steamWorkshop.searchWorkshop(SteamEnums.K_EUGCQuery_RankedByTrend);
});
return;
}
Qt.callLater(function () {
root.steamWorkshop.searchWorkshopByText(tiSearch.text);
});
}
leftInset: -20
leftPadding: 20
anchors {
top: parent.top
right: parent.right
@ -333,20 +337,29 @@ Item {
}
}
ToolButton {
icon.source: "qrc:/qml/ScreenPlayWorkshop/assets/icons/icon_close.svg"
property bool hasContent: tiSearch.text.length > 0
icon.source: hasContent ? "qrc:/qml/ScreenPlayWorkshop/assets/icons/icon_close.svg" : "qrc:/qml/ScreenPlayWorkshop/assets/icons/icon_search.svg"
onClicked: {
if (hasContent) {
root.state = "searching";
tiSearch.clear();
Qt.callLater(function () {
root.steamWorkshop.searchWorkshop(SteamEnums.K_EUGCQuery_RankedByTrend);
});
return;
}
root.state = "searching";
tiSearch.text = "";
root.steamWorkshop.searchWorkshop(SteamEnums.K_EUGCQuery_RankedByTrend);
Qt.callLater(function () {
root.steamWorkshop.searchWorkshopByText(tiSearch.text);
});
}
enabled: tiSearch.text !== ""
icon.width: 20
icon.height: 20
anchors {
right: parent.right
rightMargin: -3
rightMargin: 0
bottom: parent.bottom
bottomMargin: 3
bottomMargin: 0
}
}
}

View File

@ -3,6 +3,7 @@ import QtQuick.Layouts
import QtQuick.Controls
import QtQuick.Controls.Material
import ScreenPlayWorkshop
import QtTest
Window {
id: root
@ -14,6 +15,7 @@ Window {
root.Material.theme = Material.Dark;
}
ScreenPlayWorkshop {
id: screenPlayWorkshop
Component.onCompleted: {

View File

@ -9,8 +9,7 @@ Item {
property ScreenPlayWorkshop screenPlayWorkshop
property SteamWorkshop steamWorkshop
signal requestBack
property StackView stackView
Item {
id: headerWrapper
@ -109,7 +108,7 @@ Item {
text: qsTr("Abort")
onClicked: {
root.requestBack();
stackView.pop();
}
anchors {

View File

@ -14,6 +14,9 @@ SteamAccount::SteamAccount(QObject* parent)
void SteamAccount::loadAvatar()
{
if (!m_avatar.isNull()) {
return;
}
int largeFriendAvatarHandle = SteamFriends()->GetLargeFriendAvatar(m_steamID);
// Returns 0 if no avatar is set for the user.
@ -43,40 +46,33 @@ void SteamAccount::loadAmountSubscribedItems()
void SteamAccount::onAvatarImageLoaded(AvatarImageLoaded_t* avatarImage)
{
// If called from another steam app
if (m_avatarLoaded)
return;
const int largeFriendAvatarHandle = SteamFriends()->GetLargeFriendAvatar(m_steamID);
if (largeFriendAvatarHandle <= 0) {
qWarning() << "onAvatarImageLoaded: getLargeFriendAvatarResult retunred: " << largeFriendAvatarHandle;
qWarning() << "onAvatarImageLoaded: GetLargeFriendAvatar returned: " << largeFriendAvatarHandle;
return;
}
uint32 width = 0;
uint32 height = 0;
if (!SteamUtils()->GetImageSize(avatarImage->m_iImage, &width, &height)) {
qWarning() << "Failed GetImageSize";
const bool sizeRetrieved = SteamUtils()->GetImageSize(avatarImage->m_iImage, &width, &height);
if (!sizeRetrieved) {
qWarning() << "onAvatarImageLoaded: Failed to get image size";
return;
}
const int size = width * height * 4;
QVector<uint8> imageData;
imageData.resize(size);
if (!SteamUtils()->GetImageRGBA(avatarImage->m_iImage, imageData.data(), size)) {
qWarning() << "Failed to load image buffer from callback";
const int imageSize = width * height * 4;
QVector<uint8> imageData(imageSize);
const bool imageRetrieved = SteamUtils()->GetImageRGBA(avatarImage->m_iImage, imageData.data(), imageSize);
if (!imageRetrieved) {
qWarning() << "onAvatarImageLoaded: Failed to load image buffer from callback";
return;
}
QImage avatar {
imageData.data(),
static_cast<int>(width),
static_cast<int>(height),
QImage::Format_RGBA8888
};
const QImage avatar { imageData.data(), static_cast<int>(width), static_cast<int>(height), QImage::Format_RGBA8888 };
setAvatar(avatar);
m_avatarLoaded = true;
}

View File

@ -11,17 +11,16 @@
#include "steamapiwrapper.h"
namespace SteamApiWrapper {
bool setItemTags(const QVariant& updateHandle, const QStringList tags)
bool setItemTags(const QVariant& updateHandle, const QStringList& tags)
{
SteamParamStringArray_t* pTags = new SteamParamStringArray_t();
const uint32 strCount = tags.size();
pTags->m_ppStrings = new const char*[strCount];
pTags->m_nNumStrings = strCount;
for (uint32 i = 0; i < strCount; i++) {
pTags->m_ppStrings[i] = tags.at(i).toUtf8().data();
auto pTags = std::make_unique<SteamParamStringArray_t>();
const uint32_t numTags = tags.size();
pTags->m_nNumStrings = numTags;
auto tagStrings = std::make_unique<const char*[]>(numTags);
for (uint32_t i = 0; i < numTags; ++i) {
tagStrings[i] = tags.at(i).toUtf8().constData();
}
return SteamUGC()->SetItemTags(updateHandle.toULongLong(), pTags);
pTags->m_ppStrings = tagStrings.get();
return SteamUGC()->SetItemTags(updateHandle.toULongLong(), pTags.get());
}
}

View File

@ -37,9 +37,14 @@ void SteamWorkshopItem::checkUploadProgress()
if (progress > 0.0f && progress < 1.0f)
setUploadProgress((progress * 100));
}
void SteamWorkshopItem::uploadItemToWorkshop(CreateItemResult_t* pCallback, bool bIOFailure)
{
if (!pCallback) {
qWarning() << "Invalid CreateItemResult_t pointer";
emit removeThis(this);
return;
}
if (pCallback->m_bUserNeedsToAcceptWorkshopLegalAgreement) {
emit userNeedsToAcceptWorkshopLegalAgreement();
}
@ -87,7 +92,7 @@ void SteamWorkshopItem::uploadItemToWorkshop(CreateItemResult_t* pCallback, bool
QString youtube;
if (jsonObject.contains("youtube")) {
language = jsonObject.value("youtube").toString();
youtube = jsonObject.value("youtube").toString();
}
if (!youtube.isEmpty()) {
@ -132,21 +137,21 @@ void SteamWorkshopItem::uploadItemToWorkshop(CreateItemResult_t* pCallback, bool
m_UGCUpdateHandle = SteamUGC()->StartItemUpdate(m_appID, pCallback->m_nPublishedFileId);
QVector<QByteArray> tagByteArray;
QVector<const char*> tagCharArray;
for (const auto& tag : tags) {
if (tag.length() > 255) {
qInfo() << "Skip to long tag (max 255) " << tag << " with length:" << tag.length();
qInfo() << "Skip too long tag (max 255):" << tag;
continue;
}
tagByteArray.append(tag.toUtf8());
pTags->m_ppStrings[i] = tagByteArray.at(i).data();
qInfo() << tag.toStdString().c_str() << pTags->m_ppStrings[i];
i++;
tagCharArray.append(tag.toUtf8());
}
pTags->m_nNumStrings = count;
bool success = SteamUGC()->SetItemTags(m_UGCUpdateHandle, pTags);
qInfo() << "SetItemTags" << success;
pTags->m_nNumStrings = tagCharArray.count();
pTags->m_ppStrings = tagCharArray.data();
bool success = SteamUGC()->SetItemTags(m_UGCUpdateHandle, pTags);
if (!success) {
qWarning() << "Failed to set item tags";
}
SteamUGC()->AddItemPreviewFile(m_UGCUpdateHandle, QByteArray(preview.toUtf8()).data(), EItemPreviewType::k_EItemPreviewType_Image);
SteamUGC()->SetItemTitle(m_UGCUpdateHandle, QByteArray(title.toUtf8().data()));
SteamUGC()->SetItemDescription(m_UGCUpdateHandle, QByteArray(description.toUtf8()).data());
@ -159,6 +164,11 @@ void SteamWorkshopItem::uploadItemToWorkshop(CreateItemResult_t* pCallback, bool
saveWorkshopID();
SteamAPICall_t apicall = SteamUGC()->SubmitItemUpdate(m_UGCUpdateHandle, nullptr);
if (apicall == k_uAPICallInvalid) {
qWarning() << "Failed to submit item update";
return;
}
m_submitItemUpdateResultResult.Set(apicall, this, &SteamWorkshopItem::submitItemUpdateStatus);
m_updateTimer.start(m_updateTimerInterval);
}

View File

@ -94,37 +94,39 @@ public slots:
m_uploadListModelItems.clear();
endResetModel();
}
void append(const QString& name, const QString& path, const quint64 appID)
{
auto item = std::make_unique<SteamWorkshopItem>(name, path, appID);
const auto roles = QVector<int> {
static_cast<int>(UploadListModelRole::UploadProgressRole),
static_cast<int>(UploadListModelRole::NameRole),
static_cast<int>(UploadListModelRole::AbsolutePreviewImagePath),
static_cast<int>(UploadListModelRole::Status)
};
const auto onDataChanged = [&]() {
emit this->dataChanged(index(0, 0), index(rowCount() - 1, 0), roles);
};
QObject::connect(item.get(), &SteamWorkshopItem::userNeedsToAcceptWorkshopLegalAgreement, this, &UploadListModel::userNeedsToAcceptWorkshopLegalAgreement);
QObject::connect(item.get(), &SteamWorkshopItem::uploadProgressChanged, this, onDataChanged);
QObject::connect(item.get(), &SteamWorkshopItem::nameChanged, this, onDataChanged);
QObject::connect(item.get(), &SteamWorkshopItem::absolutePreviewImagePathChanged, this, onDataChanged);
QObject::connect(item.get(), &SteamWorkshopItem::uploadComplete, this, [=](bool successful) {
onDataChanged();
});
QObject::connect(item.get(), &SteamWorkshopItem::statusChanged, this, [=](ScreenPlayWorkshopSteamEnums::EResult status) {
onDataChanged();
QObject::connect(item.get(), &SteamWorkshopItem::uploadProgressChanged, this, [this]() {
emit this->dataChanged(index(0, 0), index(rowCount() - 1, 0), QVector<int> { static_cast<int>(UploadListModelRole::UploadProgressRole) });
});
QObject::connect(item.get(), &SteamWorkshopItem::nameChanged, this, [this]() {
emit this->dataChanged(index(0, 0), index(rowCount() - 1, 0), QVector<int> { static_cast<int>(UploadListModelRole::NameRole) });
});
QObject::connect(item.get(), &SteamWorkshopItem::absolutePreviewImagePathChanged, this, [this]() {
emit this->dataChanged(index(0, 0), index(rowCount() - 1, 0), QVector<int> { static_cast<int>(UploadListModelRole::AbsolutePreviewImagePath) });
});
QObject::connect(item.get(), &SteamWorkshopItem::uploadComplete, this, [this](bool successful) {
emit this->dataChanged(index(0, 0), index(rowCount() - 1, 0), QVector<int> { static_cast<int>(UploadListModelRole::AbsolutePreviewImagePath) });
});
QObject::connect(item.get(), &SteamWorkshopItem::statusChanged, this, [this](ScreenPlayWorkshopSteamEnums::EResult status) {
emit this->dataChanged(index(0, 0), index(rowCount() - 1, 0), QVector<int> { static_cast<int>(UploadListModelRole::Status) });
bool allItemsUploaded = std::all_of(m_uploadListModelItems.cbegin(), m_uploadListModelItems.cend(), [](const auto& item) {
const auto status = item->status();
return status == ScreenPlayWorkshopSteamEnums::EResult::K_EResultOK || status == ScreenPlayWorkshopSteamEnums::EResult::K_EResultFail;
});
// Check if all items are
for (const auto& item : m_uploadListModelItems) {
qDebug() << "item->status() " << item->status();
if (!(item->status() != ScreenPlayWorkshopSteamEnums::EResult::K_EResultOK
|| item->status() != ScreenPlayWorkshopSteamEnums::EResult::K_EResultFail)) {
return;
}
if (allItemsUploaded) {
emit this->uploadCompleted();
}
emit this->uploadCompleted();
});
beginInsertRows(QModelIndex(), rowCount(), rowCount());

View File

@ -7,7 +7,7 @@ choco pack
Install the generated nupkg:
```
choco install screenplay.0.15.0-RC5.nupkg -dv -s .
choco install screenplay.0.15.0-RC6.nupkg -dv -s .
```
Set api key from [https://community.chocolatey.org/account](https://community.chocolatey.org/account):
@ -17,5 +17,5 @@ choco apikey --key AAAAAAAA-AAAA-AAAA-AAAA-AAAAAAAA --source https://push.chocol
Psuh:
```
choco push screenplay.0.15.0-RC5.nupkg --source https://push.chocolatey.org/
choco push screenplay.0.15.0-RC6.nupkg --source https://push.chocolatey.org/
```

View File

@ -26,7 +26,7 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
<!-- version should MATCH as closely as possible with the underlying software -->
<!-- Is the version a prerelease of a version? https://docs.nuget.org/create/versioning#creating-prerelease-packages -->
<!-- Note that unstable versions like 0.0.1 can be considered a released version, but it's possible that one can release a 0.0.1-beta before you release a 0.0.1 version. If the version number is final, that is considered a released version and not a prerelease. -->
<version>0.15.0-RC5</version>
<version>0.15.0-RC6</version>
<packageSourceUrl>https://gitlab.com/kelteseth/ScreenPlay/-/tree/master/Tools/chocolatey/ScreenPlay</packageSourceUrl>
<!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. -->
<owners>Elias Steurer</owners>

View File

@ -2,7 +2,7 @@
$ErrorActionPreference = 'Stop';
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url = ''
$url64 = 'https://kelteseth.com/releases/0.15.0-RC5/ScreenPlay-0.15.0-RC5-x64-windows-release.zip'
$url64 = 'https://kelteseth.com/releases/0.15.0-RC6/ScreenPlay-0.15.0-RC6-x64-windows-release.zip'
$packageArgs = @{
packageName = $env:ChocolateyPackageName

View File

@ -20,10 +20,10 @@ elif sys.platform == "linux":
SCREENPLAY_VERSION = "0.15.0-RC6"
QT_PATH = path = Path(os.path.join(os.path.realpath(__file__), "../../../aqt")).resolve()
QT_VERSION = "6.5.0"
QT_VERSION = "6.6.0"
QT_BIN_PATH = QT_PATH.joinpath(f"{QT_VERSION}/{QT_PLATFORM}/bin")
QT_TOOLS_PATH = QT_PATH.joinpath("Tools/")
QT_IFW_VERSION = "4.5"
VCPKG_VERSION = "1cc9525" # Master 15.02.2023
VCPKG_VERSION = "b81bc3a" # Master 25.03.2023
PYTHON_EXECUTABLE = "python" if sys.platform == "win32" else "python3"
FFMPEG_VERSION = "5.0.1"

View File

@ -117,6 +117,7 @@ def main():
vcpkg_command = "vcpkg.exe"
vcpkg_packages_list.append("infoware[d3d]")
vcpkg_packages_list.append("sentry-native[transport]")
vcpkg_packages_list.append("wil")
platform_command = commands_list()
platform_command.add("bootstrap-vcpkg.bat", vcpkg_path, False)
vcpkg_triplet = ["x64-windows"]