Skip to content

Commit

Permalink
📝 update intellij changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
sestinj committed Mar 4, 2024
1 parent 0e296a6 commit 592937a
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 13 deletions.
8 changes: 8 additions & 0 deletions .changes/extensions/intellij/0.0.34.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## 0.0.34 - 2024-03-03
### Added
* diff context provider
### Changed
* Allow LLM servers to handle templating
### Fixed
* Fix a few context providers / slash commands
* Fixed issues preventing proper extension startup
4 changes: 0 additions & 4 deletions .changes/unreleased/Added-20231229-105815.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .changes/unreleased/Changed-20240103-113341.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .changes/unreleased/Fixed-20240103-015217.yaml

This file was deleted.

3 changes: 2 additions & 1 deletion extensions/intellij/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
and is generated by [Changie](https://github.com/miniscruff/changie).


Pre-release Changes
## 0.0.34 - 2024-03-03
### Added
* diff context provider
### Changed
* Allow LLM servers to handle templating
### Fixed
* Fix a few context providers / slash commands
* Fixed issues preventing proper extension startup

## v0.0.26 - 2023-12-28
### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,10 @@ class ContinuePluginStartupActivity : StartupActivity, Disposable, DumbAware {

// Copy targetPath / node_sqlite3.node to core / node_sqlite3.node
val nodeSqlite3Path = Paths.get(targetPath, "node_sqlite3.node")

// Create the build/Release path first
File(Paths.get(corePath, "build", "Release").toString()).mkdirs()

val coreNodeSqlite3Path = Paths.get(corePath, "build", "Release", "node_sqlite3.node")
if (!File(coreNodeSqlite3Path.toString()).exists()) {
Files.copy(nodeSqlite3Path, coreNodeSqlite3Path)
Expand Down

0 comments on commit 592937a

Please sign in to comment.