mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 17:22:21 +00:00
v 0.5.1
Migrate to new DB and Domain
This commit is contained in:
parent
20546c76ef
commit
bb2dee0cf8
@ -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*
|
### **[0.5.0-beta]** - *2025-01-21*
|
||||||
#### ✨ Added
|
#### ✨ Added
|
||||||
- **Player VS Duel**: In the player detail view, the VS points can now be viewed as a bar chart.
|
- **Player VS Duel**: In the player detail view, the VS points can now be viewed as a bar chart.
|
||||||
|
|||||||
@ -83,7 +83,7 @@
|
|||||||
<td>{{zombieSiege.level}}</td>
|
<td>{{zombieSiege.level}}</td>
|
||||||
<td>{{zombieSiege.allianceSize}}</td>
|
<td>{{zombieSiege.allianceSize}}</td>
|
||||||
<td>{{zombieSiege.totalLevel20Players}}
|
<td>{{zombieSiege.totalLevel20Players}}
|
||||||
@if (zombieSiege.totalLevel20Players <= 20) {
|
@if (zombieSiege.totalLevel20Players < 20) {
|
||||||
<i class="ps-3 bi bi-emoji-frown-fill text-danger"></i>
|
<i class="ps-3 bi bi-emoji-frown-fill text-danger"></i>
|
||||||
} @else {
|
} @else {
|
||||||
<i class="ps-3 bi bi-emoji-smile-fill text-success"></i>
|
<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 |
@ -1,4 +1,5 @@
|
|||||||
using MailKit.Net.Smtp;
|
using MailKit.Net.Smtp;
|
||||||
|
using MailKit.Security;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
using Microsoft.Extensions.Options;
|
using Microsoft.Extensions.Options;
|
||||||
using MimeKit;
|
using MimeKit;
|
||||||
@ -24,7 +25,7 @@ public class EmailService(IOptions<EmailConfiguration> emailConfigurationOptions
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
await client.ConnectAsync(_emailConfiguration.SmtpServer, _emailConfiguration.Port, true);
|
await client.ConnectAsync(_emailConfiguration.SmtpServer, _emailConfiguration.Port, SecureSocketOptions.StartTlsWhenAvailable);
|
||||||
|
|
||||||
client.AuthenticationMechanisms.Remove("XOAUTH2");
|
client.AuthenticationMechanisms.Remove("XOAUTH2");
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user