File tree 5 files changed +21
-6
lines changed
5 files changed +21
-6
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
## [ Unreleased]
8
8
9
9
10
+ ## [ 5.2.1] - 2024-10-30
11
+
12
+ Pypi: https://pypi.org/project/cobib/5.2.1/
13
+
14
+ ### Fixed
15
+
16
+ - compatibility with ` textual>=0.80 `
17
+
18
+
10
19
## [ 5.2.0] - 2024-10-30
11
20
12
21
Pypi: https://pypi.org/project/cobib/5.2.0/
@@ -1106,7 +1115,8 @@ Note: this release was not marked MAJOR because this is still a WIP and early
1106
1115
- initial version with a basic ` sqlite3 ` -based database
1107
1116
1108
1117
1109
- [ Unreleased ] : https://gitlab.com/cobib/cobib/-/compare/v5.2.0...master
1118
+ [ Unreleased ] : https://gitlab.com/cobib/cobib/-/compare/v5.2.1...master
1119
+ [ 5.2.1 ] : https://gitlab.com/cobib/cobib/-/tags/v5.2.1
1110
1120
[ 5.2.0 ] : https://gitlab.com/cobib/cobib/-/tags/v5.2.0
1111
1121
[ 5.1.3 ] : https://gitlab.com/cobib/cobib/-/tags/v5.1.3
1112
1122
[ 5.1.2 ] : https://gitlab.com/cobib/cobib/-/tags/v5.1.2
Original file line number Diff line number Diff line change 1
- .TH COBIB 1 2024-10-30 v5.2.0
1
+ .TH COBIB 1 2024-10-30 v5.2.1
2
2
.SH NAME
3
3
coBib \- Console-based Bibliography Management
4
4
.SH SYNOPSIS
Original file line number Diff line number Diff line change 6
6
requests_oauthlib
7
7
rich
8
8
ruamel.yaml
9
- textual >= 0.77
9
+ textual >= 0.80
10
10
typing_extensions
11
11
text-unidecode
Original file line number Diff line number Diff line change 6
6
import subprocess
7
7
from pathlib import Path
8
8
9
- __version__ = "5.2.0 "
9
+ __version__ = "5.2.1 "
10
10
11
11
if (Path (__file__ ).parent .parent .parent / ".git" ).exists ():
12
12
# if installed from source, append HEAD commit SHA to version info as metadata
Original file line number Diff line number Diff line change 20
20
class SelectionFilter (LineFilter ):
21
21
"""coBib's selection filter."""
22
22
23
- def __init__ (self ) -> None :
24
- """Initializes the filter."""
23
+ def __init__ (self , enabled : bool = True ) -> None :
24
+ """Initializes the filter.
25
+
26
+ Args:
27
+ enabled: whether the filter will be applied.
28
+ """
29
+ super ().__init__ (enabled )
25
30
self .active : bool = False
26
31
"""Indicates whether the filter is active, i.e. the selection is not empty."""
27
32
self .selection : set [str ] = set ()
You can’t perform that action at this time.
0 commit comments