Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit f890c16

Browse filesBrowse files
committed
Updating Qt.
1 parent 3b1041e commit f890c16
Copy full SHA for f890c16

File tree

6 files changed

+7
-7
lines changed
Filter options

6 files changed

+7
-7
lines changed

‎.travis.yml

Copy file name to clipboardExpand all lines: .travis.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ language: csharp
22
mono: none
33
matrix:
44
include:
5-
- name: "Linux Qt 5.12.0"
5+
- name: "Linux Qt 5.15.1"
66
dotnet: 3.1
77
os: linux
88
dist: xenial
9-
- name: "OSX Qt 5.12.0"
9+
- name: "OSX Qt 5.15.1"
1010
dotnet: 3.1.300
1111
os: osx
1212
osx_image: xcode9.4

‎appveyor.yml

Copy file name to clipboardExpand all lines: appveyor.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
image: Visual Studio 2019
22
before_build:
3-
- ps: Invoke-WebRequest -Uri https://github.com/qmlnet/qt-runtimes/releases/download/releases/qt-5.12.2-ad0689c-win-x64-dev.tar.gz -OutFile C:\qmlnet-qt.tar.gz
3+
- ps: Invoke-WebRequest -Uri https://github.com/qmlnet/qt-runtimes/releases/download/releases/qt-5.15.1-7fc8b10-win-x64-dev.tar.gz -OutFile C:\qmlnet-qt.tar.gz
44
- cmd: 7z x C:\qmlnet-qt.tar.gz -oC:\
55
- cmd: 7z x C:\qmlnet-qt.tar -oC:\qmlnet-qt
66
- cmd: rm -r C:\Tools\GitVersion\

‎build/travis.linux.sh

Copy file name to clipboardExpand all lines: build/travis.linux.sh
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ QT_DIR=$SCRIPT_DIR/Qt
88
sudo apt-get install -y libgl1-mesa-dev
99

1010
mkdir -p $QT_DIR
11-
wget -O- -q https://github.com/qmlnet/qt-runtimes/releases/download/releases/qt-5.12.2-ad0689c-linux-x64-dev.tar.gz | tar xpz -C $QT_DIR
11+
wget -O- -q https://github.com/qmlnet/qt-runtimes/releases/download/releases/qt-5.15.1-7fc8b10-linux-x64-dev.tar.gz | tar xpz -C $QT_DIR
1212

1313
export PATH=$QT_DIR/qt/bin:$PATH
1414
export LD_LIBRARY_PATH=$TRAVIS_BUILD_DIR/src/native/output:$QT_DIR/qt/lib

‎build/travis.osx.sh

Copy file name to clipboardExpand all lines: build/travis.osx.sh
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ SCRIPT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
55
QT_DIR=$SCRIPT_DIR/Qt
66

77
mkdir -p $QT_DIR
8-
wget -O- -q https://github.com/qmlnet/qt-runtimes/releases/download/releases/qt-5.12.2-ad0689c-osx-x64-dev.tar.gz | tar xpz -C $QT_DIR
8+
wget -O- -q https://github.com/qmlnet/qt-runtimes/releases/download/releases/qt-5.15.1-7fc8b10-osx-x64-dev.tar.gz | tar xpz -C $QT_DIR
99

1010
export PATH=$QT_DIR/qt/bin:$PATH
1111
export DYLD_LIBRARY_PATH=$TRAVIS_BUILD_DIR/src/native/output:$QT_DIR/qt/lib

‎src/net/Qml.Net.Tests/RuntimeManagerTests.cs

Copy file name to clipboardExpand all lines: src/net/Qml.Net.Tests/RuntimeManagerTests.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public void Can_download_linux_runtime()
3535

3636
// Make sure the permissions are set correctly.
3737
var permissions = UnixFileSystemInfo
38-
.GetFileSystemEntry(Path.Combine(_tempDirectory, "qt", "lib", "libQt5Xml.so.5.12.2"))
38+
.GetFileSystemEntry(Path.Combine(_tempDirectory, "qt", "lib", "libQt5Xml.so.5.15.0"))
3939
.FileAccessPermissions;
4040
permissions.Should().Be(FileAccessPermissions.UserReadWriteExecute
4141
| FileAccessPermissions.GroupRead | FileAccessPermissions.GroupExecute

‎src/net/Qml.Net/QmlNetConfig.cs

Copy file name to clipboardExpand all lines: src/net/Qml.Net/QmlNetConfig.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace Qml.Net
44
{
55
public class QmlNetConfig
66
{
7-
public static string QtBuildVersion => "qt-5.12.2-ad0689c";
7+
public static string QtBuildVersion => "qt-5.15.1-7fc8b10";
88

99
public static bool ListenForExceptionsWhenInvokingTasks { get; set; }
1010

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.