Skip to content

Commit

Permalink
Cut 1.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rchl committed Mar 6, 2023
1 parent a5a10d3 commit 4ed8b7a
Show file tree
Hide file tree
Showing 7 changed files with 70 additions and 8 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.22.0
1.23.0
1 change: 1 addition & 0 deletions messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"1.20.0": "messages/1.20.0.txt",
"1.21.0": "messages/1.21.0.txt",
"1.22.0": "messages/1.22.0.txt",
"1.23.0": "messages/1.23.0.txt",
"1.3.0": "messages/1.3.0.txt",
"1.3.1": "messages/1.3.1.txt",
"1.4.0": "messages/1.4.0.txt",
Expand Down
23 changes: 17 additions & 6 deletions messages/1.23.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,23 @@ and includes all necessary settings that the server can use.

# Features

- ...
- (inlay hints) toggle inlay hints command/menu item (#2023) (Предраг Николић)
- (completions) add support for CompletionList.itemDefaults (#2194) (Предраг Николић)

# Fixes and Improvements

- ...

# Plugin API changes

- ...
- (settings) better grouping of default settings (#2206) (Rafał Chłodnicki)
- (general) don't initialize TextChange listeners for widgets (#2213) (Rafał Chłodnicki)
- (general) protect again invalid `auto_complete_triggers` values (#2209) (Rafał Chłodnicki)
- (general) tell if any selection changed in addition to just the first region (#2204) (Rafał Chłodnicki)
- (general) Don't run non-essential requests during save (#2203) (Rafał Chłodnicki)
- (general) add language ID mapping for TailwindCSS syntax (#2198) (Предраг Николић)
- (general) fix hidden code action menu entries sometimes being visible (#2187) (jwortmann)
- (completions) optimize performance of handling huge completion payloads (#2190) (Rafał Chłodnicki)
- (completions) tweak formatting with labelDetails (#2207) (jwortmann)
- (diagnostics) do not wrongly ignore diagnostics when symlinks are involved (#2210) (Rafał Chłodnicki)
- (diagnostics) notify opened files immediately if there are pending diagnostics (#2211) (Rafał Chłodnicki)
- (call hierarchy) highlight call location for incoming calls (#2208) (jwortmann)
- (code actions) check capabilities against buffer when requesting code actions (#2202) (Rafał Chłodnicki)
- (docs) add Digestif server configuration (#2205) (jwortmann)
- (logging) fix log panel not scrolling on initial open (#2188) (Rafał Chłodnicki)
5 changes: 5 additions & 0 deletions plugin/core/test.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
void main() {
print('Hello, World!');
var a = '' as String;
var b = '' as String;
}
2 changes: 1 addition & 1 deletion plugin/core/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = (1, 22, 0)
__version__ = (1, 23, 0)
38 changes: 38 additions & 0 deletions plugin/test.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
#include <iostream>

using namespace std;

// Base class
class Shape {
public:
void setWidth(int w) {
width = w;
}
void setHeight(int h) {
height = h;
}

protected:
int width;
int height;
};

// Derived class
class Rectangle: public Shape {
public:
int getArea() {
return (width * height);
}
};

int main(void) {
Rectangle Rect;

Rect.setWidth(5);
Rect.setHeight(7);

// Print the area of the object.
cout << "Total area: " << Rect.getArea() << endl;

return 0;
}
7 changes: 7 additions & 0 deletions test.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#include <cstdio>

int main(void)
{
std::printf("Hello World\n");
return 0;
}

0 comments on commit 4ed8b7a

Please sign in to comment.