mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-07-25 06:14:31 +00:00
750292bfba
- Replaced old build-and-release.yml with a streamlined process in build-release.yml, simplifying release creation with dotnet publish, changelog conversion, and GitHub release automation. - Added prepare-release.yml to automate release preparation, including version extraction, update.xml generation, and tagging. - Introduced changelog for version 1.8.0 with a new HTML file (1.8.0.html) and external links to detailed updates. - Updated NebulaAuth.sln to include the new changelog file. - Refactored SetAccountPasswordsVM.cs to use localization for success messages and added a helper method for retrieving localized strings. - Enhanced localization.loc.json with new strings for SetAccountPasswordsVM and improved formatting by removing duplicates. - Improved changelog HTML structure and styles for better readability and mobile responsiveness. - Performed minor code cleanups and formatting adjustments.
80 lines
2.0 KiB
HTML
80 lines
2.0 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.8.0</div>
|
|
<div class="date">07.11.2025</div>
|
|
<div class="description">
|
|
<ul>
|
|
<li> Major update: Full changelog is available here <a href="https://teletype.in/@achies_raw/nebula-1-8-0-eng">ENG</a> | <a href="https://teletype.in/@achies_raw/nebula-1-8-0-rus">RUS</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |