Prepare to tag v0.1.0

This commit is contained in:
2024-04-16 11:33:06 -04:00
parent 93d7670508
commit db5f3ec7f4
3 changed files with 26 additions and 31 deletions
+17 -22
View File
@@ -20,32 +20,27 @@ MUTN is currently in early development and does not yet have online synchronizat
To build the current version of MUTN, simply clone this repository and run `go build` in its root directory. To build the current version of MUTN, simply clone this repository and run `go build` in its root directory.
# Roadmap # Roadmap
- Refactor for better modularity - Release v0.2.0 - No binaries
- Release v0.1.0 - No binaries
- Crete server software - Crete server software
- Add native sync - Add native sync (based on golang.org/x/crypto/ssh)
- Add netpin (quick-unlock replacement) functionality - Update entry format with reserved space for TOTP
- Release v0.2.0 - Make repo public - x86_64_v1 binary - Release v0.2.1 - No binaries
- Println text-wrapping
- Markdown support for notes
- Release v0.2.1 - x86_64_v1 binary
- Swap to native encryption, consider making GPG optional or removing entirely
- Swap to native SSH if not already done
- Release v0.3.0 - x86_64_v1 binary
- Replace init with interactive ttyPod-based menu - Replace init with interactive ttyPod-based menu
- Release v0.3.1 - x86_64_v1 binary - Release v0.3.0 - Make repo public - x86_64_v1 binary
- Password aging support - Swap to native encryption, consider making GPG optional or removing entirely
- Release v0.4.0 - x86_64_v1 binary - Release v0.4.0 - x86_64_v1 binary
- Password aging support
- Add password aging info to entry names
- Make constant character count to easily trim for user interaction
- Release v1.0.0 - Distribution packages (from here on out)
- Perform extensive testing, fixing, and optimizing - Perform extensive testing, fixing, and optimizing
- Create artwork - Create artwork
- Create manpage - Create manpage
- Create packaging script - Create packaging script
- Release v1.0.0 - Release v1.1.0
- Official packages for: - Cascading encryption support
- Arch Linux (AUR PKGBUILD, source-based with user's architecture feature level) - Release v1.2.0
- Debian 12+/Ubuntu 24.04+ Linux - Custom color scheme support
- Alpine Linux - Release v1.3.0
- Fedora Linux - Add build option for breaking markdown support and menus into separate binaries
- FreeBSD - Greatly reduces startup time
- Windows
- MacOS (aarch64 only)
+1 -1
View File
@@ -22,7 +22,7 @@ func RenameCli(oldLocation string) {
// exit is done from backend.Rename // exit is done from backend.Rename
} }
// EditEntryField edits a field of an entry at targetLocation (user input), does not allow for editing notes // EditEntryField edits a field of an entry at targetLocation (user input)
func EditEntryField(targetLocation string, hidePassword bool, field int) { func EditEntryField(targetLocation string, hidePassword bool, field int) {
// fetch old entry data (with all required lines present) // fetch old entry data (with all required lines present)
unencryptedEntry := backend.GetOldEntryData(targetLocation, field) unencryptedEntry := backend.GetOldEntryData(targetLocation, field)
+1 -1
View File
@@ -142,7 +142,7 @@ ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
" ◎-◎ // \\\\ " + ansiVersionMeat + "♥♥♥♥♥♥♥♥♥" + backend.AnsiReset + " // \\\\ /|\\\n" + " ◎-◎ // \\\\ " + ansiVersionMeat + "♥♥♥♥♥♥♥♥♥" + backend.AnsiReset + " // \\\\ /|\\\n" +
ansiVersionOutline + "<><><><><><><><><><><><><><>-<><><><><><><><><><><><><><>\n" + ansiVersionOutline + "<><><><><><><><><><><><><><>-<><><><><><><><><><><><><><>\n" +
"\\" + ansiBlackOnWhite + " " + backend.AnsiReset + ansiVersionOutline + "/\n" + "\\" + ansiBlackOnWhite + " " + backend.AnsiReset + ansiVersionOutline + "/\n" +
"\\" + ansiBlackOnWhite + " MUTN Version 0.0.1 " + backend.AnsiReset + ansiVersionOutline + "/\n" + "\\" + ansiBlackOnWhite + " MUTN Version 0.1.0 " + backend.AnsiReset + ansiVersionOutline + "/\n" +
"\\" + ansiBlackOnWhite + " The Butchered Update " + backend.AnsiReset + ansiVersionOutline + "/\n" + "\\" + ansiBlackOnWhite + " The Butchered Update " + backend.AnsiReset + ansiVersionOutline + "/\n" +
"\\" + ansiBlackOnWhite + " " + backend.AnsiReset + ansiVersionOutline + "/\n" + "\\" + ansiBlackOnWhite + " " + backend.AnsiReset + ansiVersionOutline + "/\n" +
"\\" + ansiBlackOnWhite + " Copyright (c) 2024 Randall Winkhart " + backend.AnsiReset + ansiVersionOutline + "/\n" + "\\" + ansiBlackOnWhite + " Copyright (c) 2024 Randall Winkhart " + backend.AnsiReset + ansiVersionOutline + "/\n" +