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