File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,6 +9,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99[ Unreleased]
1010============
1111
12+ [ 0.2.5] - 2023-12-06
13+ ====================
14+
15+ Removed
16+ -------
17+
18+ - Useless left panel
19+
1220[ 0.2.0] - 2023-22-03
1321====================
1422
Original file line number Diff line number Diff line change 66import activity_browser as ab
77import os
88
9- from .layouts .tabs import LeftTab , RightTab
9+ from .layouts .tabs import RightTab
1010
1111class Plugin (ab .Plugin ):
1212
@@ -31,8 +31,7 @@ def load(self):
3131 sleep (2 )
3232
3333 self .rightTab = RightTab (self )
34- self .leftTab = LeftTab (self )
35- self .tabs = [self .rightTab , self .leftTab ]
34+ self .tabs = [self .rightTab ]
3635
3736 def close (self ):
3837 self .server_kill ()
Original file line number Diff line number Diff line change 1- from .right import RightTab
2- from .left import LeftTab
1+ from .right import RightTab
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments