From 80957a10718a922b11107587e65ae750ecb760c1 Mon Sep 17 00:00:00 2001 From: adelikat Date: Wed, 10 Jun 2015 22:32:47 +0000 Subject: [PATCH] Apple II - set status of core as released, add file extensions to the released version of the open rom filter, and add author info --- BizHawk.Client.EmuHawk/MainForm.cs | 3 ++- BizHawk.Emulation.Cores/Computers/AppleII/AppleII.cs | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index 2841eb1d93..ae41939cb9 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -1887,7 +1887,7 @@ namespace BizHawk.Client.EmuHawk } return FormatFilter( - "Rom Files", "*.nes;*.fds;*.sms;*.gg;*.sg;*.gb;*.gbc;*.gba;*.pce;*.sgx;*.bin;*.smd;*.gen;*.md;*.smc;*.sfc;*.a26;*.a78;*.lnx;*.col;*.rom;*.cue;*.ccd;*.sgb;*.z64;*.v64;*.n64;*.ws;*.wsc;*.xml;%ARCH%", + "Rom Files", "*.nes;*.fds;*.sms;*.gg;*.sg;*.gb;*.gbc;*.gba;*.pce;*.sgx;*.bin;*.smd;*.gen;*.md;*.smc;*.sfc;*.a26;*.a78;*.lnx;*.col;*.rom;*.cue;*.ccd;*.sgb;*.z64;*.v64;*.n64;*.ws;*.wsc;*.xml;*.dsk;*.do;*.po;%ARCH%", "Disc Images", "*.cue;*.ccd;*.m3u", "NES", "*.nes;*.fds;*.nsf;%ARCH%", "Super NES", "*.smc;*.sfc;*.xml;%ARCH%", @@ -1905,6 +1905,7 @@ namespace BizHawk.Client.EmuHawk "Savestate", "*.state", "Genesis", "*.gen;*.md;*.smd;*.bin;*.cue;*.ccd;%ARCH%", "WonderSwan", "*.ws;*.wsc;%ARCH%", + "Apple II", "*.dsk;*.do;*.po;%ARCH%", "All Files", "*.*"); } } diff --git a/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.cs b/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.cs index efd0f8aa2c..d08316861a 100644 --- a/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.cs +++ b/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.cs @@ -10,9 +10,9 @@ namespace BizHawk.Emulation.Cores.Computers.AppleII { [CoreAttributes( "Virtu", - "TODO", + "fool", isPorted: true, - isReleased: false + isReleased: true )] public partial class AppleII : IEmulator, IDriveLight {