-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRelease_Notes.html
141 lines (139 loc) · 6.96 KB
/
Release_Notes.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SecureOps Tool User Guide</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<style>
body {
font-family: 'Roboto', sans-serif;
line-height: 1.6;
}
.container {
padding: 30px;
}
h1, h2, h3 {
margin-top: 20px;
margin-bottom: 20px;
}
p {
font-size: 18px;
margin-bottom: 20px;
}
body[data-theme='dark'] {
background-color: #121212;
color: #e0e0e0;
}
nav {
margin-bottom: 20px;
box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
}
nav[data-theme='dark'] {
background-color: #121212;
border-color: #121212;
}
.btn-outline-secondary {
border-color: #007bff;
color: #007bff;
}
.btn-outline-secondary:hover {
background-color: #007bff;
color: #fff;
}
footer {
margin-top: 20px;
text-align: center;
background-color: #f8f9fa;
padding: 15px;
border-top: 1px solid #e7e7e7;
}
footer[data-theme='dark'] {
background-color: #121212;
border-color: #121212;
color: #e0e0e0;
}
</style>
</head>
<body data-theme="light">
<nav class="navbar navbar-expand-lg navbar-light bg-light" data-theme="light">
<div class="container">
<a class="navbar-brand" href="#">The Privacyst</a>
<div class="collapse navbar-collapse">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="/">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="user_guide">User Guide</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Release_Notes">Release Notes</a>
</li>
<li>
<a class="nav-link" href="privacy_policy">Privacy Policy</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="d-flex justify-content-end">
<button onclick="toggleTheme()" class="btn btn-outline-secondary btn-sm">Toggle Dark Mode</button>
</div>
<h2><i class="fas fa-book"></i> The Privacyst - Release Notes 2023.3.1</h2>
<p>The latest release notes from The Privacyst outline exciting new features, significant enhancements, crucial bug fixes, and provide insight into known issues and upcoming additions, all aimed at improving user experience and enhancing online security.</p>
<div class="anchor" id="introduction"></div>
<h2><i class="fas fa-star" aria-hidden="true" alt="Star Icon"></i> New Features:</h2>
<ul class="no-bullets">
<li><strong>Password Calculator:</strong> Generate strong and secure passwords with customizable length and character sets.</li>
<li><strong>SSH Key Generator:</strong> Create secure SSH keys with selectable RSA key lengths.</li>
<li><strong>Username Generator:</strong> Easily generate random usernames with options for length and prefixes/suffixes.</li>
<li><strong>Email Generator:</strong> Generate random email addresses with selectable domains for various purposes.</li>
<li><strong>Dark Mode:</strong> Enjoy a dark mode for reduced eye strain and improved user experience.</li>
</ul>
</section>
<section>
<h2><i class="fas fa-arrow-up" aria-hidden="true" alt="Arrow Up Icon"></i> Enhancements:</h2>
<ul class="no-bullets">
<li><strong>Mobile Responsiveness:</strong> Improved mobile responsiveness for a seamless user experience on a variety of devices.</li>
<li><strong>User Guide:</strong> Added a comprehensive user guide to help users understand how to leverage security tools effectively.</li>
<li><strong>Tooltips:</strong> Added tooltips for user assistance, providing information on various features and options.</li>
</ul>
</section>
<section>
<h2><i class="fas fa-bug" aria-hidden="true" alt="Bug Icon"></i> Bug Fixes:</h2>
<ul class="no-bullets">
<li><strong>Header Display Issue:</strong> Resolved the issue with the header not displaying correctly on mobile devices.</li>
<li><strong>Theme Persistence:</strong> Fixed a bug where selected themes were not persisting after page reloads.</li>
</ul>
</section>
<section>
<h2><i class="fas fa-exclamation-triangle" aria-hidden="true" alt="Exclamation Triangle Icon"></i> Known Issues:</h2>
<ul class="no-bullets">
<li><strong>Password Strength Indicator:</strong> A visual password strength indicator will be added in the next version.</li>
<li><strong>User Accounts:</strong> User account functionality will be introduced in the next version.</li>
<li><strong>Download SSH Keys:</strong> Download options for SSH keys will be available in the next version.</li>
</ul>
</section>
<section>
<h2><i class="fas fa-rocket" aria-hidden="true" alt="Rocket Icon"></i> Coming Soon:</h2>
<p>Look forward to our next release, which will introduce advanced features like password complexity options, user accounts, and the ability to download SSH keys. We appreciate your feedback and hope you find these security tools valuable for enhancing your online security.</p>
</section>
</div>
<script>
function toggleTheme() {
const currentTheme = document.body.getAttribute('data-theme');
const newTheme = currentTheme === 'light' ? 'dark' : 'light';
document.body.setAttribute('data-theme', newTheme);
document.querySelector('nav').setAttribute('data-theme', newTheme);
localStorage.setItem('theme', newTheme);
}
const savedTheme = localStorage.getItem('theme') || 'light';
document.body.setAttribute('data-theme', savedTheme);
document.querySelector('nav').setAttribute('data-theme', savedTheme);
</script>
</body>
</html>