• Login
Community
  • Login

Notepad++ v8.5.4 Release

Scheduled Pinned Locked Moved Announcements
30 Posts 15 Posters 18.7k Views
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • D
    donho @Michael Vincent
    last edited by Jun 20, 2023, 12:47 AM

    @Michael-Vincent
    Thank you for your heads up and your instructions to reproduce it.
    Fixed now in:
    https://github.com/notepad-plus-plus/notepad-plus-plus/commit/5b5238610e6ca57ee779d04aa19db9e8df568241

    1 Reply Last reply Reply Quote 1
    • L
      Luper @donho
      last edited by Jun 22, 2023, 10:11 AM

      I’m encountering an error since v8.5 release during a sysprep phase

      error:
      Package NotepadPlusPlus_1.0.0.0_Neutral_7njy0v32s6xk6 was installed for a user but not provisioned for all. this package will not function properly in the sysprep image
      Failed to remove apps for the current user: 0x80073cf2
      Exit code of RemoveAllApps thread was 0x3cf2
      ActionPlatform::LaunchModule: Failure occured while executing “SysprepGeneralizeValidate”

      seems the problem comes from the contextual menu plugin

      D 1 Reply Last reply Jun 22, 2023, 11:43 AM Reply Quote 0
      • W
        wallobit @donho
        last edited by Jun 22, 2023, 10:13 AM

        @donho
        Comments in batch files with colons are no longer correctly formatted across the entire line
        Screenshot.jpg

        A 1 Reply Last reply Jun 22, 2023, 10:37 AM Reply Quote 0
        • A
          Alan Kilborn @wallobit
          last edited by Jun 22, 2023, 10:37 AM

          @wallobit said in Notepad++ v8.5.4 Release:

          Comments in batch files with colons are no longer correctly formatted across the entire line

          Hmm, probably because that isn’t a “comment”; it’s a “label”. Comments in batch start with rem but a pseudo comment can start with ::. But a line starting with : is simply a label, even though the rest of the line (after the label) is ignored.

          Likely what happened is that the Scintilla lexer for batch “tightened up” the definition of what a label is, and that resulted in the behavior change you’re seeing.

          R 1 Reply Last reply Jun 22, 2023, 9:56 PM Reply Quote 4
          • D
            donho @Luper
            last edited by Jun 22, 2023, 11:43 AM

            @Luper
            This message can be ignored safely.
            See: https://github.com/notepad-plus-plus/nppShell/issues/29

            L 1 Reply Last reply Jun 27, 2023, 8:30 AM Reply Quote 1
            • M
              Michael Sousa
              last edited by Jun 22, 2023, 3:16 PM

              The ability to “column select” using the Begin/End Select no longer works. “Column Select” still works when holding down ALT + selection, but the method using Begin/End Select (right click > Begin/End Select > (highlight a least 2 rows to initiate “Column Select”) > right click > Begin/End Select) no longer works with the latest updates.

              A 1 Reply Last reply Jun 22, 2023, 3:20 PM Reply Quote 0
              • A
                Alan Kilborn @Michael Sousa
                last edited by Alan Kilborn Jun 22, 2023, 3:21 PM Jun 22, 2023, 3:20 PM

                @Michael-Sousa

                The ability to “column select” using the Begin/End Select no longer works.

                There’s a relatively new command for this, in the main menus:

                e8a3fb15-3d0f-4069-83ae-90ec0b0701ec-image.png

                In the right-click context menu:

                825910e3-3e84-4f24-90a7-e6e4e21720e9-image.png

                M 1 Reply Last reply Jun 29, 2023, 4:58 PM Reply Quote 6
                • R
                  rdipardo @Alan Kilborn
                  last edited by rdipardo Jun 22, 2023, 9:57 PM Jun 22, 2023, 9:56 PM

                  @wallobit said in Notepad++ v8.5.4 Release:

                  Comments in batch files with colons are no longer correctly formatted across the entire line

                  Hmm, probably because that isn’t a “comment”; it’s a “label”. Comments in batch start with rem but a pseudo comment can start with ::. But a line starting with : is simply a label, even though the rest of the line (after the label) is ignored.

                  Likely what happened is that the Scintilla lexer for batch “tightened up” the definition of what a label is, and that resulted in the behavior change you’re seeing.

                  @Alan-Kilborn, that’s exactly what happened.

                  The former way of styling labels was reported as a bug and changed in Lexilla 5.2.5, which added a new style class for the rest of the line after the first word of the label.

                  Of course none of the themes have been updated with the new SCE_BAT_AFTER_LABEL style (id 8). In fact, the only way to replicate the former style would be to copy and paste the existing label style, adding the attribute styleId="8", in every theme’s XML descriptor. That’s really a design choice, and there’s no chance that every theme maintainer will universally adopt it.

                  So, basically, what you see is how Batch labels are going to look from now on.

                  M 1 Reply Last reply Jun 23, 2023, 12:24 AM Reply Quote 4
                  • M
                    Michael Vincent @rdipardo
                    last edited by Michael Vincent Jun 23, 2023, 12:25 AM Jun 23, 2023, 12:24 AM

                    @rdipardo said in Notepad++ v8.5.4 Release:

                    Of course none of the themes have been updated with the new SCE_BAT_AFTER_LABEL style (id 8). In fact, the only way to replicate the former style would be to copy and paste the existing label style, adding the attribute styleId=“8”, in every theme’s XML descriptor.

                    Thanks - verified that works:

                    9cf2e426-a15d-4f50-8509-16f22040bc1f-image.png

                    Relevant section of my styler file:

                            <LexerType name="batch" desc="Batch" ext="">
                                <WordsStyle name="DEFAULT" styleID="0" fgColor="E0E2E4" bgColor="202020" fontName="" fontStyle="0" fontSize="" />
                                <WordsStyle name="COMMENT" styleID="1" fgColor="66747B" bgColor="202020" fontName="" fontStyle="0" fontSize="" />
                                <WordsStyle name="KEYWORDS" styleID="2" fgColor="93C763" bgColor="202020" fontName="" fontStyle="1" fontSize="" keywordClass="instre1">ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION</WordsStyle>
                                <WordsStyle name="LABEL" styleID="3" fgColor="A082BD" bgColor="202020" fontName="" fontStyle="1" fontSize="" />
                                <WordsStyle name="HIDE SYMBOL" styleID="4" fgColor="D3DA50" bgColor="202020" fontName="" fontStyle="0" fontSize="" />
                                <WordsStyle name="COMMAND" styleID="5" fgColor="FFCD22" bgColor="202020" fontName="" fontStyle="0" fontSize="" />
                                <WordsStyle name="VARIABLE" styleID="6" fgColor="678CB1" bgColor="202020" fontName="" fontStyle="1" fontSize="" />
                                <WordsStyle name="OPERATOR" styleID="7" fgColor="E8E2B7" bgColor="202020" fontName="" fontStyle="1" fontSize="" />
                                <WordsStyle name="AFTER LABEL" styleID="8" fgColor="66747B" bgColor="202020" fontName="" fontStyle="1" fontSize="" />
                            </LexerType>
                    

                    Cheers.

                    1 Reply Last reply Reply Quote 6
                    • D
                      donho @donho
                      last edited by Jun 26, 2023, 9:19 PM

                      FYI
                      Auto-update of v8.5.4 has been triggered.

                      1 Reply Last reply Reply Quote 1
                      • L
                        Luper @donho
                        last edited by Jun 27, 2023, 8:30 AM

                        @donho Hi

                        I know it but the triggered error is seriously painful to manage.
                        I’m deploying several hundreds of windows with a syspreped image and if I told my users to manually install the software, they will seriously have a bit of anger toward me…

                        can’t have the powershell command add-appxprovisionned package working to transform the user-defined package to a computer-defined package
                        https://learn.microsoft.com/en-us/powershell/module/dism/add-appxprovisionedpackage?view=windowsserver2022-ps

                        maybe it can be used during the building of the plugin?

                        1 Reply Last reply Reply Quote 0
                        • X
                          XanKyBpaT
                          last edited by Jun 29, 2023, 12:55 PM

                          I update my notepad++ to 8.5.4. Now i have 2 menus with the same name SHA-256. They do 2 different things - one generate sha256 and the other generate sha1. See printscreen. Maybe localization is broken.

                          Sorry for my bad english (i am native bulgarian).

                          e2e4a376-6e7a-471e-b490-cd95eb3eb60b-изображение.png

                          5e9501cf-e681-4183-84d3-d9b037c51d1d-изображение.png

                          P 1 Reply Last reply Jun 29, 2023, 1:23 PM Reply Quote 0
                          • P
                            PeterJones @XanKyBpaT
                            last edited by Jun 29, 2023, 1:23 PM

                            @XanKyBpaT said in Notepad++ v8.5.4 Release:

                            I update my notepad++ to 8.5.4. Now i have 2 menus with the same name SHA-256. They do 2 different things - one generate sha256 and the other generate sha1. See printscreen. Maybe localization is broken.

                            That’s exactly the same thing that @Michael-Vincent pointed out in his very first reply in this topic ten days ago. It will be fixed in the next version of Notepad++.

                            X 1 Reply Last reply Jun 29, 2023, 1:53 PM Reply Quote 1
                            • X
                              XanKyBpaT @PeterJones
                              last edited by Jun 29, 2023, 1:53 PM

                              @PeterJones
                              I am stupid. Thank you!

                              1 Reply Last reply Reply Quote 1
                              • M
                                Michael Sousa @Alan Kilborn
                                last edited by Jun 29, 2023, 4:58 PM

                                @Alan-Kilborn Thanks for the response Alan. I did not notice that and happy to see there’s a shortcut for it as well.

                                1 Reply Last reply Reply Quote 0
                                • K
                                  Kirill Shalygin
                                  last edited by Jul 4, 2023, 9:24 PM

                                  Hello,
                                  first of all - thank you all for your work! I like npp so much :)
                                  And it is quite pity that my first message here is a complain :(
                                  Seems I update npp too rarely… Today I’ve updated it from 8.4.7 up to current version. So much changes, maybe very useful - but I am very frustrated… There is no bash/shell syntax suport here? There is neither syntax choice (unser 'S, as earlier) not file extantion to save. Is it an error or feature? I had to rollback to good old 8.4.7 even if it costed me all my custom settings :(
                                  WBR
                                  Kirill

                                  P M 2 Replies Last reply Jul 4, 2023, 9:28 PM Reply Quote 1
                                  • P
                                    PeterJones @Kirill Shalygin
                                    last edited by PeterJones Jul 4, 2023, 9:28 PM Jul 4, 2023, 9:28 PM

                                    @Kirill-Shalygin said in Notepad++ v8.5.4 Release:

                                    There is no bash/shell syntax suport here?

                                    9754bc69-bc9b-4272-a17e-08c3fdb45ea2-image.png

                                    c16532eb-9e9d-41ca-b672-14a873e762a2-image.png

                                    It may be confusing because it’s called “Shell” in the Language menu but “Bash” in the Style Configurator.

                                    1 Reply Last reply Reply Quote 3
                                    • M
                                      mpheath @Kirill Shalygin
                                      last edited by Jul 5, 2023, 3:04 AM

                                      @Kirill-Shalygin said in Notepad++ v8.5.4 Release:

                                      …
                                      There is neither syntax choice (unser 'S, as earlier) not file extantion to save.
                                      …

                                      As for the Save as type, look for Unix script file

                                      Unix script file (*.bash;*.sh;*.bsh;*.csh;*.bash_profile;*.bashrc;*.profile; *.*.*.)
                                      

                                      which can append the extension if the checkbox is checked

                                      new 1.bash
                                      

                                      Tip: Focus the Save as type combobox and type the letter u and it will select the Unix script file item which can be quicker than viewing the long drop down list to find the item to select.

                                      K 1 Reply Last reply Jul 5, 2023, 8:52 AM Reply Quote 2
                                      • K
                                        Kirill Shalygin @mpheath
                                        last edited by Jul 5, 2023, 8:52 AM

                                        @mpheath thank you for check!
                                        ‘Highly probably’ :) there was a glitch somewhere in npp stored data. The full story looks like:

                                        • first update - there was no Shell in syntax
                                        • remove of the new version with data stored, then install 8.5.4 - Shell was absent yet
                                        • remove npp (data still not removed!) with rollback to 8.7.4 - there is no Shell again
                                        • full remove includung stored data, then 8.7.4 install - sucsess, Shell returned back!
                                        • update up to 8.5.4 - nothing is spoiled, Shell is OK.
                                          So now everithing is fine!
                                          BTW, maybe the reson of glitch is somewhere in localization? Historically I use russian in npp… Well, maybe it is the good reason to change language finally :)

                                        WBR
                                        Kirill

                                        M 1 Reply Last reply Jul 6, 2023, 10:42 AM Reply Quote 3
                                        • M
                                          mpheath @Kirill Shalygin
                                          last edited by Jul 6, 2023, 10:42 AM

                                          @Kirill-Shalygin said in Notepad++ v8.5.4 Release:

                                          …
                                          So now everithing is fine!
                                          BTW, maybe the reson of glitch is somewhere in localization? Historically I use russian in npp… Well, maybe it is the good reason to change language finally :)
                                          …

                                          Happy that you solved the problem :)

                                          I checked the sources for Bash (Shell) and it has not changed for about 6 years. I would suspect file corruption in %AppData%\Notepad++\langs.xml as that is where the file extensions and keywords are stored for Bash. Without a working extension identification for Bash, no automatic Bash language selection which causes no document styling and the Save dialog will not pre-select Unix scripts files in the combobox. Append extension string is localized though I consider as less likely as a cause so russian should be good.

                                          S 1 Reply Last reply Jul 7, 2023, 3:45 AM Reply Quote 1
                                          12 out of 30
                                          • First post
                                            12/30
                                            Last post
                                          The Community of users of the Notepad++ text editor.
                                          Powered by NodeBB | Contributors