chore: Update file author credits to Ilyas Hallak

This commit is contained in:
Ilyas Hallak 2025-12-01 22:10:41 +01:00
parent 358037427c
commit 05e79d763e
21 changed files with 23 additions and 23 deletions

View File

@ -2,7 +2,7 @@
// InfoApiClient.swift // InfoApiClient.swift
// readeck // readeck
// //
// Created by Claude Code // Created by Ilyas Hallak
import Foundation import Foundation

View File

@ -2,7 +2,7 @@
// NetworkMonitorRepository.swift // NetworkMonitorRepository.swift
// readeck // readeck
// //
// Created by Claude on 18.11.25. // Created by Ilyas Hallak on 18.11.25.
// //
import Foundation import Foundation
@ -25,7 +25,7 @@ final class NetworkMonitorRepository: PNetworkMonitorRepository {
// MARK: - Properties // MARK: - Properties
private let monitor = NWPathMonitor() private let monitor: NWPathMonitor = NWPathMonitor()
private let queue = DispatchQueue(label: "com.readeck.networkmonitor") private let queue = DispatchQueue(label: "com.readeck.networkmonitor")
private let _isConnectedSubject: CurrentValueSubject<Bool, Never> private let _isConnectedSubject: CurrentValueSubject<Bool, Never>
private var hasPathConnection = true private var hasPathConnection = true

View File

@ -2,7 +2,7 @@
// OfflineCacheRepository.swift // OfflineCacheRepository.swift
// readeck // readeck
// //
// Created by Claude on 17.11.25. // Created by Ilyas Hallak on 17.11.25.
// //
import Foundation import Foundation

View File

@ -2,7 +2,7 @@
// ServerInfoRepository.swift // ServerInfoRepository.swift
// readeck // readeck
// //
// Created by Claude Code // Created by Ilyas Hallak
import Foundation import Foundation

View File

@ -2,7 +2,7 @@
// KingfisherImagePrefetcher.swift // KingfisherImagePrefetcher.swift
// readeck // readeck
// //
// Created by Claude on 30.11.25. // Created by Ilyas Hallak on 30.11.25.
// //
import Foundation import Foundation

View File

@ -2,14 +2,14 @@
// OfflineSettings.swift // OfflineSettings.swift
// readeck // readeck
// //
// Created by Claude on 08.11.25. // Created by Ilyas Hallak on 08.11.25.
// //
import Foundation import Foundation
struct OfflineSettings: Codable { struct OfflineSettings: Codable {
var enabled: Bool = false var enabled: Bool = false
var maxUnreadArticles: Double = 20 // Double für Slider (Default: 20 Artikel) var maxUnreadArticles: Double = 20
var saveImages: Bool = false var saveImages: Bool = false
var lastSyncDate: Date? var lastSyncDate: Date?

View File

@ -2,7 +2,7 @@
// POfflineCacheRepository.swift // POfflineCacheRepository.swift
// readeck // readeck
// //
// Created by Claude on 17.11.25. // Created by Ilyas Hallak on 17.11.25.
// //
import Foundation import Foundation

View File

@ -2,7 +2,7 @@
// PServerInfoRepository.swift // PServerInfoRepository.swift
// readeck // readeck
// //
// Created by Claude Code // Created by Ilyas Hallak
protocol PServerInfoRepository { protocol PServerInfoRepository {
func checkServerReachability() async -> Bool func checkServerReachability() async -> Bool

View File

@ -2,7 +2,7 @@
// PSettingsRepository.swift // PSettingsRepository.swift
// readeck // readeck
// //
// Created by Claude on 08.11.25. // Created by Ilyas Hallak on 08.11.25.
// //
import Foundation import Foundation

View File

@ -2,7 +2,7 @@
// CheckServerReachabilityUseCase.swift // CheckServerReachabilityUseCase.swift
// readeck // readeck
// //
// Created by Claude Code // Created by Ilyas Hallak
import Foundation import Foundation

View File

@ -2,7 +2,7 @@
// NetworkMonitorUseCase.swift // NetworkMonitorUseCase.swift
// readeck // readeck
// //
// Created by Claude on 18.11.25. // Created by Ilyas Hallak on 18.11.25.
// //
import Foundation import Foundation

View File

@ -2,7 +2,7 @@
// OfflineCacheSyncUseCase.swift // OfflineCacheSyncUseCase.swift
// readeck // readeck
// //
// Created by Claude on 17.11.25. // Created by Ilyas Hallak on 17.11.25.
// //
import Foundation import Foundation

View File

@ -2,7 +2,7 @@
// DebugMenuView.swift // DebugMenuView.swift
// readeck // readeck
// //
// Created by Claude on 21.11.25. // Created by Ilyas Hallak on 21.11.25.
// //
#if DEBUG #if DEBUG

View File

@ -2,7 +2,7 @@
// CachedArticlesPreviewView.swift // CachedArticlesPreviewView.swift
// readeck // readeck
// //
// Created by Claude on 30.11.25. // Created by Ilyas Hallak on 30.11.25.
// //
import SwiftUI import SwiftUI

View File

@ -2,7 +2,7 @@
// OfflineReadingDetailView.swift // OfflineReadingDetailView.swift
// readeck // readeck
// //
// Created by Claude on 17.11.25. // Created by Ilyas Hallak on 17.11.25.
// //
import SwiftUI import SwiftUI

View File

@ -2,7 +2,7 @@
// OfflineSettingsViewModel.swift // OfflineSettingsViewModel.swift
// readeck // readeck
// //
// Created by Claude on 17.11.25. // Created by Ilyas Hallak on 17.11.25.
// //
import Foundation import Foundation

View File

@ -2,7 +2,7 @@
// OfflineCacheRepositoryTests.swift // OfflineCacheRepositoryTests.swift
// readeckTests // readeckTests
// //
// Created by Claude on 21.11.25. // Created by Ilyas Hallak on 21.11.25.
// //
import Testing import Testing

View File

@ -2,7 +2,7 @@
// OfflineSettingsTests.swift // OfflineSettingsTests.swift
// readeckTests // readeckTests
// //
// Created by Claude on 21.11.25. // Created by Ilyas Hallak on 21.11.25.
// //
import Testing import Testing

View File

@ -2,7 +2,7 @@
// HTMLImageEmbedderTests.swift // HTMLImageEmbedderTests.swift
// readeckTests // readeckTests
// //
// Created by Claude on 30.11.25. // Created by Ilyas Hallak on 30.11.25.
// //
import Testing import Testing

View File

@ -2,7 +2,7 @@
// HTMLImageExtractorTests.swift // HTMLImageExtractorTests.swift
// readeckTests // readeckTests
// //
// Created by Claude on 30.11.25. // Created by Ilyas Hallak on 30.11.25.
// //
import Testing import Testing

View File

@ -2,7 +2,7 @@
// KingfisherImagePrefetcherTests.swift // KingfisherImagePrefetcherTests.swift
// readeckTests // readeckTests
// //
// Created by Claude on 30.11.25. // Created by Ilyas Hallak on 30.11.25.
// //
import Testing import Testing