Nick Nevzorov

Results 14 issues of Nick Nevzorov

Hi Proposal: ``` _InlineItemData? _find(String name, bool field) { for (var data in dataList) { if (data.name == name && data.field == field) { return data; } } return null;...

zlib.encode does not working in web application ```dart import 'dart:io'; import 'dart:convert'; void main() { var str = "123"; print(utf8.decode(zlib.decode(zlib.encode(utf8.encode(str))))); } ``` `Exception: Uncaught (in promise) Error: Unsupported operation: _newZLibDeflateFilter`...

### Is there an existing issue for this? - [X] I have searched the existing issues. ### Which plugins are affected? Analytics ### Which platforms are affected? Web ### Description...

type: bug
plugin: analytics
platform: web
Needs Attention

Settings - Wallets and Addresses - Bitcoin - Import Addresses ![BTC](https://github.com/user-attachments/assets/1fcd9878-43e5-455f-bced-34892f03b70e) This function importing only legacy addresses (P2PKH). It will be greater if wee can select address type (Legacy ,...

Inserting new row in TZQuery posting data to database, but showing empty row in app problem in: ``` FRowsList.Add(FRowAccessor.RowBuffer); FRowAccessor.ClearBuffer(FInsertedRow, True); ``` After PostUpdates FRowAccessor.RowBuffer = FInsertedRow, and FRowAccessor.ClearBuffer(FInsertedRow, True);...

If SQL text changed in DoBeforeModifySQL, next updates using previsions prepared statement with old SQL text

Using odbc, in some cases in unprepare (resultset.close) raised exception in this code: ``` query.free; connection.free; ``` if exception raised in query.free, query is destroyed, but link with connection is...

CreateBlobStream with bWrite need to create with clear data For example standart Delphi code ``` constructor TClientBlobStream.Create(Field: TBlobField; Mode: TBlobStreamMode); begin FField := Field; FFieldNo := FField.FieldNo; FDataSet := FField.DataSet...

TZQuery does not generate a change of text blob field by TWideMemo->TWideMemoField when new string length small or equal to old value In TZVarVarLenDataRefStream need to override second Write method,...

I have a simple WebSocket server on Delphi. Connection from JS is working fine: ``` WebSocket demo client const socket = new WebSocket('ws://localhost:2335'); // Connection opened socket.addEventListener('open', function (event) {...

package:web_socket_channel