Migrate to new DB and Domain
This commit is contained in:
Tomasi - Developing 2025-01-27 15:23:57 +01:00
parent 20546c76ef
commit bb2dee0cf8
4 changed files with 12 additions and 2 deletions

View File

@ -6,6 +6,15 @@ This project is currently in the **Beta Phase**.
---
### **[0.5.1-beta]** - *2025-01-27*
#### ✨ Added
- *(N/A)*
#### 🛠️ Fixed
- *Zombie siege**: Smile customised for exactly 20 waves
---
### **[0.5.0-beta]** - *2025-01-21*
#### ✨ Added
- **Player VS Duel**: In the player detail view, the VS points can now be viewed as a bar chart.

View File

@ -83,7 +83,7 @@
<td>{{zombieSiege.level}}</td>
<td>{{zombieSiege.allianceSize}}</td>
<td>{{zombieSiege.totalLevel20Players}}
@if (zombieSiege.totalLevel20Players <= 20) {
@if (zombieSiege.totalLevel20Players < 20) {
<i class="ps-3 bi bi-emoji-frown-fill text-danger"></i>
} @else {
<i class="ps-3 bi bi-emoji-smile-fill text-success"></i>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@ -1,4 +1,5 @@
using MailKit.Net.Smtp;
using MailKit.Security;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using MimeKit;
@ -24,7 +25,7 @@ public class EmailService(IOptions<EmailConfiguration> emailConfigurationOptions
try
{
await client.ConnectAsync(_emailConfiguration.SmtpServer, _emailConfiguration.Port, true);
await client.ConnectAsync(_emailConfiguration.SmtpServer, _emailConfiguration.Port, SecureSocketOptions.StartTlsWhenAvailable);
client.AuthenticationMechanisms.Remove("XOAUTH2");