Skip to content

Commit fb6ac16

Browse files
committed
documentation update
Signed-off-by: Martin <Ho-Ro@users.noreply.github.com>
1 parent a00a0c1 commit fb6ac16

16 files changed

+91
-39
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ but David [stopped maintaining](https://github.com/OpenHantek/openhantek/issues/
6565
* Trigger filter *HF* (trigger also on glitches), *Normal* and *LF* (for noisy signals).
6666
* Display interpolation modes *Off*, *Linear*, *Step* and *Sinc*.
6767
* Calibration values loaded from eeprom or a model configuration file.
68-
* [Calibration program](https://github.com/Ho-Ro/Hantek6022API/blob/master/README.md#create-calibration-values-for-openhantek) to create these values automatically.
68+
* [Calibration program](https://github.com/Ho-Ro/Hantek6022API/blob/main/README.md#create-calibration-values-for-openhantek) to create these values automatically.
6969
* Digital phosphor effect to notice even short spikes; simple eye-diagram display with alternating trigger slope.
7070
* Histogram function for voltage channels on right screen margin.
7171
* A [zoom view](docs/images/screenshot_mainwindow_with_zoom.png) with a freely selectable range.
@@ -158,7 +158,7 @@ Please refer also to the [developer info](openhantek/developer_info.md).
158158
## Contribute
159159
We welcome any reported GitHub issue if you have a problem with this software. Send us a pull request for enhancements and fixes. Some random notes:
160160
- Read [how to properly contribute to open source projects on GitHub][10].
161-
- Create a separate branch other than *master* for your changes. It is not possible to directly commit to master on this repository.
161+
- Create a separate branch other than *main* for your changes. It is not possible to directly commit to main on this repository.
162162
- Write [good commit messages][11].
163163
- Use the same [coding style and spacing][13] -> install clang-format and use make target: `make format` or execute directly: `clang-format -style=file -i *.cpp *.h`.
164164
- It is mandatory that your commits are [Signed-off-by:][12], e.g. use git's command line option `-s` to append it automatically to your commit message:

cmake/CPackInfos.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ endif()
1717
# message( STATUS "VCS_REVISION: ${VCS_REVISION}" )
1818

1919
if(NOT DEFINED CMD_RESULT)
20-
set(VCS_BRANCH "master")
20+
set(VCS_BRANCH "main")
2121
set(GIT_COMMIT_HASH "1")
2222
set(VCS_REVISION "na")
2323
else()

docs/OpenHantek6022_User_Manual.odt

34 Bytes
Binary file not shown.

docs/OpenHantek6022_User_Manual.pdf

0 Bytes
Binary file not shown.

docs/adddevice.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,5 +78,5 @@ static ModelDSO2090 modelInstance;
7878

7979
## Example: New Device Model DSO-6021
8080
As an example for adding a new device you can check commit 77ba4ad and read about
81-
[adding the new model DSO-6021](https://github.com/Ho-Ro/Hantek6022API/blob/master/docs/DIY_6021/DIY_6021.md)
81+
[adding the new model DSO-6021](https://github.com/Ho-Ro/Hantek6022API/blob/main/docs/DIY_6021/DIY_6021.md)
8282
at my [firmware project](https://github.com/Ho-Ro/Hantek6022API).

docs/build.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -173,13 +173,17 @@ Hints for Visual Studio 2015/2017/2019 users:
173173
* Build for 64bit. 32bit builds theoretically work, but you are on your own then.
174174
* Use the **CMake GUI** to setup all required Qt include and library paths.
175175

176-
#### CI Build on appveyor
176+
#### CI Build on GitHub Actions
177177

178-
As I do not use Windows for development the building is done externally at the CI provider [appveyor.com](https://www.appveyor.com)
179-
who provides [these Windows environments](https://www.appveyor.com/docs/windows-images-software/).
180-
Please check also the file [appveyor.yml](https://github.com/OpenHantek/OpenHantek6022/blob/master/appveyor.yml) for info about the building process.
178+
As I do not use Windows for development the building is done externally by [GitHub Actions](https://github.com/OpenHantek/OpenHantek6022/actions)
179+
who provides [these Windows environments](https://github.com/actions/virtual-environments/blob/main/images/win/Windows2019-Readme.md).
180+
Please check also the file [build_check.yml](https://github.com/OpenHantek/OpenHantek6022/actions/workflows/build_check.yml) for info about the building process.
181181
Starting with the update to Visual Studio 2019 for the upcoming OpenHantek6022 version 3.2 only 64bit builds are provided.
182182

183+
Previously the building was done externally at the CI provider [appveyor.com](https://www.appveyor.com)
184+
who provided [these Windows environments](https://www.appveyor.com/docs/windows-images-software/).
185+
Please check also the file [appveyor.yml](https://github.com/OpenHantek/OpenHantek6022/blob/main/appveyor.yml) for info about the building process.
186+
183187
#### Microsoft Windows USB driver install (with Zadig)
184188

185189
The device specific USB driver shipped with the vendor software is not going to work.

docs/developer_info.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ The 2X..200X oversampling for slower sample rates is done here. Also overdriving
189189
In `Roll` mode the latest sample values are always put at the end of the result buffer while older samples move toward the beginning of the buffer,
190190
this rolls the displayed trace permanently to the left.
191191
The conversion uses either the factory calibration values from EEPROM or from a user supplied config file.
192-
Read more about [calibration](https://github.com/Ho-Ro/Hantek6022API/blob/master/README.md#create-calibration-values-for-openhantek).
192+
Read more about [calibration](https://github.com/Ho-Ro/Hantek6022API/blob/main/README.md#create-calibration-values-for-openhantek).
193193
* `searchTriggerPosition()`
194194
* Checks if the signal is triggered and calculates the starting point for a stable display.
195195
The time distance to the following opposite slope is measured and displayed as pulse width in the top row.

openhantek/src/OH_BUILD.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// Do not edit, will be re-created at each commit!
2-
#define OH_BUILD "20210412 build 0"
2+
#define OH_BUILD "20210413 - commit 880"

openhantek/src/mainwindow.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ MainWindow::MainWindow( HantekDsoControl *dsoControl, DsoSettings *settings, Exp
388388
QDesktopServices::openUrl( QUrl( "file://" + usrManualPath ) );
389389
else
390390
QDesktopServices::openUrl(
391-
QUrl( "https://github.com/OpenHantek/OpenHantek6022/blob/master/docs/OpenHantek6022_User_Manual.pdf" ) );
391+
QUrl( "https://github.com/OpenHantek/OpenHantek6022/blob/main/docs/OpenHantek6022_User_Manual.pdf" ) );
392392
} );
393393

394394
connect( ui->actionACmodification, &QAction::triggered, []() {
@@ -398,7 +398,7 @@ MainWindow::MainWindow( HantekDsoControl *dsoControl, DsoSettings *settings, Exp
398398
QDesktopServices::openUrl( QUrl( "file://" + ACmodPath ) );
399399
else
400400
QDesktopServices::openUrl(
401-
QUrl( "https://github.com/OpenHantek/OpenHantek6022/blob/master/docs/HANTEK6022_AC_Modification.pdf" ) );
401+
QUrl( "https://github.com/OpenHantek/OpenHantek6022/blob/main/docs/HANTEK6022_AC_Modification.pdf" ) );
402402
} );
403403

404404
connect( ui->actionAbout, &QAction::triggered, [this]() {

openhantek/src/selectdevice/selectsupporteddevice.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ SelectSupportedDevice::SelectSupportedDevice( QWidget *parent ) : QDialog( paren
3232
QDesktopServices::openUrl( QUrl( "file://" + usrManualPath ) );
3333
else
3434
QDesktopServices::openUrl(
35-
QUrl( "https://github.com/OpenHantek/OpenHantek6022/blob/master/docs/OpenHantek6022_User_Manual.pdf" ) );
35+
QUrl( "https://github.com/OpenHantek/OpenHantek6022/blob/main/docs/OpenHantek6022_User_Manual.pdf" ) );
3636
} );
3737
connect( ui->btnDemoMode, &QPushButton::clicked, [this]() { demoModeClicked = true; } );
3838
}
@@ -44,7 +44,7 @@ std::unique_ptr< ScopeDevice > SelectSupportedDevice::showSelectDeviceModal( lib
4444

4545
QString messageDeviceReady =
4646
tr( "<p><br/><b>The device is ready for use.</b></p><p>Please observe the "
47-
"<a href='https://github.com/OpenHantek/OpenHantek6022/blob/master/docs/OpenHantek6022_User_Manual.pdf'>"
47+
"<a href='https://github.com/OpenHantek/OpenHantek6022/blob/main/docs/OpenHantek6022_User_Manual.pdf'>"
4848
"user manual</a> for safe operation.</p>" );
4949

5050
QString messageNoDevices = tr( "<p>OpenHantek6022 is searching for compatible devices ...</p>"
@@ -65,7 +65,7 @@ std::unique_ptr< ScopeDevice > SelectSupportedDevice::showSelectDeviceModal( lib
6565
#endif
6666
messageNoDevices +=
6767
tr( "<p>Visit the build and run instruction "
68-
"<a href='https://github.com/OpenHantek/OpenHantek6022/blob/master/docs/build.md'>website</a> for help.</p>" );
68+
"<a href='https://github.com/OpenHantek/OpenHantek6022/blob/main/docs/build.md'>website</a> for help.</p>" );
6969
messageNoDevices += tr( "<hr/><p>Even without a device you can explore the program's function. "
7070
"Just press the <b>Demo Mode</b> button below.</p>" );
7171

openhantek/translations/openhantek_de.ts

+12-4
Original file line numberDiff line numberDiff line change
@@ -1755,9 +1755,8 @@
17551755
<translation>Demo-Modus</translation>
17561756
</message>
17571757
<message>
1758-
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="46"/>
17591758
<source>&lt;p&gt;&lt;br/&gt;&lt;b&gt;The device is ready for use.&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Please observe the &lt;a href=&apos;https://github.com/OpenHantek/OpenHantek6022/blob/master/docs/OpenHantek6022_User_Manual.pdf&apos;&gt;user manual&lt;/a&gt; for safe operation.&lt;/p&gt;</source>
1760-
<translation>&lt;p&gt;&lt;br/&gt;&lt;b&gt;Das Gerät ist bereit.&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Das &lt;a href=&apos;https://github.com/OpenHantek/OpenHantek6022/blob/master/docs/OpenHantek6022_User_Manual.pdf&apos;&gt;Benutzerhandbuch&lt;/a&gt; gibt Hinweise für den sicheren Gebrauch.&lt;/p&gt;</translation>
1759+
<translation type="vanished">&lt;p&gt;&lt;br/&gt;&lt;b&gt;Das Gerät ist bereit.&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Das &lt;a href=&apos;https://github.com/OpenHantek/OpenHantek6022/blob/master/docs/OpenHantek6022_User_Manual.pdf&apos;&gt;Benutzerhandbuch&lt;/a&gt; gibt Hinweise für den sicheren Gebrauch.&lt;/p&gt;</translation>
17611760
</message>
17621761
<message>
17631762
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="84"/>
@@ -1774,6 +1773,11 @@
17741773
<source>&lt;p&gt;OpenHantek6022 is searching for compatible devices ...&lt;/p&gt;&lt;p&gt;&lt;img align=&apos;right&apos; height=&apos;200&apos; src=&apos;qrc:///switch_6022BL.png&apos;&gt;Don&apos;t forget to switch your device into oscilloscope mode if it has multiple modes.&lt;/p&gt;</source>
17751774
<translation>&lt;p&gt;OpenHantek6022 sucht nach kompatiblen Geräten ...&lt;/p&gt;&lt;p&gt;&lt;img align=&apos;right&apos; height=&apos;150&apos; src=&apos;qrc:///switch_6022BL.png&apos;&gt;Bitte das Gerät in den Oszilloskop-Modus schalten, falls es mehrere Funktionen besitzt.&lt;/p&gt;</translation>
17761775
</message>
1776+
<message>
1777+
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="46"/>
1778+
<source>&lt;p&gt;&lt;br/&gt;&lt;b&gt;The device is ready for use.&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Please observe the &lt;a href=&apos;https://github.com/OpenHantek/OpenHantek6022/blob/main/docs/OpenHantek6022_User_Manual.pdf&apos;&gt;user manual&lt;/a&gt; for safe operation.&lt;/p&gt;</source>
1779+
<translation>&lt;p&gt;&lt;br/&gt;&lt;b&gt;Das Gerät ist bereit.&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Das &lt;a href=&apos;https://github.com/OpenHantek/OpenHantek6022/blob/main/docs/OpenHantek6022_User_Manual.pdf&apos;&gt;Benutzerhandbuch&lt;/a&gt; gibt Hinweise für den sicheren Gebrauch.&lt;/p&gt;</translation>
1780+
</message>
17771781
<message>
17781782
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="54"/>
17791783
<source>&lt;p&gt;Please make sure you have installed the windows usb driver correctly&lt;/p&gt;</source>
@@ -1784,6 +1788,11 @@
17841788
<source>&lt;p&gt;Please make sure you have copied the udev rules file to&lt;br/&gt;&lt;b&gt;%1&lt;/b&gt; or&lt;br/&gt;&lt;b&gt;%2&lt;/b&gt;&lt;br/&gt;for correct USB access permissions.&lt;/p&gt;</source>
17851789
<translation>&lt;p&gt;Bitte sicherstellen, dass eine udev-Regel nach&lt;br/&gt;&lt;b&gt;%1&lt;/b&gt; oder&lt;br/&gt;&lt;b&gt;%2&lt;/b&gt;&lt;br/&gt;kopiert wurde um den USB-Zugriff zu ermöglichen.&lt;/p&gt;</translation>
17861790
</message>
1791+
<message>
1792+
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="67"/>
1793+
<source>&lt;p&gt;Visit the build and run instruction &lt;a href=&apos;https://github.com/OpenHantek/OpenHantek6022/blob/main/docs/build.md&apos;&gt;website&lt;/a&gt; for help.&lt;/p&gt;</source>
1794+
<translation>&lt;p&gt;&lt;a href=&apos;https://github.com/OpenHantek/OpenHantek6022/blob/main/docs/build.md&apos;&gt;Informationen&lt;/a&gt; zur Erstellung des Programms.&lt;/p&gt;</translation>
1795+
</message>
17871796
<message>
17881797
<source>&lt;p&gt;Please make sure you have copied the udev rules file to&lt;br/&gt;&lt;b&gt;%1&lt;/b&gt; or&lt;br/&gt;&lt;b&gt;%2&lt;/b&gt; for correct USB access permissions.&lt;/p&gt;</source>
17891798
<translation type="vanished">&lt;p&gt;Bitte sicherstellen, dass eine udev-Regel nach&lt;br/&gt;&lt;b&gt;%1&lt;/b&gt; oder&lt;br/&gt;&lt;b&gt;%2&lt;/b&gt; kopiert wurde um den USB-Zugriff zu ermöglichen.&lt;/p&gt;</translation>
@@ -1793,9 +1802,8 @@
17931802
<translation type="vanished">&lt;p&gt;Bitte sicherstellen, dass eine udev-Regel nach &lt;b&gt;%1&lt;/b&gt; kopiert wurde um den USB-Zugriff zu ermöglichen.&lt;/p&gt;</translation>
17941803
</message>
17951804
<message>
1796-
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="67"/>
17971805
<source>&lt;p&gt;Visit the build and run instruction &lt;a href=&apos;https://github.com/OpenHantek/OpenHantek6022/blob/master/docs/build.md&apos;&gt;website&lt;/a&gt; for help.&lt;/p&gt;</source>
1798-
<translation>&lt;p&gt;&lt;a href=&apos;https://github.com/OpenHantek/OpenHantek6022/blob/master/docs/build.md&apos;&gt;Informationen&lt;/a&gt; zur Erstellung des Programms.&lt;/p&gt;</translation>
1806+
<translation type="vanished">&lt;p&gt;&lt;a href=&apos;https://github.com/OpenHantek/OpenHantek6022/blob/master/docs/build.md&apos;&gt;Informationen&lt;/a&gt; zur Erstellung des Programms.&lt;/p&gt;</translation>
17991807
</message>
18001808
<message>
18011809
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="69"/>

openhantek/translations/openhantek_es.ts

+12-4
Original file line numberDiff line numberDiff line change
@@ -1590,9 +1590,8 @@
15901590
<translation>Modo de demostración</translation>
15911591
</message>
15921592
<message>
1593-
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="46"/>
15941593
<source>&lt;p&gt;&lt;br/&gt;&lt;b&gt;The device is ready for use.&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Please observe the &lt;a href=&apos;https://github.com/OpenHantek/OpenHantek6022/blob/master/docs/OpenHantek6022_User_Manual.pdf&apos;&gt;user manual&lt;/a&gt; for safe operation.&lt;/p&gt;</source>
1595-
<translation>&lt;p&gt;&lt;br/&gt;&lt;b&gt;El dispositivo está listo para su uso.&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Lea con detenimiento el &lt;a href=&apos;https://github.com/OpenHantek/OpenHantek6022/blob/master/docs/OpenHantek6022_User_Manual.pdf&apos;&gt;manual del usuario&lt;/a&gt; para una operacion segura.&lt;/p&gt;</translation>
1594+
<translation type="vanished">&lt;p&gt;&lt;br/&gt;&lt;b&gt;El dispositivo está listo para su uso.&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Lea con detenimiento el &lt;a href=&apos;https://github.com/OpenHantek/OpenHantek6022/blob/master/docs/OpenHantek6022_User_Manual.pdf&apos;&gt;manual del usuario&lt;/a&gt; para una operacion segura.&lt;/p&gt;</translation>
15961595
</message>
15971596
<message>
15981597
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="84"/>
@@ -1609,6 +1608,11 @@
16091608
<source>&lt;p&gt;OpenHantek6022 is searching for compatible devices ...&lt;/p&gt;&lt;p&gt;&lt;img align=&apos;right&apos; height=&apos;200&apos; src=&apos;qrc:///switch_6022BL.png&apos;&gt;Don&apos;t forget to switch your device into oscilloscope mode if it has multiple modes.&lt;/p&gt;</source>
16101609
<translation>&lt;p&gt;OpenHantek6022 está buscando dispositivos compatibles...&lt;/p&gt;&lt;p&gt;&lt;img align=&apos;right&apos; height=&apos;200&apos; src=&apos;qrc:///switch_6022BL.png&apos;&gt;No olvide cambiar su dispositivo al modo osciloscopio si tiene múltiples modos.&lt;/p&gt;</translation>
16111610
</message>
1611+
<message>
1612+
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="46"/>
1613+
<source>&lt;p&gt;&lt;br/&gt;&lt;b&gt;The device is ready for use.&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Please observe the &lt;a href=&apos;https://github.com/OpenHantek/OpenHantek6022/blob/main/docs/OpenHantek6022_User_Manual.pdf&apos;&gt;user manual&lt;/a&gt; for safe operation.&lt;/p&gt;</source>
1614+
<translation>&lt;p&gt;&lt;br/&gt;&lt;b&gt;El dispositivo está listo para su uso.&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Lea con detenimiento el &lt;a href=&apos;https://github.com/OpenHantek/OpenHantek6022/blob/main/docs/OpenHantek6022_User_Manual.pdf&apos;&gt;manual del usuario&lt;/a&gt; para una operacion segura.&lt;/p&gt;</translation>
1615+
</message>
16121616
<message>
16131617
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="54"/>
16141618
<source>&lt;p&gt;Please make sure you have installed the windows usb driver correctly&lt;/p&gt;</source>
@@ -1619,6 +1623,11 @@
16191623
<source>&lt;p&gt;Please make sure you have copied the udev rules file to&lt;br/&gt;&lt;b&gt;%1&lt;/b&gt; or&lt;br/&gt;&lt;b&gt;%2&lt;/b&gt;&lt;br/&gt;for correct USB access permissions.&lt;/p&gt;</source>
16201624
<translation>&lt;p&gt;Asegúrese de que ha copiado las reglas udev en&lt;br/&gt;&lt;b&gt;%1&lt;/b&gt; o&lt;br/&gt;&lt;b&gt;%2&lt;/b&gt;&lt;br/&gt;para permisos de acceso USB correctos.&lt;/p&gt;</translation>
16211625
</message>
1626+
<message>
1627+
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="67"/>
1628+
<source>&lt;p&gt;Visit the build and run instruction &lt;a href=&apos;https://github.com/OpenHantek/OpenHantek6022/blob/main/docs/build.md&apos;&gt;website&lt;/a&gt; for help.&lt;/p&gt;</source>
1629+
<translation>&lt;p&gt;Visite las instrucciones de compilación y ejecución en el &lt;a href=&apos;https://github.com/OpenHantek/OpenHantek6022/blob/main/docs/build.md&apos;&gt;sitio web&lt;/a&gt; para más ayuda.&lt;/p&gt;</translation>
1630+
</message>
16221631
<message>
16231632
<source>&lt;p&gt;Please make sure you have copied the udev rules file to&lt;br/&gt;&lt;b&gt;%1&lt;/b&gt; or&lt;br/&gt;&lt;b&gt;%2&lt;/b&gt; for correct USB access permissions.&lt;/p&gt;</source>
16241633
<translation type="vanished">&lt;p&gt;Asegúrese de que ha copiado las reglas udev en&lt;br/&gt;&lt;b&gt;%1&lt;/b&gt; o&lt;br/&gt;&lt;b&gt;%2&lt;/b&gt; para permisos de acceso USB correctos.&lt;/p&gt;</translation>
@@ -1628,9 +1637,8 @@
16281637
<translation type="vanished">&lt;p&gt;Asegúrese de que ha copiado las reglas udev en &lt;b&gt;%1&lt;/b&gt; para permisos de acceso USB correctos.&lt;/p&gt;</translation>
16291638
</message>
16301639
<message>
1631-
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="67"/>
16321640
<source>&lt;p&gt;Visit the build and run instruction &lt;a href=&apos;https://github.com/OpenHantek/OpenHantek6022/blob/master/docs/build.md&apos;&gt;website&lt;/a&gt; for help.&lt;/p&gt;</source>
1633-
<translation>&lt;p&gt;Visite las instrucciones de compilación y ejecución en el &lt;a href=&apos;https://github.com/OpenHantek/OpenHantek6022/blob/master/docs/build.md&apos;&gt;sitio web&lt;/a&gt; para más ayuda.&lt;/p&gt;</translation>
1641+
<translation type="vanished">&lt;p&gt;Visite las instrucciones de compilación y ejecución en el &lt;a href=&apos;https://github.com/OpenHantek/OpenHantek6022/blob/master/docs/build.md&apos;&gt;sitio web&lt;/a&gt; para más ayuda.&lt;/p&gt;</translation>
16341642
</message>
16351643
<message>
16361644
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="69"/>

0 commit comments

Comments
 (0)