Merge branch 'master' of github.com:jankae/LibreVNA

This commit is contained in:
Jan Käberich 2022-06-23 17:52:34 +02:00
commit 794f55f1fb
5 changed files with 102 additions and 2 deletions

57
.github/ISSUE_TEMPLATE/bugreport.yaml vendored Normal file
View File

@ -0,0 +1,57 @@
name: Bug report
description: Create a report to spot probably hidden bugs :)
labels: ["bug :bug:"]
body:
- type: markdown
attributes:
value: |
**If you came here, we really appreciate your time in wanting to report a bug.**
Before actually start typing, please double check that there are not already existing
issues related to this bug, including open and closed.
- type: textarea
attributes:
label: LibreVNA Version
description: Go to LibreVNA app -> Help -> About menu and hit "To clipboard". Paste info in this field
placeholder: |
LibreVNA Version (64 bit): 1.3.0-d701ed64d
OS: Fedora Linux 36 (Workstation Edition)
CPU Arch: x86_64
validations:
required: true
- type: textarea
attributes:
label: Steps to reproduce
description: Describe the procedures to actually make the bug appears
placeholder: |
- LibreVNA app is launched
- LibreVNA device is connected throughout app
- When using VNA mode...
validations:
required: true
- type: textarea
attributes:
label: Expected behavior
description: What are the results you would expect
validations:
required: true
- type: textarea
attributes:
label: Extra information & Setup and Calibration files
description: Any information that you may find would be relevant and that doesn´t fit
in other fields
validations:
required: true
- type: checkboxes
attributes:
label: Confirming that you haven´t forgot to include configuration files (if applicable)
options:
- label: Setup file
- label: Calibration file
- label: Touchstone file of measurements

5
.github/ISSUE_TEMPLATE/config.yml vendored Normal file
View File

@ -0,0 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: Community support
url: https://groups.io/g/LibreVNA-support/
about: For general questions or discussions.

View File

@ -0,0 +1,37 @@
name: Feature request
description: Suggest new functionality
labels: ["feature ::sparkles:"]
body:
- type: markdown
attributes:
value: |
**If you came here, we really appreciate your time in wanting to discuss how a new
feature can be integrated.**
Before actually start typing, please double check that there are not already existing
issues related to this feature, including open and closed.
- type: textarea
attributes:
label: Summary
description: Describe what's the funcionality you aiming to suggest
validations:
required: true
- type: textarea
attributes:
label: Paths to implement it
description: Describe in which way your suggestion can be achieved
validations:
required: true
- type: textarea
attributes:
label: Extra information
description: Any information that you may find would be relevant and that doesn´t fit
in other fields
validations:
required: true

View File

@ -75,8 +75,6 @@ AppWindow::AppWindow(QWidget *parent)
, appVersion(APP_VERSION)
, appGitHash(APP_GIT_HASH)
{
qSetMessagePattern("%{time process}: [%{type}] %{message}");
// qDebug().setVerbosity(0);
qDebug() << "Application start";

View File

@ -17,6 +17,9 @@ static void tryExitGracefully(int s) {
#endif
int main(int argc, char *argv[]) {
qSetMessagePattern("%{time process}: [%{type}] %{message}");
app = new QApplication(argc, argv);
QCoreApplication::setOrganizationName("LibreVNA");
QCoreApplication::setApplicationName("LibreVNA-GUI");