{"id":14965041,"url":"https://github.com/washi1337/avaloniahex","last_synced_at":"2025-04-12T23:39:18.663Z","repository":{"id":228981072,"uuid":"771777982","full_name":"Washi1337/AvaloniaHex","owner":"Washi1337","description":"A hex editor control for Avalonia.","archived":false,"fork":false,"pushed_at":"2025-03-14T19:53:10.000Z","size":1443,"stargazers_count":94,"open_issues_count":0,"forks_count":7,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-04-12T23:39:13.322Z","etag":null,"topics":["avalonia","binary","control","hex-editor","visualization"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Washi1337.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-03-13T23:44:33.000Z","updated_at":"2025-04-05T08:29:49.000Z","dependencies_parsed_at":"2024-06-24T20:29:43.567Z","dependency_job_id":"74c3eb20-133b-4de9-b68e-e33d6de55cbc","html_url":"https://github.com/Washi1337/AvaloniaHex","commit_stats":{"total_commits":25,"total_committers":4,"mean_commits":6.25,"dds":0.12,"last_synced_commit":"ea46b75b14bddfde3988868bf8a88f76551bf271"},"previous_names":["washi1337/avaloniahex"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Washi1337%2FAvaloniaHex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Washi1337%2FAvaloniaHex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Washi1337%2FAvaloniaHex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Washi1337%2FAvaloniaHex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Washi1337","download_url":"https://codeload.github.com/Washi1337/AvaloniaHex/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248647255,"owners_count":21139081,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["avalonia","binary","control","hex-editor","visualization"],"created_at":"2024-09-24T13:34:08.304Z","updated_at":"2025-04-12T23:39:18.634Z","avatar_url":"https://github.com/Washi1337.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AvaloniaHex\n\nThis is a(n experimental) hex editor control for the [Avalonia](https://github.com/AvaloniaUI/Avalonia) UI framework.\n\n![](assets/demo.gif)\n\n\n## Features\n\n- Display binary data in hex, binary and ASCII.\n- Adjust the displayed bytes per line manually or automatically.\n- Modify binary documents in-place.\n- Specify invalid or inaccessible ranges. Useful for documents with \"gaps\" (e.g., memory views).\n- Many style customization options available with default Light and Dark themes.\n- Custom byte highlighting.\n- Support for memory mapped files.\n\n## Binaries\n\n- Stable: [NuGet](https://www.nuget.org/packages/AvaloniaHex)\n- Nightly: [AppVeyor](https://ci.appveyor.com/project/Washi1337/avaloniahex/build/artifacts)\n\n\n## Quick Start Guide\n\nAfter installing the `AvaloniaHex` dependency, add the default control styles to your `App.axaml`:\n\n```xml\n\u003cApplication xmlns=\"https://github.com/avaloniaui\" ... \u003e\n    \u003cApplication.Styles\u003e\n        ...\n        \u003cStyleInclude Source=\"avares://AvaloniaHex/Themes/Simple/AvaloniaHex.axaml\"/\u003e\n    \u003c/Application.Styles\u003e\n\u003c/Application\u003e\n```\n\nThen, add the `HexEditor` control to your window:\n\n```xml\n\u003cWindow\n    xmlns:avaloniaHex=\"clr-namespace:AvaloniaHex;assembly=AvaloniaHex\"\n    xmlns:rendering=\"clr-namespace:AvaloniaHex.Rendering;assembly=AvaloniaHex\"\n    ...\u003e\n    \n    \u003cavaloniaHex:HexEditor FontFamily=\"Cascadia Code,JetBrains Mono,Monospace,monospace\"\u003e\n        \u003c!-- Define columns to display --\u003e\n        \u003cavaloniaHex:HexEditor.Columns\u003e\n            \u003crendering:OffsetColumn /\u003e\n            \u003crendering:HexColumn /\u003e\n            \u003crendering:AsciiColumn /\u003e\n        \u003c/avaloniaHex:HexEditor.Columns\u003e\n    \u003c/avaloniaHex:HexEditor\u003e\n\n\u003c/Window\u003e\n```\n\nTo display a file in the control, assign the `Document` property:\n\n```csharp\nHexEditor editor = ...;\n\neditor.Document = new MemoryBinaryDocument(File.ReadAllBytes(@\"C:\\Path\\To\\File.bin\"));\n```\n\nSee [examples](examples) for more details.\n\n\n## License\n\nMIT","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwashi1337%2Favaloniahex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwashi1337%2Favaloniahex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwashi1337%2Favaloniahex/lists"}