Skip to content

Commit

Permalink
VERSION 1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
maharmstone committed Mar 12, 2022
1 parent d499eb3 commit 2afaa23
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.15)

project(btrfs VERSION 1.7.9)
project(btrfs VERSION 1.8.0)

option(WITH_TEST "Compile test program" ON)

Expand Down
15 changes: 12 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
WinBtrfs v1.7.9
---------------
WinBtrfs v1.8
-------------

WinBtrfs is a Windows driver for the next-generation Linux filesystem Btrfs.
A reimplementation from scratch, it contains no code from the Linux kernel,
Expand Down Expand Up @@ -83,7 +83,7 @@ Features
Todo
----

* fs-verity support (Linux 5.15)
* Full fs-verity support (Linux 5.15)
* Zoned support (Linux 5.11) (HM-SMR not supported on Windows?)
* Defragmentation
* Support for Btrfs quotas
Expand Down Expand Up @@ -267,6 +267,15 @@ partition type from 83 to 7.
Changelog
---------

v1.8 (2022-03-12):
* Added minimal support for fs-verity
* Added test suite
* Fixed incorrect disk usage statistics
* Fixed potential crashes when renaming stream to file or file to stream
* Fixed potential crashes when querying hard links on file
* Fixed potential hang when opening oplocked file
* Fixed minor issues also uncovered by test suite

v1.7.9 (2021-10-02):
* Fixed deadlock when mounting on Windows 11
* Added support for BitLocker-encrypted volumes
Expand Down
4 changes: 2 additions & 2 deletions src/btrfs.inf
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
;;; WinBtrfs
;;;
;;;
;;; Copyright (c) 2016-21 Mark Harmstone
;;; Copyright (c) 2016-22 Mark Harmstone
;;;

[Version]
Signature = "$Windows NT$"
Class = Volume
ClassGuid = {71a27cdd-812a-11d0-bec7-08002be2092f}
Provider = %Me%
DriverVer = 10/02/2021,1.7.9
DriverVer = 03/12/2022,1.8.0
CatalogFile = btrfs.cat

[DestinationDirs]
Expand Down
2 changes: 1 addition & 1 deletion src/btrfs.rc.in
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ BEGIN
VALUE "FileDescription", "WinBtrfs"
VALUE "FileVersion", "@PROJECT_VERSION_MAJOR@.@PROJECT_VERSION_MINOR@.@PROJECT_VERSION_PATCH@"
VALUE "InternalName", "btrfs"
VALUE "LegalCopyright", "Copyright (c) Mark Harmstone 2016-21"
VALUE "LegalCopyright", "Copyright (c) Mark Harmstone 2016-22"
VALUE "OriginalFilename", "btrfs.sys"
VALUE "ProductName", "WinBtrfs"
VALUE "ProductVersion", "@PROJECT_VERSION_MAJOR@.@PROJECT_VERSION_MINOR@.@PROJECT_VERSION_PATCH@"
Expand Down
2 changes: 1 addition & 1 deletion src/mkbtrfs/mkbtrfs.rc.in
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ BEGIN
VALUE "FileDescription", "Btrfs formatting utility"
VALUE "FileVersion", "@PROJECT_VERSION_MAJOR@.@PROJECT_VERSION_MINOR@.@PROJECT_VERSION_PATCH@"
VALUE "InternalName", "mkbtrfs"
VALUE "LegalCopyright", "Copyright (c) Mark Harmstone 2016-21"
VALUE "LegalCopyright", "Copyright (c) Mark Harmstone 2016-22"
VALUE "OriginalFilename", "mkbtrfs.exe"
VALUE "ProductName", "WinBtrfs"
VALUE "ProductVersion", "@PROJECT_VERSION_MAJOR@.@PROJECT_VERSION_MINOR@.@PROJECT_VERSION_PATCH@"
Expand Down
2 changes: 1 addition & 1 deletion src/shellext/shellbtrfs.rc.in
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ BEGIN
VALUE "FileDescription", "WinBtrfs shell extension"
VALUE "FileVersion", "@PROJECT_VERSION_MAJOR@.@PROJECT_VERSION_MINOR@.@PROJECT_VERSION_PATCH@"
VALUE "InternalName", "btrfs"
VALUE "LegalCopyright", "Copyright (c) Mark Harmstone 2016-21"
VALUE "LegalCopyright", "Copyright (c) Mark Harmstone 2016-22"
VALUE "OriginalFilename", "shellbtrfs.dll"
VALUE "ProductName", "WinBtrfs"
VALUE "ProductVersion", "@PROJECT_VERSION_MAJOR@.@PROJECT_VERSION_MINOR@.@PROJECT_VERSION_PATCH@"
Expand Down
2 changes: 1 addition & 1 deletion src/ubtrfs/ubtrfs.rc.in
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ BEGIN
VALUE "FileDescription", "Btrfs utility DLL"
VALUE "FileVersion", "@PROJECT_VERSION_MAJOR@.@PROJECT_VERSION_MINOR@.@PROJECT_VERSION_PATCH@"
VALUE "InternalName", "ubtrfs"
VALUE "LegalCopyright", "Copyright (c) Mark Harmstone 2016-21"
VALUE "LegalCopyright", "Copyright (c) Mark Harmstone 2016-22"
VALUE "OriginalFilename", "ubtrfs.dll"
VALUE "ProductName", "WinBtrfs"
VALUE "ProductVersion", "@PROJECT_VERSION_MAJOR@.@PROJECT_VERSION_MINOR@.@PROJECT_VERSION_PATCH@"
Expand Down

0 comments on commit 2afaa23

Please sign in to comment.