• Login
Community
  • Login

Notepad++ v8.4.6 Release

Scheduled Pinned Locked Moved Announcements
54 Posts 25 Posters 30.3k 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.
  • A
    Alan Kilborn @Bas de Reuver
    last edited by Oct 1, 2022, 11:59 AM

    @Bas-de-Reuver said in Notepad++ v8.4.6 Release:

    Is it possible to still include the latest nppPluginList in this Notepad++ release?

    No. Probably should have prepared it during the RC phase, when it had a chance to get it.

    B 1 Reply Last reply Oct 1, 2022, 12:24 PM Reply Quote 1
    • B
      Bas de Reuver @Alan Kilborn
      last edited by Oct 1, 2022, 12:24 PM

      @Alan-Kilborn ok I understand, I’ll keep an eye on the Announcements posts more, and try to plan the timing of plugin updates better.

      1 Reply Last reply Reply Quote 2
      • B
        BillDavison
        last edited by Oct 2, 2022, 1:31 AM

        First time posting, but longtime Notepad++ user.

        I’m having printing problems that began with the upgrade to 8.4.6. The printed page has black text on a dark grey background, making it almost unreadable. This behavior is also visible in “print preview”. It affects all files, including newly created test files.

        Printing returns to normal if I turn off “display change history”.

        Debug info below:
        Notepad++ v8.4.6 (32-bit)
        Build time : Sep 25 2022 - 19:55:26
        Path : C:\Program Files (x86)\Notepad++\notepad++.exe
        Command Line :
        Admin mode : OFF
        Local Conf mode : OFF
        Cloud Config : OFF
        OS Name : Windows 10 Home (64-bit)
        OS Version : 21H2
        OS Build : 19044.2006
        Current ANSI codepage : 1252
        Plugins :
        DSpellCheck (1.4.21)
        Explorer (1.9.4)
        JSMinNPP (1.2006)
        mimeTools (2.8)
        NppConverter (4.4)
        NppExport (0.4)

        M 1 Reply Last reply Oct 10, 2022, 9:20 AM Reply Quote 0
        • M
          mattesh @donho
          last edited by Oct 2, 2022, 11:26 AM

          @donho @Iton-Horn
          I can confirm, something is broken.
          See comparing results with my AnalysePlugin
          https://sourceforge.net/p/analyseplugin/bugs/92/

          reason is that with commit 9455684b429449f668c1aedb77ec9dcb1642c244
          the value of the blue circle bookmark did change

          -const int MARK_BOOKMARK = 24;
          ...
          +const int MARK_BOOKMARK = 20;
          

          But this constant value is part of the Bookmark interface used in SCI_MARKERADD message.

          Proposal would be to change back the number, so that plugins can maintain using the blue bookmark as before.

          please, comment

          M D 2 Replies Last reply Oct 2, 2022, 11:53 AM Reply Quote 0
          • M
            Michael Vincent @mattesh
            last edited by Michael Vincent Oct 2, 2022, 11:56 AM Oct 2, 2022, 11:53 AM

            @mattesh said in Notepad++ v8.4.6 Release:

            Proposal would be to change back the number, so that plugins can maintain using the blue bookmark as before.
            please, comment

            Not going to happen. Plugins will need to adjust. The bookmark value needed to be changed to accommodate for change history feature from scintilla which uses that marker number (24).

            Cheers.

            1 Reply Last reply Reply Quote 4
            • D
              donho @mattesh
              last edited by Oct 2, 2022, 11:09 PM

              @mattesh @Iton-Horn

              reason is that with commit 9455684b429449f668c1aedb77ec9dcb1642c244
              the value of the blue circle bookmark did change
              But this constant value is part of the Bookmark interface used in SCI_MARKERADD message.

              Proposal would be to change back the number, so that plugins can maintain using the blue bookmark as before.

              Plugin authors should use NPPM_ALLOCATEMARKER to allocate marker ID, instead of using hard coded value:
              https://github.com/notepad-plus-plus/notepad-plus-plus/blob/master/PowerEditor/src/MISC/PluginsManager/Notepad_plus_msgs.h#L368

              Here is its usage:

              
              int newId = 0;
              BOOL isOK = ::SendMessage(nppHandle, NPPM_ALLOCATEMARKER, 3, (LPARAM) &newId);
              
              // If the value of isOK is true, you allocate your marker IDs successfully.
              // Let's say newId is 4, so 4 is your marker start ID, and you have allocated 3 markers - 4, 5, 6 are the 3 IDs reserved in Notepad++ for your plugin.  
              
              A 1 Reply Last reply Oct 3, 2022, 1:26 AM Reply Quote 4
              • A
                Alan Kilborn @donho
                last edited by Oct 3, 2022, 1:26 AM

                @donho said in Notepad++ v8.4.6 Release:

                Plugin authors should use NPPM_ALLOCATEMARKER to allocate marker ID, instead of using hard coded value

                That is good advice, but only for plugins creating something new. The reference here, as far as I can tell, is to the BookmarkDook plugin, which needs to use the same marker Notepad++ uses for (existing) bookmarks. As that is changed, the BookmarkDook plugin author will have to change as well.

                D 2 Replies Last reply Oct 3, 2022, 1:17 PM Reply Quote 2
                • D
                  donho @Alan Kilborn
                  last edited by Oct 3, 2022, 1:17 PM

                  @Alan-Kilborn

                  That is good advice, but only for plugins creating something new. The reference here, as far as I can tell, is to the BookmarkDook plugin, which needs to use the same marker Notepad++ uses for (existing) bookmarks. As that is changed, the BookmarkDook plugin author will have to change as well.

                  So in this case, a new API NPPM_GETBOOKMARKMARGINID will be made for plugins which use Bookmark Margin.

                  1 Reply Last reply Reply Quote 4
                  • D
                    donho @Alan Kilborn
                    last edited by donho Oct 3, 2022, 5:31 PM Oct 3, 2022, 5:29 PM

                    @Alan-Kilborn said in Notepad++ v8.4.6 Release:

                    That is good advice, but only for plugins creating something new. The reference here, as far as I can tell, is to the BookmarkDook plugin, which needs to use the same marker Notepad++ uses for (existing) bookmarks. As that is changed, the BookmarkDook plugin author will have to change as well.

                    However, I’ve just checked the ID of bookmark margin, there’s no change (_SC_MARGE_SYMBOL):
                    https://github.com/notepad-plus-plus/notepad-plus-plus/commit/fc32fbdcce371bb669c9361d62c959b1b61e33f0#diff-d88ddee57a027ab23daf332c4778ced0cee352edcb34efdda1b218e8a75c61b2

                    A 1 Reply Last reply Oct 3, 2022, 5:31 PM Reply Quote 0
                    • A
                      Alan Kilborn @donho
                      last edited by Alan Kilborn Oct 3, 2022, 5:34 PM Oct 3, 2022, 5:31 PM

                      @donho said in Notepad++ v8.4.6 Release:

                      However, I’ve just checked the ID of bookmark margin, there’s no change

                      It isn’t the margin id, it’s the marker id.
                      It used to be 24, now it is 20 .
                      @mattesh discussed this, above.

                      D 1 Reply Last reply Oct 4, 2022, 1:36 AM Reply Quote 3
                      • D
                        donho @Alan Kilborn
                        last edited by donho Oct 4, 2022, 1:36 AM Oct 4, 2022, 1:36 AM

                        @Alan-Kilborn
                        Thank you for pointing out the real problem.

                        NPPM_GETBOOKMARKID has been add in the master:
                        https://github.com/notepad-plus-plus/notepad-plus-plus/commit/4d5069280900ee249d358bc2b311bdb4b03f30a9

                        and the new API will be available in the next release.

                        N 1 Reply Last reply Oct 14, 2022, 3:45 PM Reply Quote 4
                        • F
                          fmorriso
                          last edited by Oct 6, 2022, 11:21 PM

                          As of October 2, 2022 at approximately 3:00 PM MDT, after upgrading the 64-bit version of Notepad++ from 8.4.5 to 8.4.6 on my 64-bit Windows 11 Home laptop computer, any attempt to launch Notepad++ is met with a large red background with white text error box that says “This app can’t run on your PC. To find a version for you PC, check with the software publisher”. The only button on that error message says “Close”.

                          Even downgrading to 8.4.5 does not work.

                          Even installing the 64-bit portable version from a ZIP file does not work.

                          Notepad++ is the ONLY application of the nearly 100 applications (good mix of regular and “Store” apps) that can no longer run on 64-bit Windows 11 Home edition as of October 2, 2022 at approximately 3:00 PM MDT.

                          P S 2 Replies Last reply Oct 6, 2022, 11:55 PM Reply Quote 0
                          • P
                            PeterJones @fmorriso
                            last edited by PeterJones Oct 6, 2022, 11:56 PM Oct 6, 2022, 11:55 PM

                            @fmorriso

                            Notepad++ is the ONLY application … that can no longer run on 64-bit Windows 11 Home edition as of October 2, 2022 at approximately 3:00 PM MDT.

                            753fb27b-45e9-41ae-8ffb-ffc8f7224ffd-image.png

                            It can and does run on Windows 11 Home.

                            1 Reply Last reply Reply Quote 3
                            • S
                              Stefan Pendl @fmorriso
                              last edited by Oct 7, 2022, 4:36 AM

                              @fmorriso
                              Have you updated automatically or manually?
                              If manually, have you used the x64 or the ARM64 installer?
                              If your system does not have an ARM processor, you will need the x64 installer.
                              Also always use the official download site at https://notepad-plus-plus.org/downloads/

                              1 Reply Last reply Reply Quote 2
                              • C
                                C VDSP
                                last edited by Oct 7, 2022, 12:05 PM

                                mailto URI is not working anymore since several versions

                                • Issue with versions: 8.1.1 (32-bit), 8.4.4 (32-bit/64-bit), 8.4.6 (32-bit)
                                • Tested OK with versions: 6.8.8, 7.3 (64-bit)
                                  Info:
                                  Link OK without an e-mail address: mailto://
                                  No link anymore when adding an e-mail address: mailto://user@domain.com
                                A P 2 Replies Last reply Oct 7, 2022, 12:17 PM Reply Quote 0
                                • A
                                  Alan Kilborn @C VDSP
                                  last edited by Oct 7, 2022, 12:17 PM

                                  @C-VDSP said in Notepad++ v8.4.6 Release:

                                  mailto URI is not working anymore since several versions

                                  Seems like you should create an issue so developers see it; see some instructions HERE for doing so.

                                  1 Reply Last reply Reply Quote 0
                                  • P
                                    PeterJones @C VDSP
                                    last edited by Oct 7, 2022, 8:50 PM

                                    @C-VDSP said in Notepad++ v8.4.6 Release:

                                    mailto URI is not working anymore since several versions

                                    It works just fine if you use mailto:username@domain.com per the mailto URI standard . So if you use correct syntax, Notepad++ still knows what to do with it.

                                    db4a4344-cd87-4753-8104-ef1a952d8f7c-image.png

                                    1 Reply Last reply Reply Quote 4
                                    • P PeterJones referenced this topic on Oct 8, 2022, 4:42 PM
                                    • D
                                      donho @donho
                                      last edited by Oct 9, 2022, 11:49 PM

                                      FYI: Auto-update has been triggered for v8.4.6.

                                      1 Reply Last reply Reply Quote 2
                                      • M
                                        Michał Łętowski @BillDavison
                                        last edited by Oct 10, 2022, 9:20 AM

                                        @BillDavison
                                        It’s “Change history” feature. Disable it and printing goes back to normal.

                                        B 1 Reply Last reply Oct 10, 2022, 12:19 PM Reply Quote 0
                                        • B
                                          BillDavison @Michał Łętowski
                                          last edited by Oct 10, 2022, 12:19 PM

                                          @Michał-Łętowski Thanks. I mentioned that in my post, though maybe not prominently.

                                          This is being tracked on the “issues” forum. I should have posted there originally, but didn’t know better at the time.

                                          A 1 Reply Last reply Oct 10, 2022, 12:26 PM Reply Quote 0
                                          22 out of 54
                                          • First post
                                            22/54
                                            Last post
                                          The Community of users of the Notepad++ text editor.
                                          Powered by NodeBB | Contributors