Skip to content

Commit

Permalink
Release 0.7.0.11
Browse files Browse the repository at this point in the history
----------------
Fixed trivial bug where the directory list is empty if the SD Card folder has no sub-folders.
  • Loading branch information
Daniel Tremblay committed Sep 27, 2024
1 parent 53451dc commit d178a46
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Main/Devices/SDCard/FakeFATSDCardDevice.cs
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ public void PrepareRootArea()


// Don't write a record for the root folder
if (dirCount == 0)
if (rootDirCount == 0)
{
string dirname = dirInfo.Name.Replace(" ", "").ToUpper();
if (dirname.Length < 8)
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.10")]
[assembly: AssemblyFileVersion("0.7.0.10")]
[assembly: AssemblyVersion("0.7.0.11")]
[assembly: AssemblyFileVersion("0.7.0.11")]
11 changes: 7 additions & 4 deletions Release Notes.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
Release 0.7.0.10
Release 0.7.0.11
----------------
Added handling of sub-folders in the SD Card device.
Moved the Revision Menu to left-align.

Fixed trivial bug where the directory list is empty if the SD Card folder has no sub-folders.
** 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 @@ -16,6 +14,11 @@ Moved the Revision Menu to left-align.
** TODO: Support two joysticks and allow for multiple joystick buttons
** TODO: Merge the flat memory PR - https://github.com/RetroPM/FoenixIDE

Release 0.7.0.10
----------------
Added handling of sub-folders in the SD Card device.
Moved the Revision Menu to left-align.

Release 0.7.0.9
---------------
PR #62: clandrew - Add --exec-breakpoint command line option for adding a breakpoint on launch.
Expand Down

0 comments on commit d178a46

Please sign in to comment.