mirror of
https://github.com/Crypto-Notepad/Crypto-Notepad.git
synced 2026-03-11 08:55:25 +00:00
Compare commits
16 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2a63ee57f1 | ||
|
|
776c256634 | ||
|
|
8af684412d | ||
|
|
977a645146 | ||
|
|
6261879d48 | ||
|
|
efb1f7d129 | ||
|
|
2940ddad92 | ||
|
|
3388b68ea7 | ||
|
|
1b80d3c21d | ||
|
|
cfb8f66138 | ||
|
|
3078871bd4 | ||
|
|
d65c0c4d26 | ||
|
|
9580fee1aa | ||
|
|
24f42c99fb | ||
|
|
342bedaabc | ||
|
|
3a5e786eea |
9 changed files with 36 additions and 14 deletions
|
|
@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
|
||||||
## Enforcement
|
## Enforcement
|
||||||
|
|
||||||
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
||||||
reported by contacting the project team at sigmanor@pm.me. All
|
reported by contacting the project team at dock-brunt-rarity@duck.com. All
|
||||||
complaints will be reviewed and investigated and will result in a response that
|
complaints will be reviewed and investigated and will result in a response that
|
||||||
is deemed necessary and appropriate to the circumstances. The project team is
|
is deemed necessary and appropriate to the circumstances. The project team is
|
||||||
obligated to maintain confidentiality with regard to the reporter of an incident.
|
obligated to maintain confidentiality with regard to the reporter of an incident.
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ Before starting, make sure that you visited the [projects](https://github.com/Cr
|
||||||
## How to contribute to Crypto Notepad
|
## How to contribute to Crypto Notepad
|
||||||
|
|
||||||
### Did you find any bug/have an idea how to improve the project?
|
### Did you find any bug/have an idea how to improve the project?
|
||||||
* Send me a message: [`telegram`](https://t.me/Sigmanor) [`facebook`](https://www.fb.com/SlGMANOR) [`email`](mailto:sigmanor@pm.me)
|
* Send me a message: [`email`](mailto:dock-brunt-rarity@duck.com)
|
||||||
* Create an [issue](https://github.com/Sigmanor/Crypto-Notepad/issues/new/choose).
|
* Create an [issue](https://github.com/Sigmanor/Crypto-Notepad/issues/new/choose).
|
||||||
|
|
||||||
### You can help me fix some bug/implement a new feature?
|
### You can help me fix some bug/implement a new feature?
|
||||||
|
|
|
||||||
|
|
@ -56,14 +56,15 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
<DebugType>PdbOnly</DebugType>
|
<DebugType>embedded</DebugType>
|
||||||
<Optimize>True</Optimize>
|
<Optimize>true</Optimize>
|
||||||
<OutputPath>bin\Release\</OutputPath>
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
<DefineConstants>TRACE</DefineConstants>
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||||
<Prefer32Bit>false</Prefer32Bit>
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
||||||
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
|
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
|
||||||
|
|
@ -81,6 +82,9 @@
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<NoWin32Manifest>true</NoWin32Manifest>
|
||||||
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="Costura, Version=4.1.0.0, Culture=neutral, PublicKeyToken=9919ef960d84173d, processorArchitecture=MSIL">
|
<Reference Include="Costura, Version=4.1.0.0, Culture=neutral, PublicKeyToken=9919ef960d84173d, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\Costura.Fody.4.1.0\lib\net40\Costura.dll</HintPath>
|
<HintPath>..\packages\Costura.Fody.4.1.0\lib\net40\Costura.dll</HintPath>
|
||||||
|
|
|
||||||
|
|
@ -1628,9 +1628,7 @@ private void ReadOnlyMainMenu_Click(object sender, EventArgs e)
|
||||||
private void InsertDateTimeMainMenu_Click(object sender, EventArgs e)
|
private void InsertDateTimeMainMenu_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
DateTime now = DateTime.Now;
|
DateTime now = DateTime.Now;
|
||||||
richTextBox.Text += now.ToString();
|
richTextBox.SelectedText = now.ToString();
|
||||||
richTextBox.SelectionStart = richTextBox.Text.Length;
|
|
||||||
richTextBox.ScrollToCaret();
|
|
||||||
richTextBox.Modified = true;
|
richTextBox.Modified = true;
|
||||||
if (!Text.Contains("*"))
|
if (!Text.Contains("*"))
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -33,4 +33,4 @@
|
||||||
// используя "*", как показано ниже:
|
// используя "*", как показано ниже:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("1.0.0.0")]
|
[assembly: AssemblyVersion("1.0.0.0")]
|
||||||
[assembly: AssemblyFileVersion("1.7.1.0")]
|
[assembly: AssemblyFileVersion("1.7.3.0")]
|
||||||
|
|
|
||||||
Binary file not shown.
2
LICENSE
2
LICENSE
|
|
@ -1,6 +1,6 @@
|
||||||
The MIT License (MIT)
|
The MIT License (MIT)
|
||||||
|
|
||||||
Copyright (c) 2019 Sigmanor
|
Copyright (c) 2022 Sigmanor
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|
|
||||||
28
README.md
28
README.md
|
|
@ -2,6 +2,11 @@
|
||||||
|
|
||||||
# Crypto Notepad [](https://twitter.com/intent/tweet?text=Simple%20notepad%20for%20Windows%20with%20encryption%20features.%20Download%20for%20free:%20https://crypto-notepad.github.io/&hashtags=notepad,encryption,windows,opensource,csharp)
|
# Crypto Notepad [](https://twitter.com/intent/tweet?text=Simple%20notepad%20for%20Windows%20with%20encryption%20features.%20Download%20for%20free:%20https://crypto-notepad.github.io/&hashtags=notepad,encryption,windows,opensource,csharp)
|
||||||
|
|
||||||
|
> [!WARNING]
|
||||||
|
> - **THE PROJECT HAS VERY LIMITED SUPPORT**
|
||||||
|
> - **NO NEW FEATURES ARE PLANNED**
|
||||||
|
> - **ONLY CRITICAL BUG FIXES WILL BE ADDRESSED**
|
||||||
|
|
||||||
[](https://github.com/Crypto-Notepad/Crypto-Notepad/releases/latest)
|
[](https://github.com/Crypto-Notepad/Crypto-Notepad/releases/latest)
|
||||||
[](https://github.com/Crypto-Notepad/Crypto-Notepad/blob/master/LICENSE)
|
[](https://github.com/Crypto-Notepad/Crypto-Notepad/blob/master/LICENSE)
|
||||||
[](https://github.com/Crypto-Notepad/Crypto-Notepad/wiki/Release-Notes)
|
[](https://github.com/Crypto-Notepad/Crypto-Notepad/wiki/Release-Notes)
|
||||||
|
|
@ -17,17 +22,32 @@ Notepad-like simple text editor for Windows, where files are saved and loaded en
|
||||||
* Associate own file type with application
|
* Associate own file type with application
|
||||||
* Integrate with windows context menu
|
* Integrate with windows context menu
|
||||||
* Сustomizable encryption options
|
* Сustomizable encryption options
|
||||||
|
* Built-in password generator
|
||||||
* Detecting links in editor
|
* Detecting links in editor
|
||||||
* Сustomizable interface
|
|
||||||
* Drag and Drop support
|
* Drag and Drop support
|
||||||
|
* Сustomizable interface
|
||||||
|
* Pasteboard function
|
||||||
|
* Autoclear clipboard
|
||||||
|
* Autolock editor
|
||||||
|
* Rich settings
|
||||||
* Portable
|
* Portable
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
### Via chocolatey:
|
||||||
|
```
|
||||||
|
choco install crypto-notepad
|
||||||
|
```
|
||||||
|
### Manual instalition:
|
||||||
|
- [Download](https://github.com/Crypto-Notepad/Crypto-Notepad/releases/latest) latest release.
|
||||||
|
- Unzip **Crypto.Notepad.zip** archive to any directory
|
||||||
|
- Run **Crypto Notepad.exe**
|
||||||
|
|
||||||
## System requirements
|
## System requirements
|
||||||
* Windows 7 SP1 and higher
|
* Windows 7 SP1 and higher
|
||||||
* .NET Framework 4.6.1 and higher
|
* .NET Framework 4.6.1 and higher
|
||||||
|
|
||||||
## Contributing
|
|
||||||
Want to help make the project better? Check out [CONTRIBUTING.md](https://github.com/Crypto-Notepad/Crypto-Notepad/blob/master/CONTRIBUTING.md) to get involved. Welcome! :octocat:
|
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
App was created in Visual Studio Community, you can run the *.sln file and simply build a project
|
App was created in Visual Studio Community, you can run the *.sln file and simply build a project
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
Want to help make the project better? Check out [CONTRIBUTING.md](https://github.com/Crypto-Notepad/Crypto-Notepad/blob/master/CONTRIBUTING.md) to get involved. Welcome! :octocat:
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
1.7.1.0
|
1.7.3.0
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue