Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 4 additions & 12 deletions appveyor.yml → .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,7 @@
#---------------------------------#

# version format
version: 1.5.{build}

# branches to build
branches:
# whitelist
only:
- master

# blacklist
except:
- gh-pages
version: 1.6.{build}

# Maximum number of concurrent jobs for the project
max_jobs: 1
Expand All @@ -29,7 +19,7 @@ max_jobs: 1
#---------------------------------#

# Build worker image (VM template)
os: Visual Studio 2019
os: Visual Studio 2022

#---------------------------------#
# build configuration #
Expand Down Expand Up @@ -59,3 +49,5 @@ after_build:

artifacts:
- path: vSMR-nightly.zip


2 changes: 2 additions & 0 deletions vSMR/CPDLCSettingsDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ CCPDLCSettingsDialog::CCPDLCSettingsDialog(CWnd* pParent /*=NULL*/)
, m_Logon(_T("EGKK"))
, m_Password(_T("PASSWORD"))
, m_Sound(1)
, m_AutoLogon(0)
{

}
Expand All @@ -29,6 +30,7 @@ void CCPDLCSettingsDialog::DoDataExchange(CDataExchange* pDX)
DDX_Text(pDX, IDC_LOGON, m_Logon);
DDX_Text(pDX, IDC_PASSWORD, m_Password);
DDX_Check(pDX, IDC_SOUND, m_Sound);
DDX_Check(pDX, IDC_AUTOLOGON, m_AutoLogon);
}


Expand Down
1 change: 1 addition & 0 deletions vSMR/CPDLCSettingsDialog.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ class CCPDLCSettingsDialog : public CDialogEx
CString m_Logon;
CString m_Password;
int m_Sound;
int m_AutoLogon;

// Dialog Data
enum { IDD = IDD_DIALOG2 };
Expand Down
Loading