diff --git a/LibDmd/Version.cs b/LibDmd/Version.cs index f17ebbd5b..495193e8c 100644 --- a/LibDmd/Version.cs +++ b/LibDmd/Version.cs @@ -8,8 +8,8 @@ namespace LibDmd { public class Version { - public const string AssemblyVersion = "1.5.2.0"; - public const string AssemblyFileVersion = "1.5.2.0"; - public const string AssemblyInformationalVersionAttribute = "1.5.2"; + public const string AssemblyVersion = "1.6.0.0"; + public const string AssemblyFileVersion = "1.6.0.0"; + public const string AssemblyInformationalVersionAttribute = "1.6.0"; } } diff --git a/README.md b/README.md index 6a66a5842..8dd0a5933 100644 --- a/README.md +++ b/README.md @@ -136,6 +136,7 @@ in the same folder as `VPinMAME.dll`. The options are described by block below. - `top` - Y-axis of the window position - `width` - Width of the DMD in monitor pixels - `height` - Height of the dmd in monitor pixels + - `dotsize` - Scale dot size. Use `0.8` for previous default setting - `[pindmd1]` Options for the 2-bit pinDMD display - `enabled` - If false, doesn't bother looking for a pinDMD1 - `[pindmd2]` Options for the 4-bit pinDMD2 display @@ -185,7 +186,7 @@ All options are documented in the tool. ``` C:\>dmdext -DMD Extensions v1.5.1 +DMD Extensions v1.6.0 USAGE: dmdext [] mirror Mirrors pixel data from the screen or memory to all available @@ -201,16 +202,23 @@ USAGE: dmdext [] ``` C:\>dmdext mirror --help -DMD Extensions v1.5.1 +DMD Extensions v1.6.0 USAGE: dmdext mirror --source= [--destination=] -s, --source Required. The source you want to retrieve DMD data - from. One of: [ pinballfx2, pinballarcade, - propinball, screen ]. + from. One of: [ pinballfx2, pinballfx3, + pinballarcade, propinball, screen ]. -f, --fps How many frames per second should be mirrored. Default: 25 + --idle-after Wait for number of milliseconds until clearing the + screen. Disable with 0. Default: 0. + + --idle-play Play this file while idleing instead of blank + screen. Supported formats: JPG, PNG, GIF. Animated + GIFs are supported. + --position [screen] Position and size of screen grabber source. Four values: . Default: "0 0 128 32". @@ -250,6 +258,8 @@ USAGE: dmdext mirror --source= [--destination=] and can be used for custom aspect ratio. Default: "0 0 1024". + --virtual-dotsize Scale the dot size of the virtual DMD. Default: 1 + -c, --color Sets the color of a grayscale source that is rendered on an RGB destination. Default: ff3000 @@ -266,6 +276,12 @@ USAGE: dmdext mirror --source= [--destination=] FX2 doesn't receive any frames anymore. Default: false + --quit-after Exit after n milliseconds. If set to -1, waits + indefinitely or until source finishes when -q used. + Default: -1 + + --no-clear Don't clear screen when quitting. Default: false. + -o, --output-to-file If set, writes all frames as PNG bitmaps to the provided folder. ``` @@ -275,7 +291,7 @@ USAGE: dmdext mirror --source= [--destination=] ``` C:\>dmdext play --help -DMD Extensions v1.5.1 +DMD Extensions v1.6.0 USAGE: dmdext play --file= [--destination=] -f, --file Required. Path to the file to play. Currently @@ -303,6 +319,8 @@ USAGE: dmdext play --file= [--destination=] and can be used for custom aspect ratio. Default: "0 0 1024". + --virtual-dotsize Scale the dot size of the virtual DMD. Default: 1 + -c, --color Sets the color of a grayscale source that is rendered on an RGB destination. Default: ff3000 @@ -319,6 +337,12 @@ USAGE: dmdext play --file= [--destination=] FX2 doesn't receive any frames anymore. Default: false + --quit-after Exit after n milliseconds. If set to -1, waits + indefinitely or until source finishes when -q used. + Default: -1 + + --no-clear Don't clear screen when quitting. Default: false. + -o, --output-to-file If set, writes all frames as PNG bitmaps to the provided folder. ``` @@ -327,7 +351,7 @@ USAGE: dmdext play --file= [--destination=] ``` C:\>dmdext test --help -DMD Extensions v1.5.1 +DMD Extensions v1.6.0 USAGE: dmdext test [--destination=] -d, --destination The destination where the DMD data is sent to. One @@ -352,6 +376,8 @@ USAGE: dmdext test [--destination=] and can be used for custom aspect ratio. Default: "0 0 1024". + --virtual-dotsize Scale the dot size of the virtual DMD. Default: 1 + -c, --color Sets the color of a grayscale source that is rendered on an RGB destination. Default: ff3000 @@ -368,6 +394,12 @@ USAGE: dmdext test [--destination=] FX2 doesn't receive any frames anymore. Default: false + --quit-after Exit after n milliseconds. If set to -1, waits + indefinitely or until source finishes when -q used. + Default: -1 + + --no-clear Don't clear screen when quitting. Default: false. + -o, --output-to-file If set, writes all frames as PNG bitmaps to the provided folder. ```