Skip to content

Commit

Permalink
0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fda-odoo committed Nov 15, 2023
1 parent 433278c commit 10d31a9
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## 0.2.1 - 2023/11/15

This version contains various fixs based on the reports we got. No new features here.

### Server
- Fix log file hell. No more log file that will fill up your hard disk.
- Fix a crash that can occur if a model is declared ouside of a module (really?)
- Fix crash that can occur if the configuration is wrong. Handle it properly
- 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
- Fix crash on some file edit due to the thread queue that was missing some context
- Fix character index on Hover and Definition feature that created a crash if you hover the last character of the file

## 0.2.0 - 2023/11/07

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.
Expand Down
2 changes: 1 addition & 1 deletion server/constants.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from enum import Enum

EXTENSION_NAME = "Odoo"
EXTENSION_VERSION = "0.2.0"
EXTENSION_VERSION = "0.2.1"

#DEBUG PARAMETERS

Expand Down
2 changes: 1 addition & 1 deletion vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "odoo",
"displayName": "Odoo",
"description": "Language Server for Odoo projects",
"version": "0.2.0",
"version": "0.2.1",
"publisher": "Odoo",
"repository": {
"type": "git",
Expand Down

0 comments on commit 10d31a9

Please sign in to comment.