Skip to content

Commit

Permalink
1.0.02.000
Browse files Browse the repository at this point in the history
Modulation property change wasn't updating oscilloscope; fixed.
  • Loading branch information
victimofleisure committed Sep 7, 2017
1 parent 9c79f9d commit a0e25f6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions PotterDraw/MainFrm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
05 01sep17 remove property help handler
06 05sep17 in OnUpdate, add spline special case
07 05sep17 fix pSender to match tests in OnUpdate
08 07sep17 fix modulation property change not updating oscilloscope
*/

Expand Down Expand Up @@ -925,6 +926,8 @@ LRESULT CMainFrame::OnPropertyChange(WPARAM wParam, LPARAM lParam)
CView *pSender = reinterpret_cast<CView *>(&m_wndModulationBar);
pDoc->UpdateAllViews(pSender, CPotterDrawDoc::HINT_MODULATION, &hint);
pDoc->SetModifiedFlag();
if (m_wndOscilloscopeBar.IsWindowVisible())
m_wndOscilloscopeBar.Update();
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions PotterDraw/PotterDraw.rc
Original file line number Diff line number Diff line change
Expand Up @@ -638,8 +638,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,0,1,0
PRODUCTVERSION 1,0,1,0
FILEVERSION 1,0,2,0
PRODUCTVERSION 1,0,2,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -656,12 +656,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Anal Software"
VALUE "FileDescription", "PotterDraw"
VALUE "FileVersion", "1.0.1.0"
VALUE "FileVersion", "1.0.2.0"
VALUE "InternalName", "PotterDraw.exe"
VALUE "LegalCopyright", "Copyleft 2017 Chris Korda"
VALUE "OriginalFilename", "PotterDraw.exe"
VALUE "ProductName", "PotterDraw"
VALUE "ProductVersion", "1.0.1.0"
VALUE "ProductVersion", "1.0.2.0"
END
END
BLOCK "VarFileInfo"
Expand Down
1 change: 1 addition & 0 deletions PotterDraw/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
00 12mar17 1.0.00.000
01 27jul17 1.0.00.001
02 05sep17 1.0.01.000
03 07sep17 1.0.02.000
DON'T FORGET TO CHANGE VERSION RESOURCE
Expand Down

0 comments on commit a0e25f6

Please sign in to comment.