| Website | https://10xeditor.com |
| Website | https://www.puredevsoftware.com |
| Website | https://10xeditor.com |
| Website | https://www.puredevsoftware.com |
10x Release (1.0.428)
Added source preview to Search panel. Support for slnx files. Improved font rendering. General optimisations and bug fixes.
10x Editor Release Version (1.0.404)
General fixes and parser fixes. Improved 10xEditorLink syncing. Improved quality of map scroll bar rendering. Crash fixes.
Live++ 2.11.0 out now:
https://liveplusplus.tech/releases.html
- Support for virtual file systems
- Support for 10x by @stewartlynch8
- Environment variable set for invoked compiler
- Hot-Restart via exception handler dialog
- Smaller fixes
What's your caps lock key mapped to?
Mine is:
`10x.exe d:\dev\10x.sln`
Which focuses the 10x window with my workspace
No more searching for it with alt+tab
Context switches are back!
It looks like Windows Update 24H2 broke the context switch recording in FramePro. But I found a work-around and uploaded a new build.
FramePro (1.11.0)
- Fixed context switch recording
Reducing locks got a good speed-up on it's own, but also meant the max thread count could be increased.
In all there were 21 optimisations. The hardest part of making sure that nothing got broken in the process.
The optimisations were mostly related to removing lock contention and allocations:
- Custom allocators to avoid hitting global alloc
- More pools for struct and array re-use
- Created new multi-lock large hash map container
- Tweaking memory compression variables to reduce compression cache thrashing
- Reorganising data to be more lock friendly
- Caching of frequently requested data to avoid hot lock paths
...