mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-07-25 14:24:32 +00:00
d319fc19f9
- Reverted target framework to .NET 8.0 for stability. - Added autofocus to all dialog input fields (e.g. password dialogs). - Fixed crash when relogging into accounts without Steam Guard and added proper error message. - Unified and improved “Confirm Action” dialog design and text clarity. - Added setting to disable ripple effect animations for better performance. - Reduced minimum auto-confirmation timer interval from 10s to 5s. - App now auto-selects the most appropriate language on first launch. - Added trimming to proxy parse input - Fixed incorrect hint about maFile binding when using login-based mode. - Added ESC key behavior to remove focus from account search - Minor UI polish and cleanup across dialogs.
86 lines
2.2 KiB
HTML
86 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Changelog</title>
|
|
<style>
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
background-color: #eeeeee;
|
|
color: #333;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.changelog-container {
|
|
background-color: #fff;
|
|
border-radius: 10px;
|
|
padding: 25px;
|
|
margin: 25px auto;
|
|
max-width: 800px;
|
|
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
|
|
}
|
|
|
|
.change {
|
|
margin-bottom: 20px;
|
|
padding: 0;
|
|
border-left: 4px solid #a50ec7;
|
|
background-color: #f9f9f9;
|
|
}
|
|
|
|
.version {
|
|
font-weight: 600;
|
|
font-size: 1.5em;
|
|
color: #a50ec7;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.date {
|
|
font-style: italic;
|
|
color: #888;
|
|
margin-bottom: 10px;
|
|
margin-left: 15px;
|
|
}
|
|
|
|
.description {
|
|
font-size: 1em;
|
|
padding: 0 15px;
|
|
}
|
|
|
|
.description ul {
|
|
list-style: inside square;
|
|
padding: 0;
|
|
}
|
|
|
|
@media only screen and (max-width: 600px) {
|
|
.changelog-container {
|
|
width: 90%;
|
|
margin: 25px auto;
|
|
padding: 25px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="changelog-container">
|
|
<!-- Changelog entry -->
|
|
<div class="change">
|
|
<div class="version">Version 1.7.4</div>
|
|
<div class="date">19.07.2025</div>
|
|
<div class="description">
|
|
<ul>
|
|
<li>
|
|
<b>NEWS:</b> Official Telegram group now available! Join us at
|
|
<b>
|
|
<a href="https://t.me/nebulaauth">t.me/nebulaauth</a>
|
|
</b>
|
|
</li>
|
|
<li><b>FIX:</b> Resolved issue where a "Confirmation Error" notification appeared despite the confirmation being successful.</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |