Files
Barış Keser 83be058d23 feat: Athena v2 — Discord auth, AthenaCore mod, cross-platform launcher, CI
Backend (PHP+SQLite): Discord OAuth2 + JWT, coklu hesap (1 Discord = 3-5),
tek-kullanimlik join token (/api/join/prepare+verify), custom skin yukleme/sunma,
hesap/Discord/HWID ban, admin paneli kartlari; deterministik offline UUID (PHP<->C#
paritesi dogrulandi). 25 entegrasyon testi gecti.

AthenaCore (Forge 1.12.2): tek client+server mod — join token dogrulama + kick,
grace-gate, custom skin uygulama. Sunucu offline-mode kalir (UUID/dunya verisi korunur).

Masaustu: WPF -> Avalonia (Windows+Linux), Discord giris/hesap/skin/oyna; WMI/DPAPI
yerine cross-platform (machine-id HWID, AES-GCM secret store). Derlenir + calisir.

CI: athenacore-mod.yml (JDK8), desktop-release.yml (Win+Linux self-contained).
Deploy: deploy.sh (.env uretimi, php-gd, nginx Authorization gecisi) + HANDOFF.md.
Android: backend hazir; entegrasyon spec'i ANDROID_INTEGRATION.md.
2026-06-13 23:45:21 +03:00

33 lines
1.7 KiB
XML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<UserControl x:Class="OfflineMinecraftLauncher.Pages.ModsPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Grid Margin="28,24,28,24">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<TextBlock Grid.Row="0" Text="İsteğe Bağlı Modlar" FontSize="24" FontWeight="Bold"/>
<TextBlock Grid.Row="1" Text="Zorunlu modlar (anti-cheat) her zaman yüklenir. Buradan yalnızca opsiyonel modları aç/kapat. Seçimin OYNA'da otomatik yüklenir."
Foreground="{StaticResource TextMutedBrush}" TextWrapping="Wrap" Margin="0,4,0,14"/>
<TextBox Grid.Row="2" x:Name="SearchBox" Style="{StaticResource BrandTextBox}" Margin="0,0,0,14"
TextChanged="SearchBox_TextChanged" Tag="Mod ara…"/>
<ScrollViewer Grid.Row="3" VerticalScrollBarVisibility="Auto">
<Grid>
<StackPanel x:Name="ModsList"/>
<TextBlock x:Name="EmptyLabel" Text="Şu anda kullanılabilir opsiyonel mod yok."
Foreground="{StaticResource TextMutedBrush}" HorizontalAlignment="Center" Margin="0,40,0,0" Visibility="Collapsed"/>
</Grid>
</ScrollViewer>
<Border Grid.Row="4" Style="{StaticResource Card}" Padding="14" Margin="0,14,0,0">
<TextBlock x:Name="SummaryText" Text="0 mod seçili" Foreground="{StaticResource TextMutedBrush}"/>
</Border>
</Grid>
</UserControl>