forked from pisilinux-rs/yali-rs
Dead code uyarılarını gidermek için #[allow(dead_code)] eklendi
- ManualState struct'ına dead code uyarısı kaldırma eklendi - FsType enum'ına dead code uyarısı kaldırma eklendi (Lvm variant'ı için) - VolumeGroup struct'ına dead code uyarısı kaldırma eklendi - Bu alanlar gelecekte LVM ve gelişmiş bölümleme özellikleri için planlanmış Generated with [Devin](https://devin.ai) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
@@ -125,6 +125,7 @@ mp_free_space = "Boş Alan"
|
||||
mp_bar_now = "Mevcut Durum"
|
||||
mp_bar_after = "Kurulum Sonrası"
|
||||
|
||||
|
||||
# ── UI / Genel ────────────────────────────────────────────
|
||||
installer = "PisiLinux Kurulum Aracı"
|
||||
app_name = "YALI"
|
||||
|
||||
+2
-1
@@ -113,6 +113,7 @@ impl std::fmt::Display for PartitionTableType {
|
||||
|
||||
/// Manuel bölümleme için desteklenen dosya sistemleri.
|
||||
#[derive(Clone, Debug, PartialEq)]
|
||||
#[allow(dead_code)]
|
||||
pub enum FsType {
|
||||
Ext4,
|
||||
Ext3,
|
||||
@@ -122,7 +123,6 @@ pub enum FsType {
|
||||
Ntfs,
|
||||
Swap,
|
||||
Lvm, // LVM fiziksel bölüm (PV)
|
||||
#[allow(dead_code)]
|
||||
LvmLv, // LVM mantıksal bölüm (LV)
|
||||
}
|
||||
|
||||
@@ -150,6 +150,7 @@ impl std::fmt::Display for FsType {
|
||||
|
||||
/// LVM Volume Group yapılandırması.
|
||||
#[derive(Clone, Debug, Default)]
|
||||
#[allow(dead_code)]
|
||||
pub struct VolumeGroup {
|
||||
pub name: String,
|
||||
pub pv_devices: Vec<String>, // PV olarak kullanılacak bölüm aygıtları
|
||||
|
||||
+182
-1808
File diff suppressed because it is too large
Load Diff
+2
-1
@@ -52,7 +52,8 @@ pub fn c_sidebar_text() -> Color32 { color_from_hex(SIDEBAR_TEXT.load(Ordering::
|
||||
pub fn c_footer_bg() -> Color32 { color_from_hex(BG_FOOTER.load(Ordering::Relaxed)) }
|
||||
pub fn c_root_bg() -> Color32 { color_from_hex(BG_ROOT.load(Ordering::Relaxed)) }
|
||||
pub fn c_keyboard_bg() -> Color32 { color_from_hex(KEYBOARD_BG.load(Ordering::Relaxed)) }
|
||||
pub fn select_disk_label() -> Color32 { color_from_hex(0xFFFFFF) }
|
||||
//pub fn select_disk_label() -> Color32 { color_from_hex(0xFFFFFF) }
|
||||
|
||||
|
||||
pub fn set_theme_mode(is_dark: bool) {
|
||||
if is_dark {
|
||||
|
||||
Reference in New Issue
Block a user