Skip to content

Commit 2b79347

Browse files
committed
Merge branch 'release/1.2.1'
2 parents 0391e27 + 04ee2a6 commit 2b79347

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v1.2.1 - 2017-04-05
2+
- Fix sysroot symlink creation
3+
- Update README with Qt Creator video
4+
15
v1.2.0 - 2017-03-29
26
- Add QtSvg module
37
- Add QtSerialPort module

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ You can fill a contact form from our [official website](https://www.neuronalmoti
1010

1111
## Difference between init-qtrpi-minimal and init-qtrpi-full
1212
* **init-qtrpi-minimal**, the typical way: downloads ready-to-use Qt binaries for the Raspberry Pi and a minimal sysroot that we released on the [official website](http://www.qtrpi.com/download)
13-
* **init-qtrpi-full**, the custom way: compiles on your computer the Qt binaries for the Raspberry Pi to let you tweak the configuration, enhance the compilation by adding some missing Qt moduless to QtRpi or add some specific third-party dependencies
13+
* **init-qtrpi-full**, the custom way: compiles on your computer the Qt binaries for the Raspberry Pi to let you tweak the configuration, enhance the compilation by adding some missing Qt modules to QtRpi or add some specific third-party dependencies
1414

1515
### Summary
1616
| | init-qtrpi-minimal | init-qtrpi-full |
@@ -61,7 +61,8 @@ You can now copy and execute the generated binary file on your Raspberry Pi
6161
Note: You can also add **/opt/qtrpi/bin/** to your `PATH` in your .bashrc and call **qmake-qtrpi** without the full path.
6262

6363
### Usage in Qt Creator
64-
*coming soon...*
64+
How to build a Raspberry Pi 3 application from your desktop Qt Creator (step by step video):
65+
[![Alt How to build a Raspberry Pi 3 application from your desktop Qt Creator](https://img.youtube.com/vi/1d2bh7iUKNc/0.jpg)](https://www.youtube.com/watch?v=1d2bh7iUKNc)
6566

6667
## Tutorial of init-qtrpi-full.sh
6768

utils/common.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ TARGET_DEVICE=${QTRPI_TARGET_DEVICE-'linux-rasp-pi2-g++'}
2020
QT_VERSION=${QTRPI_QT_VERSION-'5.7.0'}
2121
TARGET_HOST=$QTRPI_TARGET_HOST
2222
RASPBIAN_BASENAME='raspbian_latest'
23-
VERSION='1.2.0'
23+
VERSION='1.2.1'
2424

2525
DEVICE_NAME=$(device_name $TARGET_DEVICE)
2626

@@ -86,7 +86,7 @@ function download_sysroot_minimal() {
8686
curl $QTRPI_CURL_OPT -o $SYSROOT_ZIP $QTRPI_SYSROOT_URL
8787
if [[ "$INSTALL" = true ]]; then
8888
unzip -o $SYSROOT_ZIP
89-
$UTILS_DIR/utils/switch-sysroot.sh minimal
89+
$UTILS_DIR/switch-sysroot.sh minimal
9090
fi
9191
}
9292

0 commit comments

Comments
 (0)