Blob


1 # ChangeLog
3 All notable changes to this project will be documented in this file.
5 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
8 ## [1.3.1] - 2023-09-01
9 ### Changed
10 - Add missing entries in ChangeLog
12 ## [1.3] - 2023-09-01
13 ### Changed
14 - The `-i` option now prints ASCII art instead of spaces
16 ## [1.2.4] - 2023-06-08
17 ### Changed
18 - Minor code style adjustments
19 - Fix allocation bug
21 ## [1.2.3] - 2023-05-30
22 ### Changed
23 - Better error handling
25 ## [1.2.2] - 2023-05-30
26 ### Changed
27 - Remove `-Werror`
29 ## [1.2.1] - 2023-05-30
30 ### Changed
31 - .gitignore
32 - Replace bzero(3) with memset(3)
34 ### Fixed
35 - Fix handling of CD drives with no CD in them
36 - Correct date of manual
38 ## [1.2] - 2023-05-17
39 ### Added
40 - Accept "disk" arguments.
41 - Show RAID disks
42 - Show status of RAID disk in "COMMENT"
43 - Show status of RAID volume in "COMMENT"
44 - Options:
45 - `-a` print all fields
46 - `-i` don't print fancy unicode characters
47 - `-U` print the DUID
49 ### Changed
50 - Merge "LABEL" and "MOUNT" fields into "COMMENT"
51 because disks can't be mounted but partitions can,
52 and disks can have a label but partitions don't
53 (at least through the disklabel interface).
54 - Print fancy unicode characters by default.
55 - Use err(3) instead of die()
56 - Use opendev(3) instead of open(2)
57 - Sort drives by name
58 - Dynamic padding of output
59 - Allow drive names longer than `sd0`, like `vnd0`
61 ### Removed
62 - Options:
63 - `-l`
65 ## [1.1] - 2023-05-02
66 ### Added
67 - Header
68 - Options:
69 - `-n` don't print header
70 - `-l` print the disk label
71 - `-u` print the filesystem usage
72 - `make unroot`
74 ### Changed
75 - Strip " disk" from d_typename (type column)
76 - Padding
77 - Restructured code