Skip to content

Commit 10d31a9

Browse files
committed
0.2.1
1 parent 433278c commit 10d31a9

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

Diff for: CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## 0.2.1 - 2023/11/15
4+
5+
This version contains various fixs based on the reports we got. No new features here.
6+
7+
### Server
8+
- Fix log file hell. No more log file that will fill up your hard disk.
9+
- Fix a crash that can occur if a model is declared ouside of a module (really?)
10+
- Fix crash that can occur if the configuration is wrong. Handle it properly
11+
- Allow creation of full path instead of only a new file. if you have a directory test, you can create test/dummy/file.py in on command instead of 2 (directory + file) without having the extension crashing
12+
- Fix crash on some file edit due to the thread queue that was missing some context
13+
- Fix character index on Hover and Definition feature that created a crash if you hover the last character of the file
14+
315
## 0.2.0 - 2023/11/07
416

517
Update to version numbers: "0.x.0" if x is even, it will be a beta (or pre-release) version, odd numbers will be release version.

Diff for: server/constants.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from enum import Enum
22

33
EXTENSION_NAME = "Odoo"
4-
EXTENSION_VERSION = "0.2.0"
4+
EXTENSION_VERSION = "0.2.1"
55

66
#DEBUG PARAMETERS
77

Diff for: vscode/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "odoo",
33
"displayName": "Odoo",
44
"description": "Language Server for Odoo projects",
5-
"version": "0.2.0",
5+
"version": "0.2.1",
66
"publisher": "Odoo",
77
"repository": {
88
"type": "git",

0 commit comments

Comments
 (0)