forked from ggozad/oterm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES.txt
299 lines (200 loc) · 5.47 KB
/
CHANGES.txt
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
Changelog
=========
0.4.4 - 2024-08-30
------------------
- Restore shortcut for command palette that overrided our choice for adding images.
[ggozad]
0.4.3 - 2024-08-28
------------------
- Force utf-8 when exporting messages to a file.
[ggozad]
- Migrate to using uv instead of poetry for packaging/dependency management.
[ggozad]
0.4.2 - 2024-08-20
------------------
- Remove patch to TextArea & restore tab handling.
[ggozad]
0.4.1 - 2024-08-20
------------------
- Use 127.0.0.1 as the default host for Ollama.
[ggozad]
0.4.0 - 2024-08-19
------------------
- Use stored messages and chat API instead of context and generate API.
[yilmaz08, ggozad]
0.3.1 - 2024-08-14
------------------
- Remove dependency on tree-sitter, tree-sitter-languages since they require pre-compiled wheels.
[ggozad]
0.3.0 - 2024-08-14
------------------
- Support customizing model parameters.
[ggozad]
- Cycle saved chats with Ctrl+Tab and Ctrl+Shift+Tab
[yilmaz08]
0.2.10 - 2024-08-09
-------------------
- Enter posts while Shift+Enter injects a newline in the multiline-widget.
[ggozad]
- Minor bug fixes & updates.
[ggozad]
0.2.9 - 2024-05-03
------------------
- Dependency updates.
[suhr, ggozad]
0.2.8 - 2024-05-03
------------------
- Do not scroll to the bottom of the chat when the user is reading past messages.
[lainedfles, ggozad]
- Allow customizing keep-alive parameter.
[ggozad]
0.2.7 - 2024-04-22
------------------
- Take into account env variables when calling show/list etc. on Ollama.
[habaneraa]
0.2.6 - 2024-04-20
------------------
- Fix handling of OLLAMA_HOST, OLLAMA_URL, OTERM_VERIFY_SSL env variables.
[ggozad]
- Fix windows crash when switching chat panes on slow machines.
[ggozad]
0.2.5 - 2024-04-02
------------------
- Copy code block when a Markdown block is clicked instead of the entire bot reply.
[ggozad]
0.2.4 - 2024-03-19
------------------
- Minor bug fixes.
[ggozad]
- Remove our own implementation of the Ollama client and use the official one.
[ggozad]
- Allow user to customize the path of data dir via the OTERM_DATA_DIR env.
[PeronGH]
0.2.3 - 2024-02-28
------------------
- Minor fix for the chat history styling.
[ggozad]
0.2.2 - 2024-02-28
------------------
- Allow user to navigate through the prompt history in a chat.
[ggozad]
0.2.1 - 2024-02-16
------------------
- Export chat as markdown document.
[ggozad]
0.2.0 - 2024-02-14
------------------
- Remove the template from the chat configuration.
[ggozad]
- Add support for "editing" a chat, allowing for changing system prompt and template.
[ggozad]
- Update textual and remove our own monkey patching
for Markdown. Increase Markdown size from 20 lines to 50.
[ggozad]
0.1.22 - 2024-02-01
-------------------
- Cancel inference when the user presses ESC.
[ggozad]
- Speed up initial loading of the app by mounting past messages lazily
only when a chat pane is viewed.
[ggozad]
0.1.21 - 2024-01-24
-------------------
- Allow changing the root of the filesystem tree when selecting an image.
[ggozad]
- Minor bug fixes.
[ggozad]
0.1.20 - 2024-01-12
-------------------
- Minor bug fixes.
[ggozad]
0.1.19 - 2024-01-11
-------------------
- Introduce AppConfig saved to json file. Save theme setting for the time being.
[ggozad]
- Fix TextArea and Markdown widgets to work with light theme.
[ggozad]
0.1.18 - 2024-01-05
-------------------
- Bug fixes.
[ggozad]
0.1.17 - 2023-12-19
-------------------
- Support multimodal models, allow adding images to chat messages.
[ggozad]
- Change key bindings so that they can be invoked without loosing prompt focus.
[ggozad]
- Add key binding to switch to multiline input using ctrl+n.
[ggozad]
0.1.16 - 2023-12-07
-------------------
- Support markdown in chat messages.
[ggozad]
- Show db location with when running with `--db`.
[ggozad]
0.1.15 - 2023-12-07
-------------------
- Fix crash on renaming a chat.
[ggozad]
0.1.14 - 2023-12-06
-------------------
- Automate pypi releases through github actions.
[ggozad]
- Minor bug fixes.
[ggozad]
0.1.13 - 2023-12-04
-------------------
- Forgotten db upgrade.
[ggozad]
0.1.11 - 2023-11-29
-------------------
- Syntax highlighting for json responses.
[ggozad]
- Support for `format` parameter in Ollama (essentially json for the time being).
[ggozad]
0.1.10 - 2023-11-14
-------------------
- Prompt widget improvements.
[ggozad]
- When pasting multiline text to the singleline input, switch to multiline textarea
[ggozad]
- Disable SSL verification via OTERM_VERIFY_SSL.
[huynle]
0.1.9 - 2023-11-04
------------------
- Introduce FlexibleInput, an input that can be multiline.
[ggozad]
0.1.8 - 2023-11-03
------------------
- Remove distutils dependency, make oterm compatible with python 3.12.
[denehoffman]
0.1.7 - 2023-11-01
------------------
- Allow customizing the system and template of models.
[ggozad]
- DB migrations.
[ggozad]
0.1.5 - 2023-11-01
------------------
- Fix whitespace bug in model selection screen.
[ggozad]
0.1.4 - 2023-10-18
------------------
- Show template, system, and params in the model selection screen.
[ggozad]
- Click to copy to clipboard.
[ggozad]
0.1.3 - 2023-10-17
------------------
- Remove pydantic and as a result, the rust dependency & build in homebrew.
[ggozad]
- Show discreet info on running model.
[ggozad]
0.1.2 - 2023-10-17
------------------
- Ability to rename chats.
[ggozad]
0.1.0 - 2023-10-15
------------------
- Initial release.
[ggozad]