Search found 1252 matches
- 27 Sep 2020 21:21
- Forum: Feature and Enhancement Requests
- Topic: Information and Request Regarding Accessibility
- Replies: 1
- Views: 654
Re: Information and Request Regarding Accessibility
I have tried the usual Ctrl+Tab to change the focus to other tabs, but this does not work as expected. That's how switching between files should work. To switch between the hex and text section inside a file, just use Tab. It could be NVDA gets confused by the hex column, due to the way and order i...
- 27 Sep 2020 21:10
- Forum: Feature and Enhancement Requests
- Topic: Run as administrator
- Replies: 3
- Views: 501
Re: Run as administrator
I considered implementing such a feature, but this is non-trivial due to arbitrarily large file support. Also when disk editing, changes are kept in memory until saving on purpose (otherwise you have yet again to make sure you don't write on the disk you are editing, causing yet again odd inconsiste...
- 16 Sep 2020 09:22
- Forum: Support
- Topic: How can i reset options.
- Replies: 1
- Views: 664
Re: How can i reset options.
The config file is under %AppData%\Mael Horz\HxD Hex Editor . Just delete the ini file, not the lang file, to reset your options. For the portable, it is in the Settings sub-directory next to the HxD.exe. P.S.: Config files are not deleted by setup-programs by default, since they are stored on a per...
- 13 Aug 2020 11:54
- Forum: Support
- Topic: Checksum method
- Replies: 1
- Views: 895
Re: Checksum method
Sorry for the late reply, I was away. It corresponds to CRC-32 04C11DB7 <crc-32> as found under: http://protocoltool.sourceforge.net/CRC%20list.html The source code is not related, but they should produce the same results. Or see the CRC-32 entry here (polynomial 0x04C11DB7): https://en.wikipedia.or...
- 07 Jul 2020 09:02
- Forum: Bug Reports
- Topic: Fixed: HxD crashes at startup - pointer truncation error
- Replies: 7
- Views: 2419
Re: HxD crashes at startup
Good to know. This was a pointer truncation error and the fix will be officially available in the next minor release.
- 06 Jul 2020 13:39
- Forum: Bug Reports
- Topic: Fixed: HxD crashes at startup - pointer truncation error
- Replies: 7
- Views: 2419
Re: HxD crashes at startup
Hi, are you using the 64-bit version of HxD?
If yes, please let me know if this development version fixes the error:
https://mh-nexus.de/downloads/HxDDevel.zip
If yes, please let me know if this development version fixes the error:
https://mh-nexus.de/downloads/HxDDevel.zip
- 30 Jun 2020 15:54
- Forum: Support
- Topic: Fixed: EOS Error - pointer truncation error
- Replies: 1
- Views: 1216
Fixed: Re: EOS Error
Fixed in development version.
- 15 Jun 2020 04:58
- Forum: Feature and Enhancement Requests
- Topic: Add HxD to WinGet Repository
- Replies: 2
- Views: 985
Re: Add HxD to WinGet Repository
Thanks, that's a good suggestion.
What would unattended mode chose as options, only the default, or is there a way to configure setup?
What would unattended mode chose as options, only the default, or is there a way to configure setup?
- 07 Jun 2020 22:07
- Forum: Feature and Enhancement Requests
- Topic: Support High-DPI GDI Rendering
- Replies: 4
- Views: 1578
Re: Support High-DPI GDI Rendering
It's written in Delphi. The issue is the price of the current version, and the need for a new set of icons (for which I have certain requirements), and some of which I made myself, and would need to remake in higher res.
- 29 May 2020 16:17
- Forum: Support
- Topic: Predefined deletion procedures
- Replies: 3
- Views: 1095
Re: Predefined deletion procedures
If I mark an area, select "Fill selection" in the drop-down and then click OK, the previously marked area is displayed with red zeros. I made no selection - regarding NullBytes or DOD Sanitizing. Yeah, changed bytes are marked in red (until you save). Someone asked me if he could make a mistake her...
- 28 May 2020 23:13
- Forum: Support
- Topic: Predefined deletion procedures
- Replies: 3
- Views: 1095
Re: Predefined deletion procedures
If you make no selection, the function "fill selection" is not available (grayed in the menu). It always applies to the selection. That's why there is another function "Insert bytes"/"Bytes einfügen". "Löschverfahren"/"Deletion procedures" really mean that you overwrite the bytes of the selection, t...
- 19 May 2020 14:14
- Forum: Feature and Enhancement Requests
- Topic: Text column support for UTF-8, UTF-16 and other multi-byte text encodings (variable width encodings)
- Replies: 63
- Views: 28772
Re: Text column support for UTF-8, UTF-16 and other multi-byte text encodings (variable width encodings)
from https://www.adobe.com/products/type/adobe-type-references-tips/glossary.html Terminology Face or font face or typeface Adobe: One of the styles of a family of faces. For example, the italic style of the Garamond family is a face. CSS: https://developer.mozilla.org/de/docs/Web/CSS/@font-face Pro...
- 18 May 2020 17:36
- Forum: Feature and Enhancement Requests
- Topic: Text column support for UTF-8, UTF-16 and other multi-byte text encodings (variable width encodings)
- Replies: 63
- Views: 28772
Re: Text column support for UTF-8, UTF-16 and other multi-byte text encodings (variable width encodings)
Filtering out invalid text, e.g., for Thai, is not done by default by Uniscribe and just a possibility (from http://archives.miloush.net/michkap/archive/2010/12/18/10106789.html ): The code that "filters" these characters sits in code called by the EDIT control that checks for two things: Does the s...
- 18 May 2020 17:35
- Forum: Feature and Enhancement Requests
- Topic: Text column support for UTF-8, UTF-16 and other multi-byte text encodings (variable width encodings)
- Replies: 63
- Views: 28772
Re: Text column support for UTF-8, UTF-16 and other multi-byte text encodings (variable width encodings)
Charmap or simple style rendering For the charmap or simple style rendering, a solution could be to use ScriptShape with psa->s.fDisplayZWG = True to reliably know if glyphs are missing for a codepoint and also handle precomposed characters that might be rendered with several glyphs. No need to loo...
- 18 May 2020 17:06
- Forum: Feature and Enhancement Requests
- Topic: Text column support for UTF-8, UTF-16 and other multi-byte text encodings (variable width encodings)
- Replies: 63
- Views: 28772
Re: Text column support for UTF-8, UTF-16 and other multi-byte text encodings (variable width encodings)
So when considering this whole chaos, the solution is a bit complicated. Neither ScriptShape nor ScriptGetCMap will properly look up a glyph (or glyph sequence) for each codepoint. And GetGlyphOutline or GetGlyphIndicies are limited to the BMP. We have two goals: Finding missing (=default) glyphs in...