• Login
Community
  • Login

Notepad++ v8.4.2 release

Scheduled Pinned Locked Moved Announcements
37 Posts 19 Posters 17.9k 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.
  • F
    Fruchtzwerg94 @Bas de Reuver
    last edited by Fruchtzwerg94 Jun 6, 2022, 6:36 PM Jun 6, 2022, 6:34 PM

    @bas-de-reuver
    as far as I know, the plugin list is compiled into the release of Notepad++. This means an update of the plugin list is not possible anymore for already relased versions of Notepad++.

    See GitHub: nppPluginList:
    The list is in JSON format, but encapsulated in a binary (DLL), so it can be signed by a certificate to avoid being hacked. Any Notepad++ plugin is welcome to be submitted here, but please test it locally before doing your PR.

    B 1 Reply Last reply Jun 6, 2022, 8:24 PM Reply Quote 2
    • B
      Bas de Reuver @Fruchtzwerg94
      last edited by Bas de Reuver Jun 6, 2022, 8:25 PM Jun 6, 2022, 8:24 PM

      @fruchtzwerg94 said in Notepad++ v8.4.2 release:

      This means an update of the plugin list is not possible anymore for already relased versions of Notepad++.

      Ah I see, yeah I kind of figured that, still it never hurts to ask. It’ll be updated eventually in a future v8.4.3 anyway

      1 Reply Last reply Reply Quote 0
      • P PeterJones referenced this topic on Jun 8, 2022, 1:46 PM
      • D
        donho @donho
        last edited by Jun 9, 2022, 12:16 PM

        FYI
        Auto-updater has been triggered for v8.4.2

        S 1 Reply Last reply Jun 9, 2022, 12:51 PM Reply Quote 1
        • S
          Shridhar Kumar @donho
          last edited by Shridhar Kumar Jun 9, 2022, 12:52 PM Jun 9, 2022, 12:51 PM

          @donho, is there some place where you let others know what the next release version number for Notepad++ is going to be i.e., before you have an RC version?

          For example, I see a lot of talk about the next release being 8.4.3. But it very well might be 8.4.2.1 or 8.5 or 9.0. Right?

          I ask this because sometimes we want to activate some features in our plugins based on the NPP version (for example, -pluginMessage="..." added in NPP 8.4.2). So, for us to have a check in the plugin code against the NPP version we will need that next release number. But if we wait too long until the RC version of NPP is put out with that next version number, then it might be too late for our plugin to be submitted for inclusion with the general release of NPP. This happened to my plugins with the NPP 8.4.2 cycle.

          P D 2 Replies Last reply Jun 9, 2022, 12:55 PM Reply Quote 1
          • P
            PeterJones @Shridhar Kumar
            last edited by Jun 9, 2022, 12:55 PM

            @shridhar-kumar said in Notepad++ v8.4.2 release:

            talk about the next release being 8.4.3. But it very well might be 8.4.2.1 or 8.5 or 9.0. Right?

            Instead of checking for ver>=8.4.3 in your plugin, couldn’t you check for ver>8.4.2 – you know the current version is 8.4.2, so the next version is guaranteed to be greater than that, whether it’s 8.4.3 or 8.4.2.1 or 8.5 or 9.0.

            T R 2 Replies Last reply Jun 9, 2022, 1:13 PM Reply Quote 2
            • T
              Troglo37 @PeterJones
              last edited by Jun 9, 2022, 1:13 PM

              I see that this version says, 3. Make toolbar icons customizable. I’ve been waiting for years to be able to change the toolbar icons.

              My first preference would be to have an option (in Settings > Preferences) for Standard Icons: Large. Why the heck they made those icons so small is beyond me.

              Because the icons are so small, I have to use Fluent UI: Large.

              How do I go about customizing the toolbar icons? I don’t see an easy way to do it, so I’m not going to piddle around and screw something up.

              A 1 Reply Last reply Jun 9, 2022, 1:23 PM Reply Quote 0
              • A
                Alan Kilborn @Troglo37
                last edited by Jun 9, 2022, 1:23 PM

                @troglo37

                First, please don’t pollute the release announcement thread with questions. This area should be for postings about actual problems with the released version.

                Second, for instructions per your request, take a look at the changes to the user manual (which haven’t quite made it to actual release yet, so maybe wait a day or so…).

                Third, in relation to:

                I’ve been waiting for years to be able to change the toolbar icons

                Why haven’t you tried the Customize Toolbar plugin for this?

                T 1 Reply Last reply Jun 9, 2022, 9:28 PM Reply Quote 1
                • A Alan Kilborn referenced this topic on Jun 9, 2022, 3:01 PM
                • R
                  rdipardo @PeterJones
                  last edited by Jun 9, 2022, 8:54 PM

                  @peterjones,

                  @shridhar-kumar said in Notepad++ v8.4.2 release:

                  talk about the next release being 8.4.3. But it very well might be 8.4.2.1 or 8.5 or 9.0. Right?

                  Instead of checking for ver>=8.4.3 in your plugin, couldn’t you check for ver>8.4.2 – you know the current version is 8.4.2, so the next version is guaranteed to be greater than that, whether it’s 8.4.3 or 8.4.2.1 or 8.5 or 9.0.

                  It’s “guaranteed” only if NPPM_GETNPPVERSION is called with the optional ADD_ZERO_PADDING flag. Otherwise, 8.4.2.1 returns 8 and 421, which is greater than 8 and 43, the presumptive next version, and 8.5 is less than both at 8 and 5. As documented, only versions 8.4.1 and up have the improved API, so at least two version checks are needed — one to discover the API, one more to use it.

                  I would say version string comparison remains the most foolproof option in all cases, assuming it’s based on the ascending sequence of ASCII ordinals.

                  $ tree --sort=name
                  ├── 8.4.2
                  ├── 8.4.2.1
                  ├── 8.4.3
                  ├── 8.5
                  └── 9.0
                  
                  1 Reply Last reply Reply Quote 2
                  • T
                    Troglo37 @Alan Kilborn
                    last edited by Jun 9, 2022, 9:28 PM

                    @alan-kilborn said in Notepad++ v8.4.2 release:

                    @troglo37

                    First, please don’t pollute the release announcement thread with questions. This area should be for postings about actual problems with the released version.

                    Second, for instructions per your request, take a look at the changes to the user manual (which haven’t quite made it to actual release yet, so maybe wait a day or so…).

                    Third, in relation to:

                    I’ve been waiting for years to be able to change the toolbar icons

                    Why haven’t you tried the Customize Toolbar plugin for this?

                    Sorry about that. I didn’t realize that’s what this thread is for. I’ll start a new one to continue my questions.

                    1 Reply Last reply Reply Quote 1
                    • D
                      donho @Shridhar Kumar
                      last edited by Jun 10, 2022, 1:07 AM

                      @shridhar-kumar said in Notepad++ v8.4.2 release:

                      is there some place where you let others know what the next release version number for Notepad++ is going to be i.e., before you have an RC version?
                      For example, I see a lot of talk about the next release being 8.4.3. But it very well might be 8.4.2.1 or 8.5 or 9.0. Right?

                      It’s not always easy to know the version number and sometimes it happens to change the version at the last minute. You can always request the version number on the GitHub by tagging me (Not here - I don’t get any notification from the forum). I’ll try my best to reply your request.

                      1 Reply Last reply Reply Quote 2
                      • J
                        Jordi Sole
                        last edited by Jun 10, 2022, 10:34 AM

                        Hello good day,

                        Notepad++ version 8.4.2 does not open in Windows 7. That is, the main window does not open. But the application runs as it appears in the task manager.
                        I can not send you any screenshot because there is nothing to show.

                        Greetings and thanks for everything.

                        F 1 Reply Last reply Jun 21, 2022, 7:56 AM Reply Quote 0
                        • J
                          Jordi Sole
                          last edited by Jun 10, 2022, 10:34 AM

                          Hello good day,

                          Notepad++ version 8.4.1 runs ok.

                          Greetings and thanks for everything.

                          1 Reply Last reply Reply Quote 0
                          • scrpt24546S
                            scrpt24546 @donho
                            last edited by Jun 10, 2022, 12:32 PM

                            @donho, Hi, just to mention, from a while (since a few updates), on each new release applied, in Settings / Style Configurator / Global Styles / Global override and Default Style, the Font Style / Font size setting we’ve made, is automatically overwritten with the default 10 value. So we have to manually revert back to our own settings which is again overwritten with 10 on next release

                            2de3b2b1-c2e9-4058-b1a8-0d8727d81544-image.png

                            52bd0342-5200-43e6-9074-40fd88028d3c-image.png

                            A 1 Reply Last reply Jun 10, 2022, 12:44 PM Reply Quote 0
                            • A
                              Alan Kilborn @scrpt24546
                              last edited by Alan Kilborn Jun 10, 2022, 12:45 PM Jun 10, 2022, 12:44 PM

                              @scrpt24546

                              As by your own admission it isn’t specific to 8.4.2, you’ll want to create a bug report to get this looked at. See HERE for how to do that.

                              scrpt24546S 1 Reply Last reply Jun 10, 2022, 1:03 PM Reply Quote 1
                              • scrpt24546S
                                scrpt24546 @Alan Kilborn
                                last edited by scrpt24546 Jun 10, 2022, 1:04 PM Jun 10, 2022, 1:03 PM

                                @alan-kilborn Thanks, I’m new to all of this and only created a Github account to post this issue quickly (will see if I used in either way later), I’m not aware of best practices, here and there, so surely bypassed some well-known rules
                                I will create a new post there, as suggested : https://github.com/notepad-plus-plus/notepad-plus-plus/issues

                                Thanks again

                                scrpt24546S 1 Reply Last reply Jun 10, 2022, 1:22 PM Reply Quote 3
                                • scrpt24546S
                                  scrpt24546 @scrpt24546
                                  last edited by Jun 10, 2022, 1:22 PM

                                  Here’s the created related issue : https://github.com/notepad-plus-plus/notepad-plus-plus/issues/11777

                                  1 Reply Last reply Reply Quote 2
                                  • Lycan ThropeL
                                    Lycan Thrope @donho
                                    last edited by Jun 20, 2022, 8:57 PM

                                    @donho ,
                                    Sorry to be late on this, but since it’s already released this may not be the place to do this, but I’ll put it here for references.
                                    The released version of 8.4.2 has a quirk that when it tries to update the app, it gives an error on the install of the CSVLint plugin not being compatible and offers to remove it. When you answer yes, it closes the dialog, but NPP never fires back up, and I waited a while, figuring it was going to take a while, but it never did come up. I double clicked the the desktop icon and the same dialog box keeps coming up, without sucessfully removing the plugin, and the program won’t start up. The fix is to manually remove the plugin directory from C:\Program Files\Notepad++\plugins folder.
                                    Dialog box:
                                    842updatefail.PNG

                                    Lycan ThropeL 1 Reply Last reply Jun 20, 2022, 9:18 PM Reply Quote 1
                                    • Lycan ThropeL
                                      Lycan Thrope @Lycan Thrope
                                      last edited by Jun 20, 2022, 9:18 PM

                                      @lycan-thrope
                                      Official report here.

                                      1 Reply Last reply Reply Quote 1
                                      • F
                                        fralbert @Jordi Sole
                                        last edited by Jun 21, 2022, 7:56 AM

                                        @jordi-sole

                                        No problem here :

                                        Npp_8.4.2_Win7.png

                                        1 Reply Last reply Reply Quote 0
                                        • TRT TubeT
                                          TRT Tube
                                          last edited by Jun 21, 2022, 2:34 PM

                                          hello i am having a critical error I can’t bulk search and replace in code after update I uninstalled the program and reinstalled it but the problem still persists.

                                          1 Reply Last reply Reply Quote 0
                                          • First post
                                            Last post
                                          The Community of users of the Notepad++ text editor.
                                          Powered by NodeBB | Contributors