-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCHANGELOG
227 lines (124 loc) · 4.53 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
0.9.4 2022-03-22
Some fixes quite some time ago.
Fixed:
- Fix not able to click to focus first element.
- Prioritize showing current folder on the header over help message.
- Deleting in empty directory doesn't crash now.
0.9.3 2021-08-28
Fixed:
- If the password is empty, copy will now copy the empty password line.
- Show a friendly warning instead of an error with trackback information. #4
0.9.2 2021-07-02
Small changes are introduced regarding copy, search and sort.
Changed (small ones):
- The search is now smartcase like in vim.
- The list is sorted case-insensitively.
- Searching is now considering the pattern to be space separated keywords. The
search result requires all keywords are in the password name, naturally.
- Copy will copy only the right hand side of colon ":" if exists.
Fixed:
- Check if pass directory exists.
- Colors of focused items in light color schemes now have correct reverse effects.
- Do not move cursor after inserting a new item if the path is absolute.
- Prevent focus change when in editbox.
0.9.1 2021-06-28
Bugs fix release.
Fixed:
- Preview not updating due to name duplicates, e.g., when switching between a
folder item and a file item with the same name.
- Folder's count not updating after the item within are added/removed.
- Git commit messages flashing by after editing password. Now it has been
worked around.
- When creating multi-level filename, e.g. "foo/bar", instead of using that
whole name as a single file, now shows directory hierarchy correctly.
- Fix new item not showing if a dir with the same name exists.
0.9.0 2021-06-25
Added:
- Search within the current folder, i.e., current window. Key bindings are vim-like:
/ search forward.
? search backward.
n goto next.
N goto previous.
Fixed:
- Position indicator not updating when moving the cursor up and down.
0.8.2 2021-06-23
`cpass` is uploaded to pypi!
Fixed:
- When copy fails (possibly due to no X11), cpass will crash. Its output also
messes the UI. Note after the fix the original error message is also blocked.
0.8.1 2021-06-20
Fixed:
- Save the log file in system temporary folder, normally `/tmp` for Linux.
It was saved to the current location where cpass is started.
0.8.0 2021-06-19
Changed:
- Renamed the executable to `cpass`, the extension was removed. This breaks
compatibility in a way, but I did not start a new major version, since I have
not promoted cpass to anyone yet so the impact is nearly zero. Nobody cares.
0.7.0 2021-06-16
Added:
- Copy password, any line or specific field.
Fixed:
- Correct the default keybindings.
0.6.1 2021-06-12
Fixed:
- Warn the deletion with full path.
- Use `y` to copy, which is the actual initially planned key binding.
0.6.0 2021-06-07
Added:
- Key binding customization support in the configuration file.
Fixed:
- Warning not shown for different password input.
- Crash if there is no colors section in the configuration file.
0.5.0 2021-06-07
Added:
- Deleting passwords/folders with `pass rm -r`.
Fixed:
- Previous messages might persist after unfocusing the editbox.
- Enter key not working on folders.
0.4.1 2021-06-03
Added:
- Focus the new/changed item after insert or generate.
Fixed:
- Update password preview after edit, insert or generate.
0.4.0 2021-06-02
Changed:
- Configuration option 'preview' is changed to 'preview_layout'.
- Keybinding changes: only use 'i' for insert and only 'a' for generate.
Added:
- Generate password by `pass generate`.
Fixed:
- The UI actually updates with password operations like insert, generate, etc.
0.3.1 2021-05-30
Hot fix release.
Fixed:
- Wrong folder preview due to duplicated name as files.
- forgot to add a line of code in a previous commit.
0.3.0 2021-05-30
Added:
- Add password by `pass insert`.
- Show count of folder contents.
- Show main keybindings on the header.
Fixed:
- File name over-striped due to misuse of `rstrip` function.
- Keybindings take over text editing.
0.2.2 - 2021-05-28
Added:
- Edit password by `pass edit`.
0.2.1 - 2021-05-24
Hot fix release.
Fixed:
- Search for configuration file in user configuration folder instead of a relative path.
0.2.0 - 2021-05-24
Added:
- Configuration file support.
- Able to toggle preview.
0.1.0 - 2021-05-23
Initial release.
Added:
- Able to browse the password store.
- Navigation with vim-like key mappings and mouse support.
- Remembers the cursor position in every folder.
- Preview passwords.
- Show current directory and file/subfolder counts in top or bottom bar.
- Some operations are dummy, they don't work.