File tree Expand file tree Collapse file tree 4 files changed +12
-4
lines changed
Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 11- [ ] Test GNAT Studio plugin
2- - Check verification, generation and display of message graph for example apps
2+ - Check verification of specification, code generation and display of message graph for example apps
3+ - [ ] Test VS Code extension
4+ - Check verification of specification and display of message graph for example apps
35- [ ] Add release to ` CHANGELOG `
46- [ ] Check if any GitHub issues are not yet mentioned in ` CHANGELOG ` (especially issue numbers below #1288 )
57- [ ] Bring changes to ` main ` branch
Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ Unreleased]
9+
10+ ### Fixed
11+
12+ - Display of message graphs in VS Code (AdaCore/RecordFlux #1307 , eng/recordflux/RecordFlux#1838)
13+
814## [ 0.26.0] - 2024-12-18
915
1016### Added
@@ -625,6 +631,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
625631
626632## [ 0.1.0] - 2019-05-14
627633
634+ [ Unreleased ] : https://github.com/AdaCore/RecordFlux/compare/v0.26.0...HEAD
628635[ 0.26.0 ] : https://github.com/AdaCore/RecordFlux/compare/v0.25.0...v0.26.0
629636[ 0.25.0 ] : https://github.com/AdaCore/RecordFlux/compare/v0.24.0...v0.25.0
630637[ 0.24.0 ] : https://github.com/AdaCore/RecordFlux/compare/v0.23.0...v0.24.0
Original file line number Diff line number Diff line change 11import * as path from "path" ;
2- import { homedir } from "os" ;
32
43const folderName = path . basename ( __dirname ) ;
54export const EXTENSION_ROOT_DIR =
65 folderName === "common"
76 ? path . dirname ( path . dirname ( __dirname ) )
87 : path . dirname ( __dirname ) ;
9- export const CACHE_DIR = path . join ( homedir ( ) , ".cache" , "RecordFlux ") ;
8+ export const CACHE_DIR = path . join ( process . cwd ( ) , ".rflx_cache " ) ;
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ async function createServer(
125125 initializationOptions : IInitOptions
126126) : Promise < LanguageClient > {
127127 const command = settings . interpreter [ 0 ] ;
128- const cwd = settings . cwd ;
128+ const cwd = process . cwd ( ) ;
129129
130130 const newEnv = { ...process . env } ;
131131 newEnv . USE_DEBUGPY = "False" ;
You can’t perform that action at this time.
0 commit comments