-
Please, update information on the http://www.7-zip.org page. Or add clear information, that the newest version of the application can be downloaded from the https://sourceforge.net/projects/sevenzip page.
2009-10-29 10:38:38 UTC in 7-Zip
-
PasDoc is unable to parse constant defined in *strict private* section of class. I have tested both the PasDoc 0.11 and the PasDoc2 (checkout from the https://pasdoc.svn.sourceforge.net/svnroot/pasdoc/branches/PasDoc2).
Error is incorrectly detected in the line #56 of the attached file. This code is compiling without any hints or warnings (or errors) with Delphi 2007.
2009-10-26 19:05:18 UTC in pasdoc
-
I'm successfully using the latest version of the PopFile under Windows Vista Professional. Recently, during tracing execution of my application (I'm software developer) I found that PopFile is generating many error messages using OutputDebugString function.
I'm using TraceTool (http://tracetool.sourceforge.net) for monitoring my application. Below it is copied part of the very huge log...
2009-06-06 16:49:34 UTC in POPFile - Automatic Email Classification
-
I'm successfully using the latest version of the PopFile under Windows Vista Professional. Recently, during tracing execution of my application (I'm software developer) I found that PopFile is generating many error messages using OutputDebugString function.
I'm using TraceTool for monitoring my application. Below there is part of log generated by the PopFile:
18:41:06:764 popfile.exe Invalid...
2009-06-06 16:44:58 UTC in POPFile - Automatic Email Classification
-
Both http://flamerobin.org and http://www.flamerobin.org are currently accessible. But I think that some menu items are not correct. I understand that "Developer Pages" are available only for FlameRobin developers but "Roadmap" should be available for all visitors.
2008-10-03 16:39:44 UTC in FlameRobin
-
Error 404 while trying to open the http://www.flamerobin.org address.
The http://flamerobin.org/ address is working correctly.
2008-09-25 16:06:52 UTC in FlameRobin
-
Installer also should not change editor's options changed by user, including colour/font scheme for particular programming languages.
2008-03-23 17:13:51 UTC in Notepad++
-
The "GetPluralForm3PL" function is being used for translating texts into Polish, choosing the right form depending on the counter - in such functions like "ngettext" or "dngettext".
In Polish we have 3 different forms dependent on the counter.
1. counter = 1, for example "1 rekord"
2. last digit of counter is 2..4, except 12..14, for example "2 rekordy"
3. other cases, for example "5...
2008-02-04 19:02:10 UTC in GNU Gettext for Delphi, C++ and Kylix
-
Algorithm implemented in function "GetPluralForm3PL" is not correct.
Corrected function:
function GetPluralForm3PL(Number: Integer): Integer;
var
n1,n2:byte;
begin
Number:=abs(Number);
n1:=Number mod 10;
n2:=Number mod 100;
if Number=1 then Result:=0 // if n1=1 then Result:=0
else if (n1>=2) and (n1
2008-02-04 12:03:33 UTC in GNU Gettext for Delphi, C++ and Kylix
-
Both some editor's functions, and some plug-ins, has the clumsy - it's activating hot-key. In national keyboards (e.g. Polish, but not only Polish) right [Alt] is "visible" by Windows like left [Ctrl+Alt] and is designed for typing national characters. For example [Right_Alt+s], which is "visible" by Windows like [Left_Alt+Ctrl+s], is designed for typing Polish letter "ś". Analogically...
2007-06-01 16:32:34 UTC in Notepad++