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.2.3] - 2023-05-30
9 ## Changed
10 - Better error handling
12 ## [1.2.2] - 2023-05-30
13 ## Changed
14 - Removed `-Werror`
16 ## [1.2.1] - 2023-05-30
17 ### Changed
18 - .gitignore
19 - Replace bzero(3) with memset(3)
21 ### Fixed
22 - Fix handling of CD drives with no CD in them
23 - Correct date of manual
25 ## [1.2] - 2023-05-17
26 ### Added
27 - Accept "disk" arguments.
28 - Show RAID disks
29 - Show status of RAID disk in "COMMENT"
30 - Show status of RAID volume in "COMMENT"
31 - Options:
32 - `-a` print all fields
33 - `-i` don't print fancy unicode characters
34 - `-U` print the DUID
36 ### Changed
37 - Merge "LABEL" and "MOUNT" fields into "COMMENT"
38 because disks can't be mounted but partitions can,
39 and disks can have a label but partitions don't
40 (at least through the disklabel interface).
41 - Print fancy unicode characters by default.
42 - Use err(3) instead of die()
43 - Use opendev(3) instead of open(2)
44 - Sort drives by name
45 - Dynamic padding of output
46 - Allow drive names longer than `sd0`, like `vnd0`
48 ### Removed
49 - Options:
50 - `-l`
52 ## [1.1] - 2023-05-02
53 ### Added
54 - Header
55 - Options:
56 - `-n` don't print header
57 - `-l` print the disk label
58 - `-u` print the filesystem usage
59 - `make unroot`
61 ### Changed
62 - Strip " disk" from d_typename (type column)
63 - Padding
64 - Restructured code