This commit is contained in:
Wengier
2021-12-28 22:38:44 -05:00
parent f3caf64ebc
commit 9cf908d4c2
4 changed files with 12 additions and 11 deletions

View File

@@ -1,9 +1,4 @@
0.83.21 0.83.21
- Fix IPL1 partition choice debug message to actually
show the partition index chosen, not the -partidx
option variable, which if not given by the user, is
-1 and was reported as a very large unsigned
number. (joncampbell123)
- Improved clipboard copying & pasting for different - Improved clipboard copying & pasting for different
code pages including box-drawing characters in DBCS code pages including box-drawing characters in DBCS
code pages. Also, for the J-3100 mode, the selected code pages. Also, for the J-3100 mode, the selected
@@ -135,6 +130,11 @@
segment. It is once again possible to make Mac OS X segment. It is once again possible to make Mac OS X
ARM releases and to use dylib files from Brew doing ARM releases and to use dylib files from Brew doing
so. (joncampbell123) so. (joncampbell123)
- Fix IPL1 partition choice debug message to actually
show the partition index chosen, not the -partidx
option variable, which if not given by the user, is
-1 and was reported as a very large unsigned
number. (joncampbell123)
- Fixed command-line options -starttool & -startmapper - Fixed command-line options -starttool & -startmapper
not showing messages from specified language file not showing messages from specified language file
for Configuration Tool and Mapper Editor. (Wengier) for Configuration Tool and Mapper Editor. (Wengier)

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2011-2021 Jonathan Campbell --> <!-- Copyright 2011-2022 Jonathan Campbell -->
<component type="desktop"> <component type="desktop">
<id>com.dosbox_x.DOSBox-X</id> <id>com.dosbox_x.DOSBox-X</id>
<project_license>GPL-2.0</project_license> <project_license>GPL-2.0</project_license>
@@ -10,7 +10,7 @@
<category>Emulation</category> <category>Emulation</category>
</categories> </categories>
<releases> <releases>
<release version="@PACKAGE_VERSION@" date="2021-12-26"/> <release version="@PACKAGE_VERSION@" date="2021-12-28"/>
</releases> </releases>
<screenshots> <screenshots>
<screenshot type="default"> <screenshot type="default">

View File

@@ -1,4 +1,4 @@
/*auto-generated*/ /*auto-generated*/
#define UPDATED_STR "Dec 26, 2021 3:48:19pm" #define UPDATED_STR "Dec 28, 2021 10:34:45pm"
#define GIT_COMMIT_HASH "290e004" #define GIT_COMMIT_HASH "f3caf64"
#define COPYRIGHT_END_YEAR "2022" #define COPYRIGHT_END_YEAR "2022"

View File

@@ -7,6 +7,7 @@ my $hour = $t[2];
my $mday = $t[3]; my $mday = $t[3];
my $mon = $t[4] + 1; my $mon = $t[4] + 1;
my $year = $t[5] + 1900; my $year = $t[5] + 1900;
my $yearn = $year + ($mon == 12 && $mday == 31 ? 1 : 0);
my @months = qw( Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec ); my @months = qw( Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec );
@@ -19,7 +20,7 @@ open(X,">","include/build_timestamp.h") || die;
print X "/*auto-generated*/\n"; print X "/*auto-generated*/\n";
print X "#define UPDATED_STR \"$tmp\"\n"; print X "#define UPDATED_STR \"$tmp\"\n";
print X "#define GIT_COMMIT_HASH \"$commit\"\n"; print X "#define GIT_COMMIT_HASH \"$commit\"\n";
print X "#define COPYRIGHT_END_YEAR \"$year\"\n"; print X "#define COPYRIGHT_END_YEAR \"$yearn\"\n";
close(X); close(X);
# why perl.... # why perl....
@@ -34,7 +35,7 @@ while (my $line = <FILE>) {
if ($line =~ /date=/) { if ($line =~ /date=/) {
push @lines, (" <release version=\"\@PACKAGE_VERSION\@\" date=\"" . $year . "-" . $mon . "-" . $mday . "\"/>\n"); push @lines, (" <release version=\"\@PACKAGE_VERSION\@\" date=\"" . $year . "-" . $mon . "-" . $mday . "\"/>\n");
} elsif ($line =~ /<!-- Copyright/) { } elsif ($line =~ /<!-- Copyright/) {
push @lines, ("<!-- Copyright 2011-$year Jonathan Campbell -->\n"); push @lines, ("<!-- Copyright 2011-$yearn Jonathan Campbell -->\n");
} else { } else {
push @lines, $line; push @lines, $line;
} }