Skip to content
This repository was archived by the owner on Apr 12, 2026. It is now read-only.
/ nppFSIPlugin Public archive
forked from ppv/NPPFSIPlugin

Commit fbf0e05

Browse files
committed
Release 0.2.1.1
1 parent 3c16cb4 commit fbf0e05

5 files changed

Lines changed: 9 additions & 3 deletions

File tree

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
type: string
3131
default: NPPFSIPlugin
3232
environment:
33-
UPX_VER: 4.0.1
33+
UPX_VER: 4.0.2
3434
UPX_DIR: "C:\\upx"
3535
steps:
3636
- checkout

Changelog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11

2+
* 0.2.1.1 (2023-04-05)
3+
** Fixed: close FSI if it's running when the editor shuts down
4+
** Fixed: don't highlight the toolbar icon when FSI fails to launch
5+
26
* 0.2.1.0 (2023-01-15)
37
** Changed: lexical styles can now be set with N++'s builtin Style Configurator
48
** Changed: lexer properties can now be set with the plugin's configuration GUI

Source/Plugin/NPPFSIPlugin.lpi

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
<UseVersionInfo Value="True"/>
2626
<MinorVersionNr Value="2"/>
2727
<RevisionNr Value="1"/>
28-
<StringTable Comments="Updated for x64 Notepad++ by Robert Di Pardo, Copyright 2023" FileDescription="F# source code lexer and IPC client for F# Interactive" InternalName="$NameOnly($(ProjFile))" LegalCopyright="Copyright 2010 Prapin Peethambaran" OriginalFilename="$NameOnly($(ProjFile)).dll" ProductName="$NameOnly($(ProjFile))" ProductVersion="0.2.1.0"/>
28+
<BuildNr Value="1"/>
29+
<StringTable Comments="Updated for x64 Notepad++ by Robert Di Pardo, Copyright 2023" FileDescription="F# source code lexer and IPC client for F# Interactive" InternalName="$NameOnly($(ProjFile))" LegalCopyright="Copyright 2010 Prapin Peethambaran" OriginalFilename="$NameOnly($(ProjFile)).dll" ProductName="$NameOnly($(ProjFile))" ProductVersion="0.2.1.1"/>
2930
</VersionInfo>
3031
<BuildModes Count="2">
3132
<Item1 Name="Debug" Default="True"/>

Source/Plugin/Src/FSIWrapper.pas

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -434,6 +434,7 @@ procedure TFSIViewer.doOnPipeError(sender: TObject; stream: TStream);
434434
strStream.Free;
435435
end;
436436
AddToEditor('> ');
437+
updateEditableAreaStart;
437438
end;
438439

439440
procedure TFSIViewer.doOnEditorKeyDown(sender: TObject; var Key: Word;

make_release.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
::
55
SETLOCAL
66

7-
set "VERSION=0.2.1.0"
7+
set "VERSION=0.2.1.1"
88
set "PLUGIN=NPPFSIPlugin"
99
set "BIN_DIR=.\Source\Plugin\Bin"
1010
set "CONFIG_DIR=.\Source\Plugin\Config"

0 commit comments

Comments
 (0)