Activity for protobuf-delphi

  • protobuf-delphi protobuf-delphi updated /readme.txt

  • protobuf-delphi protobuf-delphi released /propbuf-delphi-1.12.zip

  • Marat Marat committed [r4]

    Version 1.12

  • Marat Marat committed [r3]

    1. Fixed bug with empty string

  • Marat Marat posted a comment on discussion Comments and suggestions

    There is no mistake. Unit tests work fine. Prior to this, the code was used in many projects. There was an error when working with an empty string. Commit was a very long time. For the current version, svn could not update the sources. I posted the current version in the form of an archive.

  • protobuf-delphi protobuf-delphi released /protobuf-delphi-1.11.zip

  • Marat Marat posted a comment on discussion General Discussion

    The project is alive while I'm alive. On the basis of this project, other projects for Delphi were launched. But I like my code more. In my mail, I do not look often. I updated my profile. Skype is installed and constantly working on my work computer and during the weekend I usually rest and at this time I can not answer. But there is a phone to which you can send SMS or call if you have something burning. I'll try to help you.

  • Marat Marat posted a comment on discussion General Discussion

    Денис, спасибо за найденную ошибку, в ближайшее время постараюсь исправить эту проблему. Извини, не сильно часто просматриваю свою почту. С уважением, Марат Denis, thanks for the error found, in the near future I will try to fix this problem. Sorry, I do not often look at my mail. Sincerely, Marat

  • Dennis Poon Dennis Poon posted a comment on discussion General Discussion

    I encountered problem with the following and made a suggestion: function TProtoBufInput.readString: AnsiString; var size: integer; begin size := readRawVarint32; Assert(size > 0, ProtoBufException + 'readString (size <= 0)'); //<--- sometimes, server will pass an empty string and it will cause exception. should change it to Size >= 0 instead. SetString(result, FBuffer + FPos, size); Inc(FPos, size); end; Seems, the author of this project won't respond to feeback anymore. This project seems dead!

  • Dennis Poon Dennis Poon posted a comment on discussion General Discussion

    should if be FPos <= FLen or FPos < FLen? Dennis

1
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.