From cb267b20a5d0c7c7b3f2951432c66da7516c604a Mon Sep 17 00:00:00 2001
From: Keep Creating Online <53631862+PR0M3TH3AN@users.noreply.github.com>
Date: Mon, 21 Oct 2024 18:46:13 -0400
Subject: [PATCH 1/5] update
---
README.md | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/README.md b/README.md
index 430c4ad..bf211f0 100644
--- a/README.md
+++ b/README.md
@@ -227,3 +227,24 @@ For any questions, suggestions, or support, please open an issue on the [GitHub
- **Keyword Search:** Enable partial and case-insensitive searches.
- **Filter Options:** Allow users to filter search results based on multiple tags or specific criteria.
- **Advanced Search:** Incorporate Boolean operators (AND, OR, NOT) for more precise searches.
+
+### **6. Nostr Integration Enhancements**
+- **Add Option for Users to Specify Custom Set of Relays for Publishing Backup Index**
+ - **Description:** Provide users with the ability to select or configure specific Nostr relays where their encrypted backup index will be published.
+ - **Benefits:** Enhances flexibility and control over where backups are distributed, allowing users to choose trusted relays or optimize for performance and reliability.
+ - **Suggested Approach:**
+ - **User Interface:** Add settings in the application where users can input or select preferred relay URLs.
+ - **Validation:** Implement validation to ensure that the specified relays are active and support the necessary protocols.
+ - **Fallback Mechanism:** Allow users to add multiple relays to ensure redundancy in case some relays become unavailable.
+
+- **Modify JSON Index Nostr Post to Publish 10 Index Items Max per Post**
+ - **Description:** Adjust the mechanism for posting the JSON index to Nostr by limiting each post to a maximum of 10 index items (e.g., index 0-9, 10-19). This segmentation ensures that each Nostr post remains small and manageable.
+ - **Benefits:**
+ - **Efficiency:** Smaller posts reduce the risk of exceeding size limits and improve the speed of data transmission.
+ - **Scalability:** Facilitates handling larger databases by allowing the index to be pieced together from multiple posts rather than relying on a single large file.
+ - **Reliability:** Enhances the robustness of data retrieval by distributing the index across multiple posts, reducing the impact of potential data corruption in any single post.
+ - **Suggested Approach:**
+ - **Batching Logic:** Implement logic to divide the index entries into batches of 10 before publishing.
+ - **Sequential Posting:** Ensure that each batch is posted sequentially, maintaining the correct order of index entries.
+ - **Reconstruction Mechanism:** Develop a method for reconstructing the full index from multiple Nostr posts during retrieval, ensuring data integrity and consistency.
+ - **User Feedback:** Inform users about the batching process and provide indicators of the number of posts created for their index.
From 0969868ba25255e897500aa3f897067abc3e310c Mon Sep 17 00:00:00 2001
From: Keep Creating Online <53631862+PR0M3TH3AN@users.noreply.github.com>
Date: Mon, 21 Oct 2024 19:05:20 -0400
Subject: [PATCH 2/5] update
---
README.md | 97 ++++++++++++++++++++++++++++++++++++++++++++++++++++---
1 file changed, 93 insertions(+), 4 deletions(-)
diff --git a/README.md b/README.md
index bf211f0..dcf7d18 100644
--- a/README.md
+++ b/README.md
@@ -197,6 +197,13 @@ For any questions, suggestions, or support, please open an issue on the [GitHub
- **Multi-Factor Authentication (MFA):** Integrate MFA to enhance the security of the recovery process.
- **Encrypted Storage:** Ensure that recovery data is encrypted and stored securely.
+- **Add "Secret" Mode (Clipboard-Only Password Retrieval)**
+ - **Description:** Introduce a "secret" mode where passwords are copied directly to the clipboard rather than displayed on the screen upon retrieval. This mode should be a setting the user can toggle on or off.
+ - **Suggested Features:**
+ - **Toggle Setting:** Allow users to enable or disable "secret" mode.
+ - **Clipboard Integration:** Ensure passwords are copied securely to the clipboard when "secret" mode is active.
+ - **User Feedback:** Notify users that the password has been copied to the clipboard.
+
### **3. User Interface & Experience Improvements**
- **Show All Passwords**
- **Description:** Introduce a "Show All" option that displays all stored passwords along with their associated index entries.
@@ -243,8 +250,90 @@ For any questions, suggestions, or support, please open an issue on the [GitHub
- **Efficiency:** Smaller posts reduce the risk of exceeding size limits and improve the speed of data transmission.
- **Scalability:** Facilitates handling larger databases by allowing the index to be pieced together from multiple posts rather than relying on a single large file.
- **Reliability:** Enhances the robustness of data retrieval by distributing the index across multiple posts, reducing the impact of potential data corruption in any single post.
+
+### **7. Advanced CLI Mode**
+- **Develop an Advanced CLI Mode with Enhanced Functionalities**
+ - **Description:** Create a more sophisticated Command-Line Interface (CLI) mode that supports advanced operations beyond the basic functionalities.
+ - **Included Features:**
+ - **Custom Relays Configuration:** Allow users to specify a custom set of Nostr relays for publishing their backup index.
+ - **Batch Posting:** Enable the CLI to handle the segmentation of index entries into batches of 10 for Nostr posts.
+ - **Toggle "Secret" Mode:** Provide CLI commands to enable or disable "secret" mode for clipboard-only password retrieval.
- **Suggested Approach:**
- - **Batching Logic:** Implement logic to divide the index entries into batches of 10 before publishing.
- - **Sequential Posting:** Ensure that each batch is posted sequentially, maintaining the correct order of index entries.
- - **Reconstruction Mechanism:** Develop a method for reconstructing the full index from multiple Nostr posts during retrieval, ensuring data integrity and consistency.
- - **User Feedback:** Inform users about the batching process and provide indicators of the number of posts created for their index.
+ - **Command Structure:** Design intuitive commands and flags to manage advanced settings.
+ - **User Feedback:** Ensure that the CLI provides clear feedback and confirmations for advanced operations.
+ - **Error Handling:** Implement robust error handling to manage issues specific to advanced functionalities.
+
+---
+
+## **Updated Advanced CLI Commands**
+
+Here's an expanded table of **Advanced CLI Commands** that incorporates both your existing commands and the new functionalities you've outlined:
+
+| **Action** | **Command** | **Short Flag** | **Long Flag** | **Example Command** |
+|-------------------------------------------|------------------------|----------------|-----------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| Add a new password entry | `add` | `-A` | `--add` | `passmgr add --title "GitHub" --url "https://github.com" --username "john_doe" --email "john@example.com" --notes "Primary GitHub account" --tags "work,development" --length 20` |
+| Retrieve a password entry | `retrieve` | `-R` | `--retrieve` | `passmgr retrieve --index 3` or `passmgr retrieve --title "GitHub"` |
+| Modify an existing entry | `modify` | `-M` | `--modify` | `passmgr modify --index 3 --title "GitHub Pro" --notes "Updated to pro account" --tags "work,development,pro" --length 22` |
+| Delete an entry | `delete` | `-D` | `--delete` | `passmgr delete --index 3` |
+| List all entries | `list` | `-L` | `--list` | `passmgr list` |
+| Search for a password entry | `search` | `-S` | `--search` | `passmgr search --query "GitHub"` |
+| Export passwords to a file | `export` | `-E` | `--export` | `passmgr export --file "backup_passwords.json"` |
+| Import passwords from a file | `import` | `-I` | `--import` | `passmgr import --file "backup_passwords.json"` |
+| Display help information | `help` | `-H` | `--help` | `passmgr help` |
+| Display application version | `version` | `-V` | `--version` | `passmgr version` |
+| Change master password | `changepw` | `-C` | `--changepw` | `passmgr changepw --new "NewSecureP@ssw0rd!"` |
+| Enable auto-lock | `autolock --enable` | `-AL` | `--auto-lock --enable` | `passmgr autolock --enable --timeout 10` |
+| Disable auto-lock | `autolock --disable` | `-DL` | `--auto-lock --disable` | `passmgr autolock --disable` |
+| Generate a strong password | `generate` | `-G` | `--generate` | `passmgr generate --length 20` |
+| Verify script checksum | `verify` | `-V` | `--verify` | `passmgr verify` |
+| Post encrypted index to Nostr | `post` | `-P` | `--post` | `passmgr post` |
+| Retrieve from Nostr | `get-nostr` | `-GN` | `--get-nostr` | `passmgr get-nostr` |
+| Display Nostr public key | `show-pubkey` | `-K` | `--show-pubkey` | `passmgr show-pubkey` |
+| **Set Custom Nostr Relays** | `set-relays` | `-SR` | `--set-relays` | `passmgr set-relays --add "wss://relay1.example.com" --add "wss://relay2.example.com"` |
+| **Enable "Secret" Mode** | `set-secret` | `-SS` | `--set-secret` | `passmgr set-secret --enable` or `passmgr set-secret --disable` |
+| **Batch Post Index Items to Nostr** | `batch-post` | `-BP` | `--batch-post` | `passmgr batch-post --start 0 --end 9` or `passmgr batch-post --range 10-19` |
+| **Show All Passwords** | `show-all` | `-SA` | `--show-all` | `passmgr show-all` |
+| **Add Notes to an Entry** | `add-notes` | `-AN` | `--add-notes` | `passmgr add-notes --index 3 --notes "This is a secured account"` |
+| **Add Tags to an Entry** | `add-tags` | `-AT` | `--add-tags` | `passmgr add-tags --index 3 --tags "personal,finance"` |
+| **Search by Tag or Title** | `search-by` | `-SB` | `--search-by` | `passmgr search-by --tag "work"` or `passmgr search-by --title "GitHub"` |
+
+---
+
+### **Notes on New CLI Commands**
+
+1. **Set Custom Nostr Relays (`set-relays`):**
+ - **Purpose:** Allows users to specify which Nostr relays their backup indexes should be published to.
+ - **Usage Examples:**
+ - Add multiple relays: `passmgr set-relays --add "wss://relay1.example.com" --add "wss://relay2.example.com"`
+ - Remove a relay: `passmgr set-relays --remove "wss://relay1.example.com"`
+ - List current relays: `passmgr set-relays --list`
+
+2. **Enable "Secret" Mode (`set-secret`):**
+ - **Purpose:** Toggles the "secret" mode where passwords are copied to the clipboard instead of being displayed on the screen.
+ - **Usage Examples:**
+ - Enable secret mode: `passmgr set-secret --enable`
+ - Disable secret mode: `passmgr set-secret --disable`
+
+3. **Batch Post Index Items to Nostr (`batch-post`):**
+ - **Purpose:** Publishes segments of the index (e.g., 10 items per post) to Nostr to manage large databases efficiently.
+ - **Usage Examples:**
+ - Post indexes 0-9: `passmgr batch-post --start 0 --end 9`
+ - Post indexes 10-19: `passmgr batch-post --range 10-19`
+
+4. **Show All Passwords (`show-all`):**
+ - **Purpose:** Displays all stored passwords along with their index entries.
+ - **Usage Example:** `passmgr show-all`
+
+5. **Add Notes to an Entry (`add-notes`):**
+ - **Purpose:** Adds or updates the "Notes" field for a specific password entry.
+ - **Usage Example:** `passmgr add-notes --index 3 --notes "This is a secured account"`
+
+6. **Add Tags to an Entry (`add-tags`):**
+ - **Purpose:** Adds or updates the "Tags" field for a specific password entry.
+ - **Usage Example:** `passmgr add-tags --index 3 --tags "personal,finance"`
+
+7. **Search by Tag or Title (`search-by`):**
+ - **Purpose:** Enables searching for password entries based on tags or titles.
+ - **Usage Examples:**
+ - Search by tag: `passmgr search-by --tag "work"`
+ - Search by title: `passmgr search-by --title "GitHub"`
\ No newline at end of file
From 55eb008f7e182cc483ee3927b6f50d1d4d6b7362 Mon Sep 17 00:00:00 2001
From: Keep Creating Online <53631862+PR0M3TH3AN@users.noreply.github.com>
Date: Mon, 21 Oct 2024 19:32:26 -0400
Subject: [PATCH 3/5] update
---
landing/index.html | 59 +++++++
landing/script.js | 5 +
landing/style.css | 151 ++++++++++++++++++
{SeedPass Logo => logo}/ASCII_LOGO.txt | 0
{SeedPass Logo => logo}/SeedPass-Logo.ai | 0
{SeedPass Logo => logo}/SeedPass-Logo.eps | Bin
.../png/SeedPass-Logo-03.png | Bin
.../png/SeedPass-Logo-04.png | Bin
.../png/SeedPass-Logo-05.png | Bin
.../png/SeedPass-Logo-06.png | Bin
.../png/SeedPass-Logo-07.png | Bin
.../png/SeedPass-Logo-08.png | Bin
.../png/SeedPass-Logo-09.png | Bin
.../png/SeedPass-Logo-10.png | Bin
.../png/SeedPass-Logo-11.png | Bin
.../png/SeedPass-Logo-12.png | Bin
.../png/SeedPass-Logo-13.png | Bin
.../png/SeedPass-Logo-14.png | Bin
.../png/SeedPass-Logo-15.png | Bin
.../png/SeedPass-Logo-16.png | Bin
.../svg/SeedPass-Logo-03.svg | 0
.../svg/SeedPass-Logo-04.svg | 0
.../svg/SeedPass-Logo-05.svg | 0
.../svg/SeedPass-Logo-06.svg | 0
.../svg/SeedPass-Logo-07.svg | 0
.../svg/SeedPass-Logo-08.svg | 0
.../svg/SeedPass-Logo-09.svg | 0
.../svg/SeedPass-Logo-10.svg | 0
.../svg/SeedPass-Logo-11.svg | 0
.../svg/SeedPass-Logo-12.svg | 0
.../svg/SeedPass-Logo-13.svg | 0
.../svg/SeedPass-Logo-14.svg | 0
.../svg/SeedPass-Logo-15.svg | 0
.../svg/SeedPass-Logo-16.svg | 0
{SeedPass Logo => logo}/svg/SeedPass-Logo.svg | 0
35 files changed, 215 insertions(+)
create mode 100644 landing/index.html
create mode 100644 landing/script.js
create mode 100644 landing/style.css
rename {SeedPass Logo => logo}/ASCII_LOGO.txt (100%)
rename {SeedPass Logo => logo}/SeedPass-Logo.ai (100%)
rename {SeedPass Logo => logo}/SeedPass-Logo.eps (100%)
rename {SeedPass Logo => logo}/png/SeedPass-Logo-03.png (100%)
rename {SeedPass Logo => logo}/png/SeedPass-Logo-04.png (100%)
rename {SeedPass Logo => logo}/png/SeedPass-Logo-05.png (100%)
rename {SeedPass Logo => logo}/png/SeedPass-Logo-06.png (100%)
rename {SeedPass Logo => logo}/png/SeedPass-Logo-07.png (100%)
rename {SeedPass Logo => logo}/png/SeedPass-Logo-08.png (100%)
rename {SeedPass Logo => logo}/png/SeedPass-Logo-09.png (100%)
rename {SeedPass Logo => logo}/png/SeedPass-Logo-10.png (100%)
rename {SeedPass Logo => logo}/png/SeedPass-Logo-11.png (100%)
rename {SeedPass Logo => logo}/png/SeedPass-Logo-12.png (100%)
rename {SeedPass Logo => logo}/png/SeedPass-Logo-13.png (100%)
rename {SeedPass Logo => logo}/png/SeedPass-Logo-14.png (100%)
rename {SeedPass Logo => logo}/png/SeedPass-Logo-15.png (100%)
rename {SeedPass Logo => logo}/png/SeedPass-Logo-16.png (100%)
rename {SeedPass Logo => logo}/svg/SeedPass-Logo-03.svg (100%)
rename {SeedPass Logo => logo}/svg/SeedPass-Logo-04.svg (100%)
rename {SeedPass Logo => logo}/svg/SeedPass-Logo-05.svg (100%)
rename {SeedPass Logo => logo}/svg/SeedPass-Logo-06.svg (100%)
rename {SeedPass Logo => logo}/svg/SeedPass-Logo-07.svg (100%)
rename {SeedPass Logo => logo}/svg/SeedPass-Logo-08.svg (100%)
rename {SeedPass Logo => logo}/svg/SeedPass-Logo-09.svg (100%)
rename {SeedPass Logo => logo}/svg/SeedPass-Logo-10.svg (100%)
rename {SeedPass Logo => logo}/svg/SeedPass-Logo-11.svg (100%)
rename {SeedPass Logo => logo}/svg/SeedPass-Logo-12.svg (100%)
rename {SeedPass Logo => logo}/svg/SeedPass-Logo-13.svg (100%)
rename {SeedPass Logo => logo}/svg/SeedPass-Logo-14.svg (100%)
rename {SeedPass Logo => logo}/svg/SeedPass-Logo-15.svg (100%)
rename {SeedPass Logo => logo}/svg/SeedPass-Logo-16.svg (100%)
rename {SeedPass Logo => logo}/svg/SeedPass-Logo.svg (100%)
diff --git a/landing/index.html b/landing/index.html
new file mode 100644
index 0000000..9f2f011
--- /dev/null
+++ b/landing/index.html
@@ -0,0 +1,59 @@
+
+
+
SeedPass is a secure password generator and manager built on Bitcoin's BIP-85 standard. It uses deterministic key derivation to generate passwords that are never stored but can be easily regenerated when needed.
+
By integrating with the Nostr network, SeedPass ensures that your passwords are safe and accessible across devices.
Encrypted local storage for seeds and sensitive data
+
Nostr integration for secure backup and retrieval
+
Checksum verification for integrity checks
+
User-friendly command-line interface
+
+
+
+
+
+
+
Disclaimer
+
⚠️ Use with Caution: This software was not developed by an experienced security expert. There may be bugs and missing features, and security vulnerabilities may exist. Always backup your data and be cautious while using it in sensitive environments.
+
+
+
+
+
+
+
+
+
diff --git a/landing/script.js b/landing/script.js
new file mode 100644
index 0000000..6fbf49d
--- /dev/null
+++ b/landing/script.js
@@ -0,0 +1,5 @@
+// Add any JavaScript functionality here if needed
+// For example, you can add animations, smooth scroll, or event handlers
+document.addEventListener('DOMContentLoaded', function() {
+ console.log('SeedPass landing page loaded');
+});
diff --git a/landing/style.css b/landing/style.css
new file mode 100644
index 0000000..bc17c92
--- /dev/null
+++ b/landing/style.css
@@ -0,0 +1,151 @@
+/* General Reset */
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+}
+
+body {
+ font-family: 'Roboto', sans-serif;
+ line-height: 1.6;
+ background-color: #f4f4f9;
+ color: #283c4f;
+}
+
+/* Navbar */
+.navbar {
+ background-color: #e94a39; /* Red background */
+ padding: 40px 0;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+.navbar .logo {
+ max-width: 250px;
+}
+
+/* Hero/Intro Section */
+.intro {
+ text-align: center;
+ padding: 100px 20px;
+ background-color: #e94a39; /* Red background for hero section */
+ color: #ffffff; /* White text for contrast */
+}
+
+.intro h1 {
+ font-size: 2.5rem;
+ color: #ffffff;
+ margin-bottom: 20px;
+}
+
+.intro p {
+ font-size: 1.2rem;
+ color: #ffffff;
+ margin-bottom: 20px;
+}
+
+/* Call-to-Action (CTA) Button */
+.cta-button {
+ display: inline-block;
+ margin-top: 30px;
+ background-color: #ffffff; /* White background */
+ color: #e94a39; /* Red text */
+ padding: 15px 30px;
+ font-size: 1.2rem;
+ font-weight: bold;
+ text-decoration: none;
+ border-radius: 6px;
+ border: 2px solid #ffffff; /* White border */
+ transition: background-color 0.3s ease, color 0.3s ease;
+}
+
+.cta-button:hover {
+ background-color: #e94a39;
+ color: #ffffff;
+ border: 2px solid #ffffff; /* Button changes on hover */
+}
+
+/* Features Section */
+.features {
+ background-color: #f4f4f9;
+ padding: 60px 20px;
+}
+
+.features h2 {
+ text-align: center;
+ font-size: 2rem;
+ color: #e94a39;
+ margin-bottom: 40px;
+}
+
+.features ul {
+ max-width: 900px;
+ margin: 0 auto;
+ list-style: none;
+ padding: 0;
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ grid-gap: 20px;
+}
+
+.features ul li {
+ background-color: #ffffff;
+ padding: 20px;
+ border-radius: 8px;
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s ease;
+}
+
+.features ul li:hover {
+ transform: translateY(-5px);
+}
+
+/* Disclaimer Section */
+.disclaimer {
+ padding: 40px 20px;
+ background-color: #283c4f;
+ color: white;
+ text-align: center;
+}
+
+.disclaimer h2 {
+ color: #e94a39;
+ margin-bottom: 20px;
+}
+
+.disclaimer p {
+ max-width: 800px;
+ margin: 0 auto;
+ font-size: 1.1rem;
+ text-align: center;
+}
+
+/* Footer */
+footer {
+ background-color: #f4f4f9;
+ padding: 20px 0;
+ text-align: center;
+ font-size: 0.9rem;
+ color: #555;
+}
+
+/* Responsive */
+@media screen and (max-width: 768px) {
+ .navbar {
+ flex-direction: column;
+ }
+
+ .navbar .logo {
+ margin-bottom: 10px;
+ }
+
+ .cta-button {
+ width: 100%;
+ text-align: center;
+ }
+
+ .features ul {
+ grid-template-columns: 1fr;
+ }
+}
diff --git a/SeedPass Logo/ASCII_LOGO.txt b/logo/ASCII_LOGO.txt
similarity index 100%
rename from SeedPass Logo/ASCII_LOGO.txt
rename to logo/ASCII_LOGO.txt
diff --git a/SeedPass Logo/SeedPass-Logo.ai b/logo/SeedPass-Logo.ai
similarity index 100%
rename from SeedPass Logo/SeedPass-Logo.ai
rename to logo/SeedPass-Logo.ai
diff --git a/SeedPass Logo/SeedPass-Logo.eps b/logo/SeedPass-Logo.eps
similarity index 100%
rename from SeedPass Logo/SeedPass-Logo.eps
rename to logo/SeedPass-Logo.eps
diff --git a/SeedPass Logo/png/SeedPass-Logo-03.png b/logo/png/SeedPass-Logo-03.png
similarity index 100%
rename from SeedPass Logo/png/SeedPass-Logo-03.png
rename to logo/png/SeedPass-Logo-03.png
diff --git a/SeedPass Logo/png/SeedPass-Logo-04.png b/logo/png/SeedPass-Logo-04.png
similarity index 100%
rename from SeedPass Logo/png/SeedPass-Logo-04.png
rename to logo/png/SeedPass-Logo-04.png
diff --git a/SeedPass Logo/png/SeedPass-Logo-05.png b/logo/png/SeedPass-Logo-05.png
similarity index 100%
rename from SeedPass Logo/png/SeedPass-Logo-05.png
rename to logo/png/SeedPass-Logo-05.png
diff --git a/SeedPass Logo/png/SeedPass-Logo-06.png b/logo/png/SeedPass-Logo-06.png
similarity index 100%
rename from SeedPass Logo/png/SeedPass-Logo-06.png
rename to logo/png/SeedPass-Logo-06.png
diff --git a/SeedPass Logo/png/SeedPass-Logo-07.png b/logo/png/SeedPass-Logo-07.png
similarity index 100%
rename from SeedPass Logo/png/SeedPass-Logo-07.png
rename to logo/png/SeedPass-Logo-07.png
diff --git a/SeedPass Logo/png/SeedPass-Logo-08.png b/logo/png/SeedPass-Logo-08.png
similarity index 100%
rename from SeedPass Logo/png/SeedPass-Logo-08.png
rename to logo/png/SeedPass-Logo-08.png
diff --git a/SeedPass Logo/png/SeedPass-Logo-09.png b/logo/png/SeedPass-Logo-09.png
similarity index 100%
rename from SeedPass Logo/png/SeedPass-Logo-09.png
rename to logo/png/SeedPass-Logo-09.png
diff --git a/SeedPass Logo/png/SeedPass-Logo-10.png b/logo/png/SeedPass-Logo-10.png
similarity index 100%
rename from SeedPass Logo/png/SeedPass-Logo-10.png
rename to logo/png/SeedPass-Logo-10.png
diff --git a/SeedPass Logo/png/SeedPass-Logo-11.png b/logo/png/SeedPass-Logo-11.png
similarity index 100%
rename from SeedPass Logo/png/SeedPass-Logo-11.png
rename to logo/png/SeedPass-Logo-11.png
diff --git a/SeedPass Logo/png/SeedPass-Logo-12.png b/logo/png/SeedPass-Logo-12.png
similarity index 100%
rename from SeedPass Logo/png/SeedPass-Logo-12.png
rename to logo/png/SeedPass-Logo-12.png
diff --git a/SeedPass Logo/png/SeedPass-Logo-13.png b/logo/png/SeedPass-Logo-13.png
similarity index 100%
rename from SeedPass Logo/png/SeedPass-Logo-13.png
rename to logo/png/SeedPass-Logo-13.png
diff --git a/SeedPass Logo/png/SeedPass-Logo-14.png b/logo/png/SeedPass-Logo-14.png
similarity index 100%
rename from SeedPass Logo/png/SeedPass-Logo-14.png
rename to logo/png/SeedPass-Logo-14.png
diff --git a/SeedPass Logo/png/SeedPass-Logo-15.png b/logo/png/SeedPass-Logo-15.png
similarity index 100%
rename from SeedPass Logo/png/SeedPass-Logo-15.png
rename to logo/png/SeedPass-Logo-15.png
diff --git a/SeedPass Logo/png/SeedPass-Logo-16.png b/logo/png/SeedPass-Logo-16.png
similarity index 100%
rename from SeedPass Logo/png/SeedPass-Logo-16.png
rename to logo/png/SeedPass-Logo-16.png
diff --git a/SeedPass Logo/svg/SeedPass-Logo-03.svg b/logo/svg/SeedPass-Logo-03.svg
similarity index 100%
rename from SeedPass Logo/svg/SeedPass-Logo-03.svg
rename to logo/svg/SeedPass-Logo-03.svg
diff --git a/SeedPass Logo/svg/SeedPass-Logo-04.svg b/logo/svg/SeedPass-Logo-04.svg
similarity index 100%
rename from SeedPass Logo/svg/SeedPass-Logo-04.svg
rename to logo/svg/SeedPass-Logo-04.svg
diff --git a/SeedPass Logo/svg/SeedPass-Logo-05.svg b/logo/svg/SeedPass-Logo-05.svg
similarity index 100%
rename from SeedPass Logo/svg/SeedPass-Logo-05.svg
rename to logo/svg/SeedPass-Logo-05.svg
diff --git a/SeedPass Logo/svg/SeedPass-Logo-06.svg b/logo/svg/SeedPass-Logo-06.svg
similarity index 100%
rename from SeedPass Logo/svg/SeedPass-Logo-06.svg
rename to logo/svg/SeedPass-Logo-06.svg
diff --git a/SeedPass Logo/svg/SeedPass-Logo-07.svg b/logo/svg/SeedPass-Logo-07.svg
similarity index 100%
rename from SeedPass Logo/svg/SeedPass-Logo-07.svg
rename to logo/svg/SeedPass-Logo-07.svg
diff --git a/SeedPass Logo/svg/SeedPass-Logo-08.svg b/logo/svg/SeedPass-Logo-08.svg
similarity index 100%
rename from SeedPass Logo/svg/SeedPass-Logo-08.svg
rename to logo/svg/SeedPass-Logo-08.svg
diff --git a/SeedPass Logo/svg/SeedPass-Logo-09.svg b/logo/svg/SeedPass-Logo-09.svg
similarity index 100%
rename from SeedPass Logo/svg/SeedPass-Logo-09.svg
rename to logo/svg/SeedPass-Logo-09.svg
diff --git a/SeedPass Logo/svg/SeedPass-Logo-10.svg b/logo/svg/SeedPass-Logo-10.svg
similarity index 100%
rename from SeedPass Logo/svg/SeedPass-Logo-10.svg
rename to logo/svg/SeedPass-Logo-10.svg
diff --git a/SeedPass Logo/svg/SeedPass-Logo-11.svg b/logo/svg/SeedPass-Logo-11.svg
similarity index 100%
rename from SeedPass Logo/svg/SeedPass-Logo-11.svg
rename to logo/svg/SeedPass-Logo-11.svg
diff --git a/SeedPass Logo/svg/SeedPass-Logo-12.svg b/logo/svg/SeedPass-Logo-12.svg
similarity index 100%
rename from SeedPass Logo/svg/SeedPass-Logo-12.svg
rename to logo/svg/SeedPass-Logo-12.svg
diff --git a/SeedPass Logo/svg/SeedPass-Logo-13.svg b/logo/svg/SeedPass-Logo-13.svg
similarity index 100%
rename from SeedPass Logo/svg/SeedPass-Logo-13.svg
rename to logo/svg/SeedPass-Logo-13.svg
diff --git a/SeedPass Logo/svg/SeedPass-Logo-14.svg b/logo/svg/SeedPass-Logo-14.svg
similarity index 100%
rename from SeedPass Logo/svg/SeedPass-Logo-14.svg
rename to logo/svg/SeedPass-Logo-14.svg
diff --git a/SeedPass Logo/svg/SeedPass-Logo-15.svg b/logo/svg/SeedPass-Logo-15.svg
similarity index 100%
rename from SeedPass Logo/svg/SeedPass-Logo-15.svg
rename to logo/svg/SeedPass-Logo-15.svg
diff --git a/SeedPass Logo/svg/SeedPass-Logo-16.svg b/logo/svg/SeedPass-Logo-16.svg
similarity index 100%
rename from SeedPass Logo/svg/SeedPass-Logo-16.svg
rename to logo/svg/SeedPass-Logo-16.svg
diff --git a/SeedPass Logo/svg/SeedPass-Logo.svg b/logo/svg/SeedPass-Logo.svg
similarity index 100%
rename from SeedPass Logo/svg/SeedPass-Logo.svg
rename to logo/svg/SeedPass-Logo.svg
From 741c4e983217662d8f9592a7c4d4beb1cd9b65b2 Mon Sep 17 00:00:00 2001
From: thePR0M3TH3AN <53631862+PR0M3TH3AN@users.noreply.github.com>
Date: Mon, 21 Oct 2024 19:35:34 -0400
Subject: [PATCH 4/5] Update README.md
---
README.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index dcf7d18..a44b8a1 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# SeedPass
-
+
@@ -336,4 +336,4 @@ Here's an expanded table of **Advanced CLI Commands** that incorporates both you
- **Purpose:** Enables searching for password entries based on tags or titles.
- **Usage Examples:**
- Search by tag: `passmgr search-by --tag "work"`
- - Search by title: `passmgr search-by --title "GitHub"`
\ No newline at end of file
+ - Search by title: `passmgr search-by --title "GitHub"`
From 10f8f9a18a22a37a89a137baa69f777b7c19932e Mon Sep 17 00:00:00 2001
From: Keep Creating Online <53631862+PR0M3TH3AN@users.noreply.github.com>
Date: Mon, 21 Oct 2024 19:36:36 -0400
Subject: [PATCH 5/5] update
---
landing/index.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/landing/index.html b/landing/index.html
index 9f2f011..1b29ff8 100644
--- a/landing/index.html
+++ b/landing/index.html
@@ -12,7 +12,7 @@