Downloads:
72,809
Downloads of v 6.24.1221.1:
11
Last Update:
02 Jan 2025
Published Date:
02 Jan 2025
Package Maintainer(s):
Software Author(s):
- Rizonesoft
Tags:
notepad3 notepad notepad2 text editor- Software Specific:
- Software Site
- Software Source
- Software License
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Notepad3 (install)
(Waiting for Maintainer to take corrective action)
- 1
- 2
- 3
6.24.1221.1 | Updated: 02 Jan 2025
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
72,809
Downloads of v 6.24.1221.1:
11
Published:
02 Jan 2025
Maintainer(s):
Software Author(s):
- Rizonesoft
Notepad3 (install) 6.24.1221.1
(Waiting for Maintainer to take corrective action)
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Rizonesoft. The inclusion of Rizonesoft trademark(s), if any, upon this webpage is solely to identify Rizonesoft goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Validation Testing Failed
Verification Testing Pending
Scan Testing Pending
This package is likely a meta/virtual (*) or an installer (*.install) or portable (*.portable) application package.
- Meta/virtual (*) - has a dependency on the *.install or the *.portable package - it is provided for discoverability and for other packages to take a dependency on.
- Portable (*.portable/*.commandline (deprecated naming convention)/*.tool (deprecated naming convention)) - usually zips or archives that require no administrative access to install.
- Install (*.install/*.app (deprecated naming convention)) - uses native installers, usually requires administrative access to install.
Learn more about chocolatey's distinction of installed versus portable apps and/or learn about this kind of package.
This version is in moderation and has not yet been approved. This means it doesn't show up under normal search.
- Until approved, you should consider this package version unsafe - it could do very bad things to your system (it probably doesn't but you have been warned, that's why we have moderation).
- This package version can change wildly over the course of moderation until it is approved. If you install it and it later has changes to this version, you will be out of sync with any changes that have been made to the package. Until approved, you should consider that this package version doesn't even exist.
- You cannot install this package under normal scenarios. See How to install package version under moderation for more information.
- There are also no guarantees that it will be approved.
There are versions of this package awaiting moderation (possibly just this one). See the Version History section below.
Notepad3 is based on code from Florian Balmer's Notepad2 and XhmikosR's Notepad2-mod.
MiniPath is based on code from Florian Balmer's metapath.
Changes in Notepad3 compared to Notepad2
- Code folding
- Support for bookmarks
- Option to mark all occurrences of a word
- Updated Scintilla component
- Word auto-completion
- Syntax highlighting support for AutoHotkey, AutoIt3, AviSynth, Bash, CMake, CoffeeScript, Inno Setup, LaTeX, Lua, Markdown, NSIS, Ruby, Tcl, YAML and VHDL scripts
- Improved support for NFO ANSI art
- Support for replacing Windows Notepad using a clean, unintrusive registry-based method
- New toolbar icons based on Yusuke Kamiyaman's Fugue Icons (Purchased by Rizonesoft)
- New program icon and other small cosmetic changes
- High-DPI awareness, including high definition toolbar icons
- In-App support for AES-256 Rijndael encryption of files (incl. external commandline tool for batch processing)
- Multiline Regular Expression search engine (DeelX)
- Undo/Redo preserves selection
- Virtual Space rectangular selection box (Alt-Key down)
- Accelerated word navigation
- Preserve caret position of items in file history
- Visual Studio style copy/paste current line (no selection)
- Count occurrences of a marked selection or word
- Insert GUIDs
- Dropped support for Windows XP version
- Other various minor changes, tweaks and bugfixes
Changes in MiniPath compared to metapath
- Project upgraded to Visual C++ 2017
- 64-bit version
- New toolbar icons based on Yusuke Kamiyaman's Fugue Icons
- Purchased by Rizonesoft
- Installation bundled with Notepad3
- Minor cosmetic changes
$ErrorActionPreference = 'Stop'
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = 'notepad3 *'
fileType = 'EXE'
silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
validExitCodes= @(0)
}
$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $packageArgs['softwareName']
if ($key.Count -eq 1) {
$key | % {
$packageArgs['file'] = "$($_.UninstallString)"
Uninstall-ChocolateyPackage @packageArgs
}
} elseif ($key.Count -eq 0) {
Write-Warning "$env:ChocolateyPackageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
Write-Warning "$($key.Count) matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert package maintainer the following keys were matched:"
$key | % {Write-Warning "- $($_.DisplayName)"}
}
From: https://github.com/rizonesoft/Notepad3/blob/master/License.txt
LICENSE
Notepad3 and MiniPath Copyright © 2008-2016 Rizonesoft, All rights reserved.
https://www.rizonesoft.com
Notepad2 and metapath Copyright © 2004-2011 Florian Balmer
Notepad2-mod Copyright © 2010-2014 All contributors, see Readme.txt
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of Florian Balmer nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
md5: F271A40285CF4C73C2A42ACD51897B6A | sha1: 81AE00FCBE609E91448A36D69A2E930B61822FCF | sha256: 053A093066373A42B35C5E6D328F0AD70FF67FA4A55DB12498F26C73F20B220F | sha512: 40A81A0BE1F05D96D238688E46D1DF8C6369FD0B39085B1D53E73810880824C493906D6D967DAD3DB513950E3B3F3CAD1D99B3EE45ABFBE664CC3A547150672C
md5: 967CFB88354332DCC1EBF74880C88B30 | sha1: 04F95DEA26898047D3D5A4B61699AB90FD900D4E | sha256: 65698173E5E6FD77CE50386E8DF943A28D898826F406E91123D418A25E49C7DB | sha512: F68B3BAC4CC4B6DB1734EBD60FADA135D4DAB7127B453186D43EDBB6F5BA16FCF404027AEB932F529193E7AF570C7BFD43D25BBCB05A7F9985F54579074D5C95
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
The installer is available by following the link to download the
particular version on this page:
https://www.rizonesoft.com/downloads/notepad3/
Direct Download:
Version : 6.24.1221.1
x86 URL : https://github.com/rizonesoft/Notepad3/releases/download/RELEASE_6.24.1221.1/Notepad3_6.24.1221.1_x86_Setup.exe
x86 CheckSum : 65698173E5E6FD77CE50386E8DF943A28D898826F406E91123D418A25E49C7DB
x64 URL : https://github.com/rizonesoft/Notepad3/releases/download/RELEASE_6.24.1221.1/Notepad3_6.24.1221.1_x64_Setup.exe
x64 CheckSum : 053A093066373A42B35C5E6D328F0AD70FF67FA4A55DB12498F26C73F20B220F
No results available for this package. We are building up results for older packages over time so expect to see results. If this is a new package, it should have results within a day or two.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Notepad3 (install) 6.24.1221.1 | 11 | Thursday, January 2, 2025 |
Waiting for Maintainer
|
|
Notepad3 (install) 6.23.203.2 | 11321 | Tuesday, February 21, 2023 | Approved | |
Notepad3 (install) 5.21.1129.1 | 11115 | Friday, December 3, 2021 | Approved | |
Notepad3 (install) 5.21.905.1 | 5687 | Wednesday, September 8, 2021 | Approved | |
Notepad3 (install) 5.21.227.1 | 7015 | Monday, March 8, 2021 | Approved | |
Notepad3 (install) 5.20.915.1 | 4771 | Monday, September 28, 2020 | Approved | |
Notepad3 (install) 5.20.722.1 | 2145 | Tuesday, July 28, 2020 | Approved | |
Notepad3 (install) 5.20.414.1 | 3694 | Saturday, May 9, 2020 | Approved | |
Notepad3 (install) 5.19.815.2595 | 7843 | Tuesday, August 27, 2019 | Approved | |
Notepad3 (install) 5.19.630.2381 | 2264 | Friday, July 5, 2019 | Approved | |
Notepad3 (install) 5.19.108.1602 | 2869 | Saturday, January 19, 2019 | Approved | |
Notepad3 (install) 4.18.512.992 | 6433 | Friday, May 18, 2018 | Approved | |
Notepad3 (install) 3.18.311.928 | 933 | Monday, March 12, 2018 | Approved | |
Notepad3 (install) 3.18.223.908 | 526 | Wednesday, February 28, 2018 | Approved | |
Notepad3 (install) 3.18.131.862 | 682 | Monday, February 12, 2018 | Approved | |
Notepad3 (install) 3.18.113.828 | 623 | Wednesday, January 17, 2018 | Approved | |
Notepad3 (install) 3.18.105.802 | 443 | Friday, January 12, 2018 | Approved | |
Notepad3 (install) 3.17.1228.783 | 476 | Tuesday, January 2, 2018 | Approved | |
Notepad3 (install) 3.17.1210.729 | 541 | Monday, December 11, 2017 | Approved | |
Notepad3 (install) 3.17.1124.693 | 510 | Friday, December 1, 2017 | Approved | |
Notepad3 (install) 2.17.1023.632 | 631 | Tuesday, October 24, 2017 | Approved | |
Notepad3 (install) 2.17.1016.610 | 489 | Wednesday, October 18, 2017 | Approved | |
Notepad3 (install) 2.17.1003.548 | 485 | Thursday, October 5, 2017 | Approved | |
Notepad3 (install) 2.17.923.505 | 423 | Monday, September 25, 2017 | Approved | |
Notepad3 (install) 2.17.905.491 | 408 | Tuesday, September 19, 2017 | Approved | |
Notepad3 (install) 2.0.2.453 | 471 | Friday, September 1, 2017 | Approved |
Copyright © 2008-2016 Rizonesoft
This package has no dependencies.
Ground Rules:
- This discussion is only about Notepad3 (install) and the Notepad3 (install) package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Notepad3 (install), or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
teknowledgist (maintainer) on 02 Jan 2025 21:20:07 +00:00:
User 'teknowledgist' (maintainer) submitted package.
chocolatey-ops (reviewer) on 02 Jan 2025 21:55:08 +00:00:
notepad3.install has failed automated validation.
Requirements
Requirements represent the minimum quality of a package that is acceptable. When a package version has failed requirements, the package version requires fixing and/or response by the maintainer. Provided a Requirement has flagged correctly, it must be fixed before the package version can be approved. The exact same version should be uploaded during moderation review.
teknowledgist (maintainer) on 03 Jan 2025 16:17:33 +00:00:
Trying again by request.
Validation Status Change - Validation tests have been set to rerun.
chocolatey-ops (reviewer) on 03 Jan 2025 16:18:17 +00:00:
notepad3.install has failed automated validation.
Requirements
Requirements represent the minimum quality of a package that is acceptable. When a package version has failed requirements, the package version requires fixing and/or response by the maintainer. Provided a Requirement has flagged correctly, it must be fixed before the package version can be approved. The exact same version should be uploaded during moderation review.