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 42704ab

Browse files
committed
Release 0.2.3.3
1 parent 104fd41 commit 42704ab

4 files changed

Lines changed: 12 additions & 3 deletions

File tree

.circleci/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ jobs:
3636
steps:
3737
- checkout:
3838
method: full
39+
- run:
40+
name: Clone submodules
41+
command: |
42+
git submodule sync --recursive
43+
git submodule update --init --recursive
3944
- attach_workspace:
4045
at: .
4146
- run:

Changelog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
h3. Releases
22

3+
* 0.2.3.3 (2025-12-28)
4+
** Fixed: the configuration dialog will not be hidden by the application window if it loses focus
5+
** Changed: lexer properties are now dynamically set _via_ direct Scintilla function
6+
37
* 0.2.3.2 (2025-05-15)
48
** Changed: (Notepad++ 8.8.1 and later) tab settings for F# files will follow the user's XML config, if changed from the default; otherwise tabs are configured according to the plugin's 'Convert tabs to spaces' and 'Tab length' options
59

Source/Plugin/NPPFSIPlugin.lpi

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

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.3.2"
7+
set "VERSION=0.2.3.3"
88
set "PLUGIN=NPPFSIPlugin"
99
set "BIN_DIR=.\Source\Plugin\Bin"
1010
set "CONFIG_DIR=.\Source\Plugin\Config"

0 commit comments

Comments
 (0)