Skip to content

Commit

Permalink
Release 0.7.0.5
Browse files Browse the repository at this point in the history
===============
Updated the readme file to include the F256Ks.
Added a message box when a file referenced in bulk.csv is missing from kernel files.
  • Loading branch information
Daniel Tremblay committed Aug 7, 2024
1 parent dd2b33f commit 03c03c3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
2 changes: 2 additions & 0 deletions Main/FoenixSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,8 @@ public bool ResetCPU(string filename)
FileInfo testFile = new FileInfo(blockFile);
if (!testFile.Exists)
{
Console.WriteLine("File {0} was not found", split[1]);
MessageBox.Show("The file " + split[1] + " is specified in bulk.csv, but not present in the file system.", "Bulk.CSV File Missing", MessageBoxButtons.OK, MessageBoxIcon.Error);
info = testFile;
break;
}
Expand Down
4 changes: 2 additions & 2 deletions Main/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.7.0.4")]
[assembly: AssemblyFileVersion("0.7.0.4")]
[assembly: AssemblyVersion("0.7.0.5")]
[assembly: AssemblyFileVersion("0.7.0.5")]
12 changes: 7 additions & 5 deletions Release Notes.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
Release 0.7.0.4
Release 0.7.0.5
---------------
Fixed the joystick handler for the F256JR - this uses VIA0.
Changed default SD card settings to 64MB, 2048 byte, FAT32.
Handling the AltGr keyboard key as the back tick `.

** TODO: Users can now modify the CPU registers when in debug mode. The registers have a white background when editable.
** TODO: Implemented the various cursor modes and rates.
** TODO: Implement an IEC interface to connect via USB to XUM1541 (try using the SerialPort class?).
Expand All @@ -15,6 +11,12 @@ Handling the AltGr keyboard key as the back tick `.
** TODO: Try to sort out the issue with the character sets in non-unicode installation.
** TODO: Saving basic files to emulated SD card often doesn't work or crashes the emulator.

Release 0.7.0.4
---------------
Fixed the joystick handler for the F256JR - this uses VIA0.
Changed default SD card settings to 64MB, 2048 byte, FAT32.
Handling the AltGr keyboard key as the back tick `.

Release 0.7.0.3
---------------
Added Virtual Joystick support for the F256.
Expand Down

0 comments on commit 03c03c3

Please sign in to comment.