Community
    • Login
    1. Home
    2. Announcements
    Log in to post
    Load new posts
    • Recently Replied
    • Recently Created
    • Most Posts
    • Most Votes
    • Most Views
    • donhoD

      Notepad++ v8.6 Release Candidate

      Watching Ignoring Scheduled Pinned Locked Moved
      20
      10 Votes
      20 Posts
      2k Views
      donhoD

      Notepad++ v8.6 Release Candidate 2 is available here:
      https://community.notepad-plus-plus.org/topic/25158/notepad-v8-6-release-candidate-2

      The regression of DEL is fixed in RC2.

      @xomx
      https://github.com/notepad-plus-plus/wingup/pull/48 is included.

    • donhoD

      Notepad++ v8.5.8 Release

      Watching Ignoring Scheduled Pinned Locked Moved
      2
      8 Votes
      2 Posts
      10k Views
      donhoD

      Auto-update has been triggered for v8.5.8.

    • donhoD

      Notepad++ v8.5.8 Release Candidate

      Watching Ignoring Scheduled Pinned Locked Moved
      3
      5 Votes
      3 Posts
      1k Views
      donhoD

      Binaries Update (again, sorry about that):
      New updated binaries which contain the fix:
      https://github.com/notepad-plus-plus/notepad-plus-plus/commit/8e43b0adbaed0353a7a97c2ff4e2da3e2dc8efa8

    • donhoD

      Notepad++ v8.5.7 Release (Vulnerability fixes)

      Watching Ignoring Scheduled Pinned Locked Moved
      16
      6 Votes
      16 Posts
      35k Views
      I

      @donho said in Notepad++ v8.5.7 Release (Vulnerability fixes):

      @imanubdesigner said in Notepad++ v8.5.7 Release (Vulnerability fixes):

      It’s definitely something with the contextual menu, because if I use the portable version, which doesn’t insert anything into the contextual menu, everything works perfectly.

      This crash of NppShell is fixed in v8.5.8 release. The candidate of v8.5.8 is available here:
      https://community.notepad-plus-plus.org/topic/25015/notepad-v8-5-8-release-candidate

      Could you check it and confirm here that the issue has been fixed?

      I’m so sorry for delay of my reply. I can confirm that worked. This new 8.5.8 RC work perfectly in safe mode. I can’t see any refresh after right click. Thank you so much!

    • donhoD

      Notepad++ v8.5.7 Release Candidate

      Watching Ignoring Scheduled Pinned Locked Moved
      1
      6 Votes
      1 Posts
      2k Views
      No one has replied
    • donhoD

      Notepad++ v8.5.6 Release

      Watching Ignoring Scheduled Pinned Locked Moved
      7
      10 Votes
      7 Posts
      9k Views
      boot lyB

      I am very sorry that my post did not follow the rules and style shaped by many forum predecessors.
      I will delete that post I posted the day before yesterday.

      Thank you very much for your guidance.
      Thank you very much for the URL you provided, where I find an explanation of the issue I wanted to know.

      Finally, Really, really, thank you very much.

      @PeterJones said in Notepad++ v8.5.6 Release:

      This topic, with 8.5.6 in the name, is specific to changes that came with 8.5.6. you should have started a new topic, not replied to the 8.5.5-specific discussion.

      But really, as with joining any new forum, you should always check the FAQ list before posting, because:

      Suppose we have recorded a macro on version v8.5.2 and …

      FAQ exists on that question: v8.5.3 (and newer) Macros and Run-Menu Commands

    • donhoD

      Notepad++ v8.5.5 Release Candidate

      Watching Ignoring Scheduled Pinned Locked Moved
      4
      8 Votes
      4 Posts
      1k Views
      donhoD

      A small update of new binaries:
      Enhance “Convert case to Proper Case” command: fix the error conversion after quote:
      https://github.com/notepad-plus-plus/notepad-plus-plus/pull/13584

      Sorry for the inconvenience.

    • donhoD

      Notepad++ v8.5.4 Release

      Watching Ignoring Scheduled Pinned Locked Moved
      30
      7 Votes
      30 Posts
      13k Views
      wonkawillyW

      @Alan-Kilborn
      Thank you so much for the advice: I have corrected my mistake deleting the wrong post and moving it to General discussion section here: https://community.notepad-plus-plus.org/topic/24713/enhancement-request-plugins-admin-dialog-transform-the-search-feature-like-the-one-into-shortcut-mapper-s-dialog-incremental-filter
      Thank you again.

    • donhoD

      Notepad++ v8.5.2 Release

      Watching Ignoring Scheduled Pinned Locked Moved
      31
      7 Votes
      31 Posts
      13k Views
      Vess NedevskiV

      @David-Taylor I have the same issue after updating to NPP 8.5.4, please fix it.

    • donhoD

      Notepad++ v8.5.4 RC2

      Watching Ignoring Scheduled Pinned Locked Moved
      1
      3 Votes
      1 Posts
      550 Views
      No one has replied
    • donhoD

      Notepad++ v8.5.4 Release Candidate

      Watching Ignoring Scheduled Pinned Locked Moved
      1
      5 Votes
      1 Posts
      799 Views
      No one has replied
    • donhoD

      Notepad++ v8.5.3 Release Candidate

      Watching Ignoring Scheduled Pinned Locked Moved
      6
      6 Votes
      6 Posts
      1k Views
      donhoD

      @rddim
      Could you check this PR please?
      https://github.com/notepad-plus-plus/notepad-plus-plus/pull/13645

    • donhoD

      Notepad++ v8.4.9 Release

      Watching Ignoring Scheduled Pinned Locked Moved
      58
      9 Votes
      58 Posts
      18k Views
      rdipardoR

      @Coises, @Alan-Kilborn, @PeterJones

      Let me attempt to summarize, hopefully for someone’s benefit, what we know so far:

      Problem 1: cryptic language identifiers in the Tab Settings list box

      Cause: the window procedure that fills Tab Settings uses an instance of this Lang structure, which has a _langName member, filled by the name= attribute of langs.xml, which is identical to the Lexilla language identifier so that N++ can send it, unmodified, directly to Scintilla when creating the lexer (convenient for the developer, less so for end users).

      Potential Solution: There is already a ScintillaEditView::_langNameInfoArray type with a more readable _shortName member. The approriate _shortName could be looked up using the enumerated _langID which every Lang instance already has; or else the Lang type can be refactored to store it’s own pretty name.

      Problem 2: the first item, “[Default]”, is always selected in the Tab Settings listbox

      Cause: the window procedure that fills Tab Settings does this on purpose by always passing a 0 index to the dialog window.

      Potential Solution: the window procedure that sets the preference dialog needs access to an instance ScintillaEditView, which can look up the active lexer by calling getCurrentBuffer()->getCurrentLang(), then setting the index of the selected item appropriately.

      Sound like fun? Well, that’s Win32 GUI programming in C++ for you.

    • donhoD

      Notepad++ v8.5.2 Release Candidate

      Watching Ignoring Scheduled Pinned Locked Moved
      6
      8 Votes
      6 Posts
      2k Views
      donhoD

      FYI: it’s RC2 now.
      It’ll be released in one day.

    • donhoD

      Notepad++ v8.5.1 Release

      Watching Ignoring Scheduled Pinned Locked Moved
      26
      7 Votes
      26 Posts
      10k Views
      donhoD

      @Thomas-Böhmer
      The context menu entry issues are fixed in v8.5.2. Please try v8.5.2 here and let us know if your issue has been solved:
      https://community.notepad-plus-plus.org/topic/24328/notepad-v8-5-2-release-candidate

    • donhoD

      Notepad++ v8.5.1 Release Candidate

      Watching Ignoring Scheduled Pinned Locked Moved
      24
      7 Votes
      24 Posts
      3k Views
      donhoD

      FYI
      The new release will be based on RC2, which is more stable than other candidates are.

      Thank you for your testing and report!

    • donhoD

      Notepad++ 6.8.4 released

      Watching Ignoring Scheduled Pinned Locked Moved
      18
      0 Votes
      18 Posts
      48k Views
      Goku ZeusG

      @User-Soft said in Notepad++ 6.8.4 released:

      @donho said:

      @User-Soft Tested in v6.8.4 under Windows 10 32bits, “hide in try” works for me.

      Windows 7 64bits - not work.
      6.8.1 - work hide in tray, 6.8.4 - not work.

      Please check again Windows 7 64bits

      Yes, it worked.

    • donhoD

      Notepad++ v8.5 is Released

      Watching Ignoring Scheduled Pinned Locked Moved
      13
      12 Votes
      13 Posts
      8k Views
      EkopalypseE

      @Alan-Kilborn

      Thanks for looking over it, yes, before I just took the return value without sending the padding, now I do that. These are the kind of problems that take too much time just because someone didn’t read the doc properly… phew.

    • donhoD

      Notepad++ v8.4.8 Release

      Watching Ignoring Scheduled Pinned Locked Moved
      38
      9 Votes
      38 Posts
      13k Views
      Terry RT

      @MeanUncleMonster said in Notepad++ v8.4.8 Release:

      is there any way to retain this feature in the later versions

      I think you are referring to “enable scrolling beyond last line” which is under Settings, Preferences, Editing. Just tick the box for that option. I would have thought that option would have been retained from the previous version as it seems you did have it enabled.

      So the option was not removed, but in your case it may have been reset which led you to believe it was removed.

      Terry

      PS i just upgraded from and to the same versions as you refer to. In my situation the option was still enabled after the upgrade.

    • donhoD

      Notepad++ v8.5 Release Candidate

      Watching Ignoring Scheduled Pinned Locked Moved
      17
      8 Votes
      17 Posts
      2k Views
      donhoD

      @conky77

      It is not a “must”, but a comment in general ->“localization” could be useful: “* some strings will be updated after restarting Notepad++”.
      If you agree, I can insert an issue.

      It’s surely a limit but it’s not a bug to me. Users usually decide the language during installation. Even they switch later, the same language will stay for the next session. I won’t make the tips dynamically because it needs a lot of coding effort for nothing.

    The Community of users of the Notepad++ text editor.
    Powered by NodeBB | Contributors