Skip to content

Commit ff9a795

Browse files
ejaquayejaquay
andauthored
Change Vcc version numbering. (#145)
* Change Vcc version numbering. Release version is changed from Vcc-2.1.0.8 to Vcc-2.1.8.0 Version is changed in rc files for Vcc and the working DLL's Since this change is a bug fix the new version used is 2.1.8.1 Also add text to README.md to explain the version numbering and fix the version number in ReleaseNotes.txt * Forgot to change app title * Fix app title and update release notes Title change to VCC 2.1.8.1; Removed UTF chars from release notes --------- Co-authored-by: ejaquay <[email protected]>
1 parent 89806a9 commit ff9a795

File tree

10 files changed

+133
-50
lines changed

10 files changed

+133
-50
lines changed

FD502/fd502.rc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ END
130130
//
131131

132132
VS_VERSION_INFO VERSIONINFO
133-
FILEVERSION 2,0,3,0
134-
PRODUCTVERSION 2,0,3,0
133+
FILEVERSION 2,1,8,1
134+
PRODUCTVERSION 2,1,8,1
135135
FILEFLAGSMASK 0x3fL
136136
#ifdef _DEBUG
137137
FILEFLAGS 0x21L
@@ -149,7 +149,7 @@ BEGIN
149149
VALUE "Comments", "Tandy FD-502 with 4 Floppy Drives & RAW support"
150150
VALUE "CompanyName", "Bitrot Software"
151151
VALUE "FileDescription", "DiskController"
152-
VALUE "FileVersion", "2, 0, 3, 0"
152+
VALUE "FileVersion", "2.1.8.1"
153153
VALUE "InternalName", "DiskController"
154154
VALUE "LegalCopyright", "Copyright � 2010"
155155
VALUE "OriginalFilename", "fd502.dll"

GMC/GMC.rc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ END
5151
//
5252

5353
VS_VERSION_INFO VERSIONINFO
54-
FILEVERSION 1,0,0,0
55-
PRODUCTVERSION 1,0,0,0
54+
FILEVERSION 2,1,8,1
55+
PRODUCTVERSION 2,1,8,1
5656
FILEFLAGSMASK 0x3fL
5757
#ifdef _DEBUG
5858
FILEFLAGS 0x21L
@@ -69,7 +69,7 @@ BEGIN
6969
BEGIN
7070
VALUE "Comments", "Game Master Cartridge (SN76489)"
7171
VALUE "FileDescription", "GMC"
72-
VALUE "FileVersion", "1.0.0.0"
72+
VALUE "FileVersion", "2.1.8.1"
7373
VALUE "InternalName", "orch90"
7474
VALUE "LegalCopyright", "Copyright � 2019"
7575
VALUE "OriginalFilename", "gmc.dll"

HardDisk/harddisk.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ END
5454
//
5555

5656
VS_VERSION_INFO VERSIONINFO
57-
FILEVERSION 2,0,2,0
58-
PRODUCTVERSION 2,0,2,0
57+
FILEVERSION 2,1,8,1
58+
PRODUCTVERSION 2,1,8,1
5959
FILEFLAGSMASK 0x3fL
6060
#ifdef _DEBUG
6161
FILEFLAGS 0x21L
@@ -73,14 +73,14 @@ BEGIN
7373
VALUE "Comments", "Emulator Hard Disk Controller with 130Mb drive\0"
7474
VALUE "CompanyName", "BitRot Software.\0"
7575
VALUE "FileDescription", "Hard Disk\0"
76-
VALUE "FileVersion", "2, 0, 2, 0\0"
76+
VALUE "FileVersion", "2.1.8.1\0"
7777
VALUE "InternalName", "Hard Disk\0"
7878
VALUE "LegalCopyright", "Copyright � 2010\0"
7979
VALUE "LegalTrademarks", "\0"
8080
VALUE "OriginalFilename", "harddisk.dll\0"
8181
VALUE "PrivateBuild", "\0"
8282
VALUE "ProductName", "Vcc Module file\0"
83-
VALUE "ProductVersion", "2, 0, 2, 0\0"
83+
VALUE "ProductVersion", "2.1.8.1\0"
8484
VALUE "SpecialBuild", "RGB Hard Disk Controller\0"
8585
END
8686
END

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ VCC directly models the "stock" 128k Coco 3 and is expandable to many levels tha
1414

1515
We welcome all bug reports and suggestions. Post any bug reports and/or suggestions on the "Issues" page and we will be promptly notified. We do a "check list" of the issues page every-so-often to see if there's any "quick fixes" we can add while we are working on current changes. The VCC Developement Team is a small one and we work on this when we can as we all have lives and families, so VCC is NOT a priority but a hobby. Even being a hobby, it is also a work of love as we also use this software ourselves, so we try to make it as usable as possible. Sometimes progress is slow and it looks like nothing is going on (and it may not be), but usually, there's plenty going on behind the scenes and we have not committed our current work. Progress is slow, but progress is being made.
1616

17+
VCC version numbering in the past has been some what haphazard. In attempt to remedy this we have decided to codify the Vcc version numbering scheme as follows: The Vcc version number consists of "Vcc-" followed by 4 numbers seperated by dots, for example: "Vcc-2.1.8.1". The first number represents the "fork." Fork one is considered to be the original code from Joseph Forgeone. The current fork is "2". It promises to function on Windows XP and Windows 7 operating systems. We might want to add capabilitues that will not work on these older systems. If we do that we will create a third "fork." This will allow us to backport changes from fork 3 code back to fork 2. The second number represents a major version. It will be used if very significant changes are made in the way Vcc functions (not likely happen anytime soon). The third number represents normal releases, typically done one or two times per year. The fourth number represents bug fixes to the release. These are changes to VCC that correct errors and bugs in the intended functionality of the release. Binaries containing these changes will be updated in the affected release files.
1718

1819
# Compiling the VCC Sources
1920
Build Environment - Currently, VCC is compiled in C/C++ using "Microsoft Visual Studio 2015 Community", which is a free download from the MSDN downloads.

ReleaseNotes.txt

Lines changed: 34 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
1+
Vcc v2.1.8.1 Oct/2023 (2.1.8.0 bug fixes)
2+
o Fix version numbering - EJJ
3+
o Make dialogs stay on top and all DLL dialogs close when Vcc does. -EJJ
4+
o Fix command line quick load bug - EJJ
15

2-
Vcc v2.1.0.8 April/2023
6+
Vcc v2.1.0.8 (v2.1.8.0) Aug/2023
37
o Increase VSYNC IRQ delay so MAX-10 sees keystrokes.
48
o Corrected some 6309 register instruction issues found by Wally Z.
59
o Added RS232 Pak emulation (acia.dll) - EJ Jaquay
610
o Added pause function - James Rye
711
o Added execution trace feature to Vcc Debugger - Mike Rojas
812
o Fixed PMODE 4 color - James Rye, Mike Rojas
9-
o Improved windows mouse cursor position when shown - Chet Simpson
13+
o Improved windows mouse cursor position when shown - Chet Simpson
1014
o Minor Bug fixes
1115
o Updated Manual
1216

@@ -36,58 +40,58 @@ VCC v2.1.0d Jul/2021
3640
o Eliminated the "Allow Resize" checkbox - Bill Pierce
3741
o Reset a few "default" values that had gotten changed. - Bill Pierce
3842
o Add a "Custom KeyMap Editor" for making custom keymaps. - EJ Jaquay
39-
o Mapped "BREAK" to "F12" (as well as "ESCAPE") to facilitate using
43+
o Mapped "BREAK" to "F12" (as well as "ESCAPE") to facilitate using
4044
used by some games/applications. - Bill Pierce
4145
o Updated the Manual - Bill Pierce, EJ Jaquay
4246

4347
VCC v2.1.0c Jan/2021
44-
o Added 2nd Hard Drive EJ Jaquay
45-
o Fixed the ALT key problem EJ Jaquay
46-
o Added F3 & F4 for decreasing/increasing CPU speed Trey Tomes
47-
o Added Remember Screen Size to "Display" config. Saves screen size
48-
in vcc config init file James Rye & Bill Pierce
49-
o Added the Game Master Cart (GMC) by John Linville Chet Simpson
50-
o Fixed the border color bug James Rye
51-
o Updated Manual Bill Pierce
48+
o Added 2nd Hard Drive - EJ Jaquay
49+
o Fixed the ALT key problem - EJ Jaquay
50+
o Added F3 & F4 for decreasing/increasing CPU speed - Trey Tomes
51+
o Added "Remember Screen Size" to "Display" config. Saves screen size
52+
in vcc config init file - James Rye & Bill Pierce
53+
o Added the "Game Master Cart: (GMC) by John Linville - Chet Simpson
54+
o Fixed the border color bug - James Rye
55+
o Updated Manual - Bill Pierce
5256

5357
VCC v2.1.0b Nov/2020
54-
o Added Copy/Paste Edit menu items for copying text from VCC screen
58+
o Added "Copy/Paste" Edit menu items for copying text from VCC screen
5559
and pasting text into VCC. - James Rye.
5660
o Improved Composite Palettes (not fixed, WIP). - James Rye.
57-
o Fixed file paths so that each type of file; vhd, dsk, cas, rom,
58-
dll, etc. has its own pathlist - James Rye.
59-
o Added Flip Artifact Colors to the config menu. - James Rye.
60-
o Fixed Save Config and Load Config to the File” – EJ Jaquay.
61-
o Added Vcc command line argument to load custom *.ini files - EJ Jaquay
62-
o Updated manual Bill Pierce
61+
o Fixed "file paths" so that each type of file; vhd, dsk, cas, rom,
62+
dll, etc. has it's own pathlist - James Rye.
63+
o Added "Flip Artifact Colors" to the config menu. - James Rye.
64+
o Fixed "Save Config" and "Load Config" to the File menu - EJ Jaquay.
65+
o Added Vcc command line argument to load custom "*.ini" files - EJ Jaquay
66+
o Updated manual - Bill Pierce
6367

6468
VCC v2.1.0a Oct/2020
65-
o Fixed VCC ini file to save in user/home/appdata to avoid permissions
69+
o Fixed VCC "ini" file to save in "user/home/appdata" to avoid permissions
6670
problem in Win7-10. - James Rye
67-
o Fixed Force Aspect in all modes but full screen mode. - James Ross
71+
o Fixed "Force Aspect" in all modes but full screen mode. - James Ross
6872
o Updated manual to reflect changes.- Bill Pierce
6973

7074
VCC v2.0.1f Aug/2020
7175
o Improved PMODE artifact color scheme, - Peter Westburg
7276

7377
VCC v2.0.1e Dec/2019
74-
o Reverted exit bug fix as it caused VCC to hang in full screen mode
78+
o Reverted "exit bug" fix as it caused VCC to hang in full screen mode
7579

7680
VCC v2.0.1d Dec/2019
77-
o Added *.ccc to the program pak extensions.
78-
o Exit bug fixed.
79-
o Several cosmetic changes Bill Pierce.
81+
o Added "*.ccc" to the program pak extensions.
82+
o "Exit bug" fixed.
83+
o Several cosmetic changes - Bill Pierce.
8084

8185
VCC v.2.0.1c Dec/2019
82-
o Completed 6309 opcodes that were missing or incorrect Walter Zambotti.
83-
o Updated manual Bill Pierce
86+
o Completed 6309 opcodes that were missing or incorrect - Walter Zambotti.
87+
o Updated manual - Bill Pierce
8488

8589
VCC v2.0.1b June/2016
86-
o Several Edited releases under same versions.
87-
o Some cosmetic changes to dialogs.
90+
o Several "Edited" releases under same versions.
91+
o Some cosmetic changes to dialogs.
8892

8993
VCC v2.0.1b June/2016
90-
o Minor syntax changes to achieve working build for VS2015 Wes Gayle
94+
o Minor syntax changes to achieve working build for VS2015 - Wes Gayle
9195

9296
VCC v2.0.1a June/2016
93-
o Moved code to MS Visual Studio 2015 Community - Gary Coulborne
97+
o Moved code to MS Visual Studio 2015 Community - Gary Coulborne

Vcc.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -605,8 +605,8 @@ END
605605
//
606606

607607
VS_VERSION_INFO VERSIONINFO
608-
FILEVERSION 2,1,0,8
609-
PRODUCTVERSION 2,1,0,8
608+
FILEVERSION 2,1,8,1
609+
PRODUCTVERSION 2,1,8,1
610610
FILEFLAGSMASK 0x3fL
611611
#ifdef _DEBUG
612612
FILEFLAGS 0x29L
@@ -624,7 +624,7 @@ BEGIN
624624
VALUE "Comments", "How bored are you that your reading this?"
625625
VALUE "CompanyName", "Not Radio Shack"
626626
VALUE "FileDescription", "Vcc"
627-
VALUE "FileVersion", "2.1.0.8"
627+
VALUE "FileVersion", "2.1.8.1"
628628
VALUE "InternalName", "Poco"
629629
VALUE "LegalCopyright", "Copyright 2015 by BitRot Software"
630630
VALUE "LegalTrademarks", "BLAZEMONGER!"
@@ -732,7 +732,7 @@ END
732732

733733
STRINGTABLE
734734
BEGIN
735-
IDS_APP_TITLE "VCC 2.1.0.8 Tandy Color Computer 3 Emulator"
735+
IDS_APP_TITLE "VCC 2.1.8.1 Tandy Color Computer 3 Emulator"
736736
IDS_CATNUMBER "26-3334"
737737
END
738738

acia/acia.rc

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,46 @@ BEGIN
104104
END
105105
#endif // APSTUDIO_INVOKED
106106

107+
/////////////////////////////////////////////////////////////////////////////
108+
//
109+
// Version
110+
//
107111

112+
VS_VERSION_INFO VERSIONINFO
113+
FILEVERSION 2,1,8,1
114+
PRODUCTVERSION 2,1,8,1
115+
FILEFLAGSMASK 0x3fL
116+
#ifdef _DEBUG
117+
FILEFLAGS 0x21L
118+
#else
119+
FILEFLAGS 0x20L
120+
#endif
121+
FILEOS 0x40004L
122+
FILETYPE 0x2L
123+
FILESUBTYPE 0x0L
124+
BEGIN
125+
BLOCK "StringFileInfo"
126+
BEGIN
127+
BLOCK "040904b0"
128+
BEGIN
129+
VALUE "Comments", "Tandy Delux RS232 Pak"
130+
VALUE "CompanyName", "BitRot Software"
131+
VALUE "FileDescription", "acia"
132+
VALUE "FileVersion", "2.1.8.1"
133+
VALUE "InternalName", "SC6551 Interface"
134+
VALUE "LegalCopyright", "Copyright � 2023"
135+
VALUE "OriginalFilename", "acia.dll"
136+
VALUE "ProductName", "acia"
137+
VALUE "ProductVersion", "26-3124"
138+
VALUE "SpecialBuild", "Tandy Deluxe RS232 Pak"
139+
END
140+
END
141+
BLOCK "VarFileInfo"
142+
BEGIN
143+
VALUE "Translation", 0x409, 1200
144+
END
145+
END
146+
108147
/////////////////////////////////////////////////////////////////////////////
109148
//
110149
// AFX_DIALOG_LAYOUT

becker/becker.rc

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,45 @@ BEGIN
6565
EDITTEXT IDC_TCPHOST,74,14,105,12,ES_AUTOHSCROLL
6666
END
6767

68+
/////////////////////////////////////////////////////////////////////////////
69+
//
70+
// Version
71+
//
72+
73+
VS_VERSION_INFO VERSIONINFO
74+
FILEVERSION 2,1,8,1
75+
PRODUCTVERSION 2,1,8,1
76+
FILEFLAGSMASK 0x3fL
77+
#ifdef _DEBUG
78+
FILEFLAGS 0x21L
79+
#else
80+
FILEFLAGS 0x20L
81+
#endif
82+
FILEOS 0x40004L
83+
FILETYPE 0x2L
84+
FILESUBTYPE 0x0L
85+
BEGIN
86+
BLOCK "StringFileInfo"
87+
BEGIN
88+
BLOCK "040904b0"
89+
BEGIN
90+
VALUE "Comments", "Becker Port Interface"
91+
VALUE "CompanyName", "BitRot Software"
92+
VALUE "FileDescription", "becker"
93+
VALUE "FileVersion", "2.1.8.1"
94+
VALUE "InternalName", "Becker Port Interface"
95+
VALUE "LegalCopyright", "Copyright � 2007"
96+
VALUE "OriginalFilename", "becker.dll"
97+
VALUE "ProductName", "becker"
98+
VALUE "ProductVersion", "26-3124"
99+
VALUE "SpecialBuild", "Becker Port Interface"
100+
END
101+
END
102+
BLOCK "VarFileInfo"
103+
BEGIN
104+
VALUE "Translation", 0x409, 1200
105+
END
106+
END
68107

69108
/////////////////////////////////////////////////////////////////////////////
70109
//

mpi/mpi.rc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ END
100100
//
101101

102102
VS_VERSION_INFO VERSIONINFO
103-
FILEVERSION 1,3,0,1
104-
PRODUCTVERSION 1,3,0,1
103+
FILEVERSION 2,1,8,1
104+
PRODUCTVERSION 2,1,8,1
105105
FILEFLAGSMASK 0x3fL
106106
#ifdef _DEBUG
107107
FILEFLAGS 0x21L
@@ -119,7 +119,7 @@ BEGIN
119119
VALUE "Comments", "Tandy Multi-Pak Interface"
120120
VALUE "CompanyName", "BitRot Software"
121121
VALUE "FileDescription", "mpi"
122-
VALUE "FileVersion", "1.3.0.1"
122+
VALUE "FileVersion", "2.1.8.1"
123123
VALUE "InternalName", "MultiPak Interface"
124124
VALUE "LegalCopyright", "Copyright � 2007"
125125
VALUE "OriginalFilename", "mpi.dll"

orch90/orch90.rc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ END
5454
//
5555

5656
VS_VERSION_INFO VERSIONINFO
57-
FILEVERSION 1,3,0,0
58-
PRODUCTVERSION 1,3,0,0
57+
FILEVERSION 2,1,8,1
58+
PRODUCTVERSION 2,1,8,1
5959
FILEFLAGSMASK 0x3fL
6060
#ifdef _DEBUG
6161
FILEFLAGS 0x21L
@@ -73,7 +73,7 @@ BEGIN
7373
VALUE "Comments", "Tandy Orchestra 90-CC Stereo Sound Pak\0"
7474
VALUE "CompanyName", "BitRot Software.\0"
7575
VALUE "FileDescription", "Orchestra 90-CC \0"
76-
VALUE "FileVersion", "1, 3, 0, 0\0"
76+
VALUE "FileVersion", "2.1.8.1\0"
7777
VALUE "InternalName", "orch90\0"
7878
VALUE "LegalCopyright", "Copyright � 2006\0"
7979
VALUE "LegalTrademarks", "\0"

0 commit comments

Comments
 (0)