From christos at zoulas.com Sun Oct 6 17:06:05 2024 From: christos at zoulas.com (Christos Zoulas) Date: Sun, 6 Oct 2024 13:06:05 -0400 Subject: [File] [PATCH] MAME input recording: limit strings to maximum lengths In-Reply-To: <20240917031807.187102-1-mikeonthecomputer@gmail.com> References: <20240917031807.187102-1-mikeonthecomputer@gmail.com> Message-ID: <0D6894AC-C99A-4851-8DDA-3C637826771E@zoulas.com> Fixed, thanks! christos > On Sep 16, 2024, at 11:18?PM, Mike Swanson wrote: > > Some driver names can fill up the full 12 bytes, and likewise MAME can > (especially from Git builds) fill up the entire 32 bytes of space in > the format header too. Trying only to read until a null byte is not > smart :-) > --- > magic/Magdir/games | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/magic/Magdir/games b/magic/Magdir/games > index e32c5e6f..beff0e4a 100644 > --- a/magic/Magdir/games > +++ b/magic/Magdir/games > @@ -143,8 +143,8 @@ >> 8 leqdate x at %s, >> 16 leshort x format version %d. >> 18 leshort x \b%d, > ->20 string x %s driver, > ->32 string x %s > +>20 string/12 x %s driver, > +>32 string/32 x %s > > # doom - submitted by Jon Dowland > > -- > 2.46.1 > > -- > File mailing list > File at astron.com > https://mailman.astron.com/mailman/listinfo/file -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 235 bytes Desc: Message signed with OpenPGP URL: From srl295 at gmail.com Mon Oct 14 15:25:06 2024 From: srl295 at gmail.com (Steven R. Loomis) Date: Mon, 14 Oct 2024 10:25:06 -0500 Subject: [File] [PATCH] Magdir/archive, Magdir/keyman - Keyman mime registration In-Reply-To: <25EB40BB-DC10-4C04-89CB-8725DA828D50@gmail.com> References: <25EB40BB-DC10-4C04-89CB-8725DA828D50@gmail.com> Message-ID: <9786F77E-7B01-4404-9CCC-AAEC4C4D934D@gmail.com> Hello, The keyman file types are now MIME registered. This updates the registration in the Magdir files. Also there was a bug where the extension for .kmx files wouldn?t show up, this is fixed. Regards, Steven -------------- next part -------------- A non-text attachment was scrubbed... Name: 0001-Add-keyman-registered-mime-types.patch Type: application/octet-stream Size: 1384 bytes Desc: not available URL: From christos at zoulas.com Thu Oct 17 19:23:26 2024 From: christos at zoulas.com (Christos Zoulas) Date: Thu, 17 Oct 2024 15:23:26 -0400 Subject: [File] [PATCH] Magdir/archive, Magdir/keyman - Keyman mime registration In-Reply-To: <9786F77E-7B01-4404-9CCC-AAEC4C4D934D@gmail.com> References: <25EB40BB-DC10-4C04-89CB-8725DA828D50@gmail.com> <9786F77E-7B01-4404-9CCC-AAEC4C4D934D@gmail.com> Message-ID: <9bd0eea7c495de5523a2cd1679e94b78@zoulas.com> On 2024-10-14 11:25 am, Steven R. Loomis wrote: > Hello, > The keyman file types are now MIME registered. This updates the > registration in the Magdir files. > Also there was a bug where the extension for .kmx files wouldn?t show > up, this is fixed. > > Regards, > > Steven Committed, thanks! christos