From: <tw...@us...> - 2024-09-10 21:09:29
|
Revision: 4309 http://sourceforge.net/p/gexperts/code/4309 Author: twm Date: 2024-09-10 21:09:27 +0000 (Tue, 10 Sep 2024) Log Message: ----------- updated urls, removed "experimental", added Egbert van Nes and Achim Kalwa to contributors Modified Paths: -------------- trunk/Documentation/Readme.txt trunk/Projects/GExperts_version.ini trunk/Source/Framework/GX_About.dfm trunk/Source/Framework/GX_About.pas Modified: trunk/Documentation/Readme.txt =================================================================== --- trunk/Documentation/Readme.txt 2024-09-10 16:23:14 UTC (rev 4308) +++ trunk/Documentation/Readme.txt 2024-09-10 21:09:27 UTC (rev 4309) @@ -1,13 +1,15 @@ GExperts 1.3 Open Source Programming Tools for Delphi and C++Builder -Source code, the FAQ, and the latest news are available at: +Source code, the FAQ, and the latest news are available at + https://gexperts.dummzeuch.de +additional (older) information at http://www.gexperts.org/ Please send all bug reports and suggestions using the feedback wizard -available in the GExperts about box. You may send other GExperts -related queries to the project leader at: - Erik Berry <eb...@ge...> or <eb...@te...> +available in the GExperts about box. For other GExperts related +queries use the GExperts subforum in Delphi Praxis at + https://en.delphipraxis.net/forum/31-gexperts/ INTRODUCTION @@ -25,6 +27,9 @@ GExperts contains numerous experts. See the online help (GExperts.chm) for information on the usage of the experts. +The source code formatter expert is based on DelForExp by Egbert van Nes +who contributed it to GExperts. +http://web.archive.org/web/20121115141650/http://www.aew.wur.nl/UK/Delforexp KNOWN LIMITATIONS/BUGS ----------------------------------------------- @@ -78,6 +83,10 @@ can also manually register the DLL with the IDE using the Windows registry editor (RegEdit.exe). Create a key similar to the following (the version number appearing before "\Experts\" is IDE dependent): +HKEY_CURRENT_USER\Software\Embarcadero\BDS\23.0\Experts\ (RAD Studio 12) +HKEY_CURRENT_USER\Software\Embarcadero\BDS\22.0\Experts\ (RAD Studio 11) +HKEY_CURRENT_USER\Software\Embarcadero\BDS\21.0\Experts\ (RAD Studio 10.4) +HKEY_CURRENT_USER\Software\Embarcadero\BDS\20.0\Experts\ (RAD Studio 10.3) HKEY_CURRENT_USER\Software\Embarcadero\BDS\19.0\Experts\ (RAD Studio 10.2) HKEY_CURRENT_USER\Software\Embarcadero\BDS\18.0\Experts\ (RAD Studio 10.1) HKEY_CURRENT_USER\Software\Embarcadero\BDS\17.0\Experts\ (RAD Studio 10) @@ -110,7 +119,7 @@ CHANGE LOG ---------------------- Sorry, I have not maintained the change log since I took over from -Eric Berry. There were many. I particular of course support for the +Eric Berry. There were many. In particular of course support for the latest released versions of RAD Studio / Delphi. -- Thomas Mueller Modified: trunk/Projects/GExperts_version.ini =================================================================== --- trunk/Projects/GExperts_version.ini 2024-09-10 16:23:14 UTC (rev 4308) +++ trunk/Projects/GExperts_version.ini 2024-09-10 21:09:27 UTC (rev 4309) @@ -11,7 +11,7 @@ [Version Info Keys] CompanyName=Thomas Mueller, Erik Berry and the GExperts Development Team ProductName=GExperts for Delphi -ProductVersion={MajorVer}.{MinorVer}.{Release} experimental {today} +ProductVersion={MajorVer}.{MinorVer}.{Release} {today} FileDescription=GExperts for Delphi InternalName=GExperts for Delphi OriginalFilename={ProjectName}.dll Modified: trunk/Source/Framework/GX_About.dfm =================================================================== --- trunk/Source/Framework/GX_About.dfm 2024-09-10 16:23:14 UTC (rev 4308) +++ trunk/Source/Framework/GX_About.dfm 2024-09-10 21:09:27 UTC (rev 4309) @@ -37,10 +37,10 @@ object lblWebPage: TLabel Left = 368 Top = 72 - Width = 147 + Width = 184 Height = 14 Alignment = taCenter - Caption = 'http://www.gexperts.org/' + Caption = 'https://gexperts.dummzeuch.de/' end object lblProjectLeader: TLabel Left = 275 @@ -175,6 +175,7 @@ 'Taz Higgins' 'Stefan Hoffmeister' 'Rick Hollerich' + 'Achim Kalwa' 'Per-Eric Larsson' 'Piotr Likus' 'Ray Lischner' @@ -182,6 +183,7 @@ 'Alex Petrov' 'Puthoon' 'Mahdi Safsafi' + 'Egbert van Nes' 'Martin Waldenburg') ParentCtl3D = False ReadOnly = True Modified: trunk/Source/Framework/GX_About.pas =================================================================== --- trunk/Source/Framework/GX_About.pas 2024-09-10 16:23:14 UTC (rev 4308) +++ trunk/Source/Framework/GX_About.pas 2024-09-10 21:09:27 UTC (rev 4309) @@ -74,8 +74,8 @@ GX_GenericUtils, GX_FeedbackWizard, GX_LibrarySource, GX_GetIdeVersion; const - DefaultBugEmail = 'bu...@ge...'; // Do not localize. - DefaultSuggestionEmail = 'sug...@ge...'; // Do not localize. + DefaultBugEmail = 'https://bugs.dummzeuch.de/'; // Do not localize. + DefaultSuggestionEmail = 'https://features.dummzeuch.de/'; // Do not localize. var BuildDetails: string = ''; BugEmail: string = DefaultBugEmail; @@ -307,19 +307,28 @@ class function TfmAbout.DoAddToAboutDialog: Integer; {$IFDEF GX_VER170_up} // Only Delphi 2005 and up support the about box services +const + Description = 'GExperts is a free set of tools built to increase the productivity of Delphi and C++Builder' + + ' programmers by adding several features to the IDE.' + + ' GExperts is developed as Open Source software and we encourage user contributions to the project.'#13#10 + + '(c) Thomas Mueller, Erik Berry and the GExperts Team'; var AboutBoxServices: IOTAAboutBoxServices; + DupeString: string; + Desc: string; begin + if GExpertsDllMarker = nil then begin + DupeString := ' (duplicate, inactive)'; + Desc := 'GExperts is listed twice in the IDE Experts list, so this instance is inactive.'#13#10 + + 'Use the Expert Manager to remove the duplicate!'; + end else + Desc := Description; Result := -1; - if Supports(BorlandIDEServices, IOTAAboutBoxServices, AboutBoxServices) then - begin + if Supports(BorlandIDEServices, IOTAAboutBoxServices, AboutBoxServices) then begin Result := AboutBoxServices.AddPluginInfo( - 'GExperts', - 'GExperts is a free set of tools built to increase the productivity of Delphi and C++Builder' - + ' programmers by adding several features to the IDE.' - + ' GExperts is developed as Open Source software and we encourage user contributions to the project.'#13#10 - + '(c) Erik Berry and the GExperts Team'#13#10 - + 'http://www.gexperts.org', + 'GExperts' + DupeString, + Desc + #13#10 + + 'https://gexperts.dummzeuch.de', GetAboutIcon, False, '', // leave this empty! This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |