From fc1aa3a6ac60374291236acc177993e7b8a3f3df Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Tue, 5 Dec 2023 10:48:34 -0500 Subject: npp 8.6.0, and scite lua fix --- notepadpp/debian/changelog | 33 +++++++++++++++++++++++++++++++++ scite/debian/changelog | 6 ++++++ scite/debian/scite+stackrpms.dsc | 2 +- scite/debian/stackrpms.lua | 2 +- 4 files changed, 41 insertions(+), 2 deletions(-) diff --git a/notepadpp/debian/changelog b/notepadpp/debian/changelog index 65e3f3b..50faa62 100644 --- a/notepadpp/debian/changelog +++ b/notepadpp/debian/changelog @@ -1,3 +1,36 @@ +notepadpp (8.6-1+stackrpms) obs; urgency=medium + + * Multi-edit is fully supported in Notepad++. (Fix #14266, #8203) + * Make multi-select background & caret colours customizable. (Fix + #14302) + * Make session inaccessible files remembered (empty & read-only + document as placeholder). (Fix #12079, #12744, #13696) + * Fix missing session invalid error for user session & enhance API + NPPM_GETNBSESSIONFILES. (Fix #14228) + * Fix network shared files saving regression. (Fix #14300) + * Update Scintilla to v5.3.8 & Lexilla to v5.2.8. (Fix #13442, #14188, + #14288) + * Fix docking panel crash due to messing up config.xml. (Fix bug report + * Fix invalid styler.xml making Notepad++ crash issue. (Fix #12101) + * Fix tab-closing crash by middle mouse button (unexpected mouse + position). (Fix #14328) + * Fix 2 performance issues in Style Configurator. (Fix #14321) + * Add 3 line operation (delete, copy & cut) shortcuts. (Fix #14296) + * Display extra info in the status bar of Find/Replace dialog to avoid + PEBKAC. (Fix #14307) + * Fix "Hide lines" command hiding unselected lines issue. (Fix #14166) + * Fix silent installer mode when Notepad++ is running issue. (Fix + #10189, #10277, #22514, #14236, fix partially #8514) + * Fix Updater's vulnerability (update cURL in WinGUp for fixing + CVE-2023-38545). (Fix WinGUp issue #50) + * Fix incoherent behaviour of "Duplicate Current Line" menu command. + (Fix #5298) + * Fix JSON5 not using JSON keywords. (Fix #14205) + * Fix empty message showing while cancelling session file saving + dialog. (Fix #14235) + + -- B. Stack Mon, 04 Dec 2023 17:00:45 -0500 + notepadpp (8.5.8-1+stackrpms) obs; urgency=medium * Fix "Clear Read-Only Flag" command not working immediately diff --git a/scite/debian/changelog b/scite/debian/changelog index 0d8d007..47a49f8 100644 --- a/scite/debian/changelog +++ b/scite/debian/changelog @@ -1,3 +1,9 @@ +scite (5.4.0-101+stackrpms) unstable; urgency=medium + + * Fix stackrpms.lua date functions for lua float to int + + -- B. Stack Tue, 05 Dec 2023 10:48:03 -0500 + scite (5.4.0-100+stackrpms) unstable; urgency=medium * Add stackrpms lua script and customized global.properties diff --git a/scite/debian/scite+stackrpms.dsc b/scite/debian/scite+stackrpms.dsc index 1b0f326..2d9d335 100644 --- a/scite/debian/scite+stackrpms.dsc +++ b/scite/debian/scite+stackrpms.dsc @@ -2,7 +2,7 @@ Format: 3.0 (quilt) Source: scite Binary: scite Architecture: any -Version: 5.4.0-1+stackrpms +Version: 5.4.0-101+stackrpms Maintainer: B. Stack Homepage: https://scintilla.org/SciTE.html Standards-Version: 4.6.0.1 diff --git a/scite/debian/stackrpms.lua b/scite/debian/stackrpms.lua index 8423feb..21f9257 100644 --- a/scite/debian/stackrpms.lua +++ b/scite/debian/stackrpms.lua @@ -267,7 +267,7 @@ end -- %y two-digit year (98) [00-99] -- %% the character '%' function InsertDateAH() - local dow = tostring(os.date("%w") + 1) + local dow = tostring(math.floor(os.date("%w") + 1)) local d1 = os.date("%Y-%m-%d-") local d2 = os.date(" %H:%M") editor:AddText(d1..dow..d2) -- cgit