2002.11: midnight release of 2002.11 had $slog_name and $log_name incorrect for split_display. Release has been updated. RESOLUTION : Download update of change log_name to log_file 2002.01: BUG#0016 : VHDL parsing for Ports doesn't handle missing spaces, ie: foo : in std_logic_vector(127 downto 0); -- Doesn't Work bar : in std_logic_vector( 127 downto 0); -- Works BUG#0015 : cv_tk.pl CPU Spin Problem. Sucks up CPU cycles even when sitting. RESOLUTION : None at this time. Need to timeout and insert sleep(0)s. BUG#0014 : generate_vhdl() 2nd calling uses comp name from 1st call. RESOLUTION : Insert the following at beginning of "sub hierarchy_solver" my %parent_of = (); # Fixed stale Mod name used on 2nd rtl_gen() BUG#0013 : port_map() doesnt ignore comments RESOLUTION : Dont have comments which include reserved words, etc. BUG#0012 : cv_tk.pl crashes if you exit a pop-up window using the Window Managers 'X' button. RESOLUTION : Close pop-ups by clicking inside the window, allowing cv_tk.pl to close it for you. Forcing the Window Manager to kill the pop-up is essentially killing cv_tk.pl. BUG#0011 : cv_tk.pl Issue list doesn't sort. RESOLUTION : None at this time. 2001.12: BUG#0010 : cv_win32.pl has problems with dialog boxes with line input after a tool selection. The key event repeats. RESOLUTION : Console Flush needed on Win32 platforms. Patch: Grep on the line: @event = $STDIN->Input(); # This waits for an event to happen And Add the following line immediately after it: $STDIN->Flush(); # Now flush that event so it doesnt mess next BUG#0009 : Pressing enter on an issue in Issue_List_View displays the wrong entry if database has been manually altered to remove entries. RESOLUTION : Scroll right to read issue description instead of pressing enter. BUG#0008 : Generated PDFs dont print from some version of Acroread. RESOLUTION : Apply the following patch: 6117-OLD: print pdf_file ($obj+1) . " 0 obj << /ProcSet [/PDF /Text /ImageC /ImageI] /Font << /F1 4 0 R /F2 5 0 R >> /XObject << /Im1 6 0 R >> /ExtGState << /GS1 7 0 R >> /ColorSpace << /Cs9 8 0 R >> >> endobj\n"; 6117-NEW: print pdf_file ($obj+1) . " 0 obj << /ProcSet [/PDF /Text ] /Font << /F1 4 0 R /F2 5 0 R >> /ExtGState << /GS1 7 0 R >> >> endobj\n"; 2001.11: BUG#0003 : Multiple users share the same log.txt file RESOLUTION : This is annoying and will be fixed in next release. Change will be to username_log.txt. BUG#0004 : CheckIns dont work from Win32 and ChipVault bails. RESOLUTION : Typo. Line 1753: $cmd = "rm $org_filename"; should be changed To: $cmd = "$rm_cmd $org_filename"; BUG#0005 : Mouse doesn't work on Win2K machines. RESOLUTION : This is an ActivePerl problem that I wasn't aware of. Mouse on Win32 apparently works for Win98, NT4 but not Win2K. BUG#0006 : Telnet from Windows to Solaris doesn't work. RESOLUTION : Line 3504: $tcap->Trequire(qw(cl cm cd)); Remove that 'cd' at the end, replace with null. BUG#0007 : Verilog hierarchy_solver() function stinks. Author is a VHDL designer, so Verilog support is severly lacking. RESOLUTION : Manually generate hlist.txt for your Verilog design if CV fails to read it in. 2001.10b: BUG#0001 : Text doesn't format correctly under cmdtool on Sun Solaris OS. RESOLUTION : Use xterm instead of cmdtool. cmdtool isn't POSIX terminal compliant. BUG#0002 : Batch Mode doesnt work. RESOLUTION : Oops. I accidentally disabled Batch Mode in the release. Simple to fix, in the following 3 lines, remove 1st #s from lines 1163,1164 and add a # in front of 1165. Sorry 'bout that. 1163 # if ( $batch_mode != 1 ) { $key_val = my_get_key(); } 1164 # else { $key_val = $k_cr ; } # Blast thru once and SeeYa 1165 $key_val = my_get_key();