View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0005703 | JEDI VCL | 04 Feature Request | public | 2011-11-05 20:22 | 2012-09-10 14:15 |
Reporter | akalwa | Assigned To | AHUser | ||
Priority | normal | Severity | feature | Reproducibility | N/A |
Status | resolved | Resolution | fixed | ||
Product Version | Daily / GIT | ||||
Target Version | Fixed in Version | 3.46 | |||
Summary | 0005703: Please add JVCL version information to IDE Splash Screen and Help/About items | ||||
Description | I think it could be helpful to display the JVCL version on the Delphi IDE splash screen and the Delphi IDE About box. I've attached a small patch to implement this feature. | ||||
Additional Information | JvCoreReg.pas procedure RegisterAboutBox; procedure RegisterSplashScreen; | ||||
Tags | No tags attached. | ||||
2011-11-05 20:22
|
JvCoreReg.pas.patch (1,035 bytes)
Index: JvCoreReg.pas =================================================================== --- JvCoreReg.pas (revision 13148) +++ JvCoreReg.pas (working copy) @@ -264,7 +264,7 @@ Supports(BorlandIDEServices,IOTAAboutBoxServices, AboutBoxServices); Assert(Assigned(AboutBoxServices), RsENoAboutServices); ProductImage := LoadBitmap(FindResourceHInstance(HInstance), 'JVCLSPLASH'); - AboutBoxIndex := AboutBoxServices.AddPluginInfo(RsAboutTitle, RsAboutDescription, + AboutBoxIndex := AboutBoxServices.AddPluginInfo(RsAboutTitle + ' ' + JVCL_VERSIONSTRING, RsAboutDescription, ProductImage, False, RsAboutLicenceStatus); end; @@ -284,7 +284,7 @@ begin Assert(Assigned(SplashScreenServices), RsENoSplashServices); ProductImage := LoadBitmap(FindResourceHInstance(HInstance), 'JVCLSPLASH'); - SplashScreenServices.AddPluginBitmap(RsAboutDialogTitle, ProductImage, + SplashScreenServices.AddPluginBitmap(RsAboutDialogTitle + ' ' + JVCL_VERSIONSTRING, ProductImage, False, RsAboutLicenceStatus); end; |
|
Patch applied with SVN revision 13149. |
Date Modified | Username | Field | Change |
---|---|---|---|
2011-11-05 20:22 | akalwa | New Issue | |
2011-11-05 20:22 | akalwa | File Added: JvCoreReg.pas.patch | |
2011-11-06 10:56 | AHUser | Note Added: 0019088 | |
2011-11-06 10:56 | AHUser | Status | new => resolved |
2011-11-06 10:56 | AHUser | Fixed in Version | => Daily / SVN |
2011-11-06 10:56 | AHUser | Resolution | open => fixed |
2011-11-06 10:56 | AHUser | Assigned To | => AHUser |
2012-09-10 14:15 | obones | Fixed in Version | Daily / SVN => 3.46 |