Skip to content

Tags: ariccio/altWinDirStat

Tags

0.9.5

Toggle 0.9.5's commit message
Merge pull request #11 from ariccio/fix-blank-header-ctrl

Fixes #8 (sorting issue)

v0.9.4

Toggle v0.9.4's commit message
STATIC_DOWNCAST broke, for some reason

Grr. It said that CDirstatApp didn't have a member named
`classCDirstatApp`. I'm pretty sure this has to do with MFC message-map
nonsense.

v0.9.3

Toggle v0.9.3's commit message
minor tweaks, a few hacks that'll go away soon

v0.9.2

Toggle v0.9.2's commit message
small tweaks to COLOR_DEBUGGING, other refactoring

v0.9.1

Toggle v0.9.1's commit message
Attempt at addressing issue #1, release 0.9.1

I've audited every single use of std::terminate( )/abort( ) (this is why
I keep the codebase small!), an ensured that at the very least, some
form of error message is displayed before any termination, no matter how
unexpected.

Also fixed my own idiotic use of `void displayWindowsMsgBoxWithMessage(
PCWSTR )` whereby I'd construct a std::wstring from a (wide) string
literal, then move it into `void displayWindowsMsgBoxWithMessage( const
std::wstring )`. What the hell was I doing??

Lastly, I disabled AVX generation, and now uses the SSE2 option for 32
bit builds, and the DEFAULT option for 64 bit builds. All 64 bit
processors have SSE2 built in, and MSVC doesn't even recognize
`/arch:SSE2` when building a 64 bit executable.

Hopefully this addresses the issue!

0.9.0

Toggle 0.9.0's commit message
automatic memory management, tweaked annotations