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