File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 134
134
$splashwidth = ` identify -format '%w ' images/splash/splash-$newmajor .$newminor .png` ;
135
135
print " WARNING: Splash images/splash/splash-$newmajor .$newminor .png is $splashwidth pixels wide - will be rescaled\n " if $splashwidth != 600;
136
136
pod2usage(" NSIS image ms-windows/Installer-Files/WelcomeFinishPage-$newmajor .$newminor .bmp not found" ) unless -r " ms-windows/Installer-Files/WelcomeFinishPage-$newmajor .$newminor .bmp" ;
137
+ my $welcomeformat = ` identify -format '%wx%h %m ' ms-windows/Installer-Files/WelcomeFinishPage-$newmajor .$newminor .bmp` ;
138
+ pod2usage(" NSIS Image ms-windows/Installer-Files/WelcomeFinishPage-$newmajor .$newminor .bmp mis-sized [$welcomeformat vs. 164x314 BMP3]" ) unless $welcomeformat =~ / ^164x314 / ;
137
139
}
138
140
139
141
print " Last pull rebase...\n " ;
177
179
} else {
178
180
run( " cp -v images/splash/splash-$newmajor .$newminor .png images/splash/splash.png" , " splash png switch failed" );
179
181
}
180
- run( " cp -v ms-windows/Installer-Files/WelcomeFinishPage-$newmajor .$newminor .bmp ms-windows/Installer-Files/WelcomeFinishPage.bmp" , " installer bitmap switch failed" );
182
+ run( " convert -resize 164x314 ms-windows/Installer-Files/WelcomeFinishPage-$newmajor .$newminor .bmp BMP3: ms-windows/Installer-Files/WelcomeFinishPage.bmp" , " installer bitmap switch failed" );
181
183
182
184
if ( -f " images/splash/splash-release.xcf.bz2" ) {
183
185
run( " cp -v images/splash/splash-$newmajor .$newminor .xcf.bz2 images/splash/splash.xcf.bz2" , " splash xcf switch failed" );
You can’t perform that action at this time.
0 commit comments