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 8004a77

Browse files
committed
Release 0.2.3.2
1 parent e5e15c4 commit 8004a77

6 files changed

Lines changed: 16 additions & 15 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: 5.0.0
33+
UPX_VER: 5.0.1
3434
UPX_DIR: "C:\\upx"
3535
steps:
3636
- checkout

Changelog.txt

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

3+
* 0.2.3.2 (2025-05-15)
4+
** 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
5+
36
* 0.2.3.1 (2025-01-19)
47
** Changed: tab settings for F# files will follow the 'Convert tabs to spaces' and 'Tab length' configuration options; the default is 4 spaces
58
** Added: the text colour of console output messages can be configured for light and dark modes

Copyright.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
Copyright (c) 2022, 2023, 2024 Robert Di Pardo
2+
Copyright (c) 2022, 2023, 2024, 2025 Robert Di Pardo
33

44
This program is free software: you can redistribute it and/or
55
modify it under the terms of the GNU General Public License

README.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
![Built with Free Pascal][fpc] [![cci-badge][]][cci-status]
44

5-
![NPPFSIPlugin-v0.2.2.0-x64](https://raw.githubusercontent.com/rdipardo/NPPFSIPlugin/media/rel/nppFSIPlugin-v0.2.2-x64.png)
5+
![Plugin Demo](https://raw.githubusercontent.com/rdipardo/nppFSIPlugin/media/rel/nppFSIPlugin-v0.2.3.2-x64.png)
66

77
## Usage
88

@@ -35,7 +35,13 @@ For the default or a light theme, use the [default F# UDL].
3535
> Both UDLs have ["transparent" backgrounds] (i.e., `colorStyle="1"`).
3636
3737
## How to configure tab settings for F# source files
38-
### *F# Interactive* v0.2.3.1 and later
38+
### Notepad++ 8.8.1 and later
39+
40+
With the plugin loaded, modify your [indentation preferences](https://npp-user-manual.org/docs/preferences/#indentation)
41+
for F# (or "fsharp", if using version 0.2.2.0 and older).
42+
43+
### Older Notepad++ versions
44+
#### *F# Interactive* v0.2.3.1 and later
3945

4046
- Open the plugin options dialog:
4147

@@ -48,14 +54,6 @@ For the default or a light theme, use the [default F# UDL].
4854
<img src="https://i.ibb.co/Tb95Tvt/fsi-v0-2-3-1-tab-settings-detail.png" alt="plugin-tab-settings-detail" border="0" width="375"/>
4955

5056
### Older plugin versions
51-
#### Notepad++ preferences menu
52-
53-
With the plugin loaded, modify your [indentation preferences](https://npp-user-manual.org/docs/preferences/#indentation)
54-
for F# (or "fsharp", if using version 0.2.2.0 and older).
55-
56-
> [!Important]
57-
> Your choices will *not* be saved when you exit Notepad++
58-
5957
#### XML configuration file
6058

6159
To make 4 spaces the default tab setting for F# files when Notepad++ starts, do the following:

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

0 commit comments

Comments
 (0)