Skip to content

Commit

Permalink
Bump version to 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
gretmn102 committed Aug 8, 2020
1 parent 7498aca commit e1ef1b6
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 8 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,17 @@
3. Непременно сохраните его с расширением `.qsps` — отныне это формат для всех исходников QSP'а, просто потому что
4. И VS Code любезно должен предложить поискать расширение. Смело давите "Search"
5. Вот то единственное, что найдется (если, конечно, у меня не появились соперники, грр), и устанавливайте
5. На всякий случай перезапустите VS Code (`F1` -> `Developer: Reload Window`)
4. Всё

### Проделал все в точь-точь, как написано, все равно ничего не работает

Хоть какое-нибудь окошко открылось?

`F1` -> `View: Toggle Output`
Для начал


### Ну накодил я, что теперь-то?
Скомпилировать в `.qsp`. Сделать это очень просто: жмете `F1`, введите `QSP: Build`, и по-идеи, должно скомпилироваться в то же место, что и ваш файл с исходником.

Expand Down
5 changes: 4 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,7 @@
### 0.0.3 — 07.08.2020
* build: .Net Core
* fix: escape args txt2gam, txt2gam output error
* feat: buildAndRun
* feat: buildAndRun

### 0.0.4 — 08.08.2020
* build: net461
2 changes: 1 addition & 1 deletion build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ Target.create "RunScript" (fun _ ->
)

Target.create "CopyFSAC" (fun _ ->
let fsacBin = sprintf "%s/bin/Release/netcoreapp3.1" fsacDir
let fsacBin = sprintf "%s/bin/Release" fsacDir
let releaseBin = "release/bin"
copyFSAC releaseBin fsacBin
)
Expand Down
6 changes: 3 additions & 3 deletions paket.lock
Original file line number Diff line number Diff line change
Expand Up @@ -564,13 +564,13 @@ NUGET
FSharp.Core (>= 4.3.4) - restriction: >= netstandard2.0
GIT
remote: https://github.com/gretmn102/FParserQSP
(0b0b663b9239d8eb686dbc0632e14e614a0db20b)
(49a3aa9109a4931e94757fc8ed203347984ba9a7)
build: build.cmd
os: win
(0b0b663b9239d8eb686dbc0632e14e614a0db20b)
(49a3aa9109a4931e94757fc8ed203347984ba9a7)
build: build.sh
os: linux
(0b0b663b9239d8eb686dbc0632e14e614a0db20b)
(49a3aa9109a4931e94757fc8ed203347984ba9a7)
build: build.sh
os: osx
GITHUB
Expand Down
2 changes: 1 addition & 1 deletion release/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qsp",
"version": "0.0.3",
"version": "0.0.4",
"publisher": "Fering",
"contributors": [
{
Expand Down
4 changes: 2 additions & 2 deletions src/Core/LanguageService.fs
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ Consider:
}
if Environment.isWin then
let fsautocompletePath =
VSCodeExtension.ionidePluginPath () + @"/bin/QspServer.exe"
VSCodeExtension.ionidePluginPath () + "/bin/net461/qspserver.exe"
printfn "%A" fsautocompletePath
let args =
[
Expand All @@ -564,7 +564,7 @@ Consider:
let spawnServer dotnet =
let fsautocompletePath =
[
VSCodeExtension.ionidePluginPath () + "/bin/qspserver.dll"
VSCodeExtension.ionidePluginPath () + "/bin/netcoreapp3.1/qspserver.dll"
] |> ResizeArray

createObj [
Expand Down

0 comments on commit e1ef1b6

Please sign in to comment.