summaryrefslogtreecommitdiff
path: root/ChangeLog
AgeCommit message (Collapse)AuthorFilesLines
2023-08-04Version 2.3v2.3Yorhel1-0/+7
2023-01-19Version 2.2.2 + copyright year bumpv2.2.2Yorhel1-1/+5
2022-10-25Version 2.2.1v2.2.1Yorhel1-0/+4
2022-10-17Version 2.2v2.2Yorhel1-0/+7
2022-04-28Version 2.1.2v2.1.2Yorhel1-0/+5
2022-03-25Version 2.1.1v2.1.1Yorhel1-0/+6
2022-02-07Version 2.1; remove 1.x changes from the ChangeLogv2.1Yorhel1-193/+10
2022-01-01Version 2.0.1 + copyright year bumpv2.0.1Yorhel1-1/+6
2021-12-21Version 2.0v2.0Yorhel1-0/+4
I'm tagging this as a "stable" 2.0 release because the 2.0-beta# numbering will get confusing when I'm working on new features and fixes. It's still only usable for people who can use the particular Zig version that's required (0.9.0 currently) and it will certainly break on different Zig versions. But once you have a working binary for a supported arch, it's perfectly stable.
2021-11-09Version 2.0-beta3v2.0-beta3Yorhel1-0/+10
2021-07-31Version 2.0-beta2 + more convenient static binary generationv2.0-beta2Yorhel1-0/+6
2021-07-23ChangeLog, tooYorhel1-1/+1
2021-07-22Tagging this as a 2.0-beta1 releasev2.0-beta1Yorhel1-0/+17
2021-07-18Add REUSE-compliant copyright headersYorhel1-0/+3
2020-06-10Version bump for 1.15.1v1.15.1Yorhel1-0/+5
2020-05-30Correct misspellingsChristian Göttsche1-1/+1
2020-05-30Version bump for 1.15v1.15Yorhel1-0/+8
2020-02-10Year + version bump for 1.14.2v1.14.2Yorhel1-0/+5
2019-08-05Version bump for 1.14.1 + static bin improvementsv1.14.1Yorhel1-0/+5
2019-02-04Year + version bump for 1.14v1.14Yorhel1-0/+10
2018-01-29Year + version bump for 1.13v1.13Yorhel1-0/+9
2016-08-24Year + version bump for 1.12v1.12Yorhel1-0/+5
2015-05-07ChangeLog: Fix date of 1.11 release -.-Yorhel1-1/+1
2015-04-05Version bump + Changelog update for 1.11v1.11Yorhel1-0/+6
2013-05-09Version bump + Changelog update for 1.10v1.10Yorhel1-0/+9
2012-09-27Version bump + Changelog update for 1.9v1.9Yorhel1-0/+12
2011-11-03Version bump + ChangeLog update for 1.8v1.8Yorhel1-0/+5
I'm now following the same idea from ncdc of using $VERSION+g in the git repositories.
2010-08-13ChangeLog update for the 1.7 releasev1.7Yorhel1-1/+1
2010-08-13Display size graph by defaultYorhel1-0/+1
This used to be the default before 1.5, but for some reason the default changed in 1.5 and 1.6. Changing it back now, because the graph really is useful, and there's still enough space for the filename even in smaller terminals.
2010-07-19Fixed segfault when launched on a nonexistant directoryYorhel1-0/+1
Forgot to check the return value of path_absolute() in path_real(), path_absolute() would return an error when getcwd() fails. Fixes bug #3012787.
2010-07-19TODO + ChangeLog updateYorhel1-1/+2
2010-04-28More intuitive multi-page browsingYorhel1-0/+1
Here is the new multi-page listing functionality I promised in 5db9c2aea11052451c7e11bf8eef73393e4a072e. It may look very easy, but getting this to work right wasn't, unfortunately.
2010-04-28Fixed buffer overflow when some directories can't be scannedYorhel1-0/+1
Also changed other occurences of the same situation to use the same checking method (>= rather than a +1) for consistency. Fixes bug #2981704.
2010-04-27Updated ChangeLog with the changes on the git repoYorhel1-0/+7
2009-10-23ChangeLog & man page version/date bump for 1.6v1.6Yorhel1-3/+3
2009-10-18Added some keybindings and changed 'h' to 'e' in browserYorhel1-0/+1
2009-10-18Call setlocale() at initializationYorhel1-0/+1
This (in combination with linking to ncursesw) fixes the display of non-ASCII characters.
2009-10-18Link to ncursesw when availableYorhel1-0/+1
Or force the use of a library with --with-ncurses or --with-ncursesw. Implementation based on/stolen from the configure.ac in ncmpc.
2009-08-03Properly display MiB units instead of MBYorhel1-0/+1
Fixes bug #2831412 (debian #539553)
2009-06-06Return to previously opened directory on failed recalculationYorhel1-0/+1
...instead of displaying an empty and unusable browser.
2009-06-06Properly free return value of opendir() on calculation interruptYorhel1-0/+1
When interrupinting the calculation process by pressing 'q' while it's looping through a directory, or when a directory could be openend but not chdir()'ed into, closedir() wasn't called.
2009-05-16Fixed non-void return in void delete_process()Sebastian Kayser1-0/+1
Fixes bug #2789781.
2009-05-16Removed reliance on dirfd()Yorhel1-0/+1
2009-05-11Properly select the next item after deletionYorhel1-0/+1
Setting FF_BSEL after calling browse_init() causes two items to be selected, as browse_init() makes sure something will be selected, while calc_process() assumes nothing is, because the previously selected item had just been deleted.
2009-05-11Use correct hard link information after partial recalculation or deletionYorhel1-0/+3
Hard link detection is now done in a separate pass on the in-memory tree, and duplicates can be 'removed' and 're-added' on the fly. When making any changes in the tree, all hard links are re-added before the operation and removed again afterwards. While this guarantees that all hard link information is correct, it does have a few drawbacks. I can currently think of two: 1. It's not the most efficient way to do it, and may be quite slow on large trees. Will have to do some benchmarks later to see whether it is anything to be concerned about. 2. The first encountered item is considered as 'counted' and all items encountered after that are considered as 'duplicate'. Because the order in which we traverse the tree doesn't always have to be the same, the items that will be considered as 'duplicate' can vary with each deletion or re-calculation. This might cause confusion for people who aren't aware of how hard links work.
2009-05-02Version & date bump for ChangeLog and manual pagev1.5Yorhel1-1/+1
2009-05-01Fixed line width when displaying 100%Yorhel1-3/+3
Which would happen if there's only one file is in a directory
2009-04-26Updated ChangeLog and TODOYorhel1-1/+3
2009-04-19Updated manpage to reflect the removal of the 1000/1024 switchYorhel1-0/+2
2009-04-05Converting ignores and versions from subversion to gitYorhel1-1/+1