Skip to content

Releases: oleg-shilo/cs-script.npp

Release v1.7.26.0

25 Sep 04:42
Compare
Choose a tag to compare

v1.7.25-26

  • Fixed problem (inflicted by Scintilla update) with suggestion list not being updated on character removing
  • Added integration with .NET 5 edition of CS-Script.
    The script engine needs to be enabled from the settings dialog (see "Enable .NET 5/Core integration")
  • The process's TLS protocol is set to v1.2 to address "Check for updates" failures

To install/update this paste https://github.com/oleg-shilo/cs-script.npp/releases/download/v1.7.26/CSScriptNpp.1.7.26.0.x64.zip in the update source location field.
And then press "Update" button:

image

Release v1.7.25.1

18 Sep 11:56
Compare
Choose a tag to compare

v1.7.25

  • Added integration with .NET 5 edition of CS-Script.
    The script engine needs to be enabled from settings dialog (see "Enable .NET 5/Core integration")

v1.7.25.1

  • The process's TLS protocol is set to v1.2 to address "Check for updates" failures

To install/update this paste https://github.com/oleg-shilo/cs-script.npp/releases/download/1.7.25.1/CSScriptNpp.1.7.25.1.x64.zip in the update source location field.
And then press "Update" button:

image

Release v1.7.25.0

17 Sep 11:30
Compare
Choose a tag to compare
  • Added integration with .NET 5 edition of CS-Script.
    The script engine needs to be enabled from the settings dialog (see "Enable .NET 5/Core integration")

To install/update this paste https://github.com/oleg-shilo/cs-script.npp/releases/download/v1.7.25/CSScriptNpp.1.7.25.0.x64.zip in the update source location field.
And then press "Update" button:
image

Release v1.7.24

24 Nov 13:36
Compare
Choose a tag to compare
  • Updated deployment algorithm to handle another set of breaking changes in Notepad++ v7.6 hosting model (PluginAdmin compatible).
  • Fixed script startup problem with '|' character in the DefaultRefAssemblies value.

Release v1.7.22

07 Nov 11:25
Compare
Choose a tag to compare
Release v1.7.22 Pre-release
Pre-release

Release v1.7.21-22

  • Updated deployment algorithm to handle breaking changes in Notepad++ v7.5.9 hosting model (PluginAdmin compatible).
  • Updater.exe is extended to support deployment by double-clicking it from the uncompressed distro folder.

Release v1.7.21

05 Nov 12:54
Compare
Choose a tag to compare
Release v1.7.21 Pre-release
Pre-release
  • Updated deployment algorithm to handle breaking changes in Notepad++ v7.5.9 hosting model (PluginAdmin compatible).

Release v1.7.20.0

25 Oct 14:13
Compare
Choose a tag to compare
  • Updated deployment algorithm to handle breaking changes in Notepad++ v7.5.9 hosting model.

Release v1.7.19

16 Sep 11:56
Compare
Choose a tag to compare

Release v1.7.19

  • Added support for custom script (F5) launcher. The launcher path is to be set from the settings dialog.

Release v1.7.18

08 Sep 23:56
Compare
Choose a tag to compare
  • Fixed problem with settings file truncating long values
  • Removed context menu from the 'References' node in the project tree.
  • Added aborting requested formatting operation if it is already in progress
  • Updated CS-Script engine (v3.28.8.0)
    • Implemented seamless debugging of all auto-classes. There is no longer need to open decorated auto-classes code during debugging.
    • added support for freestyle auto-classes:
    //css_ac freestyle
    using System;
    using System.Diagnostics;
    
    Console.WriteLine("Hello World!");
    Debug.WriteLine("Hello World!");	

Release v1.7.17.0

19 Aug 12:16
Compare
Choose a tag to compare
  • Updated CS-Script engine (v3.28.6.0)
    • added auto loading of the app.config if found
    • switch -sconfig can now be passed from the code with //css_args.
    • parsing //css_args is updated to match OS process arguments handling.