ReaderTranslator icon indicating copy to clipboard operation
ReaderTranslator copied to clipboard

PDF/WebPages Reader with embedded Google Translate and voice engine on SwiftUI, Combine, Catalyst, AppKit

Results 42 ReaderTranslator issues
Sort by recently updated
recently updated
newest added

Temporary fix: `.websiteDataStore = .nonPersistent()`

bug
help wanted

I made extra `WKCoordinatorNavigationDelegate` protocol to solve this issue. Perhaps `Coordinator` issue is.

bug
help wanted

I can't use `onCommand` in `View` because it only supports macOS. I wrote code below but `performCommand` is not called ```swift override public var keyCommands: [UIKeyCommand]? { //Voice selected text...

bug
help wanted

[Protocol doesn't conform to itself?](https://stackoverflow.com/questions/33112559/protocol-doesnt-conform-to-itself/43408193#43408193) [Swift define associated type in subprotocol](https://stackoverflow.com/questions/49942111/swift-define-associated-type-in-subprotocol) [Swift subprotocol with associated type](https://stackoverflow.com/questions/48957492/swift-subprotocol-with-associated-type) [Unable to use protocol as associatedtype in another protocol in Swift](https://stackoverflow.com/questions/37360114/unable-to-use-protocol-as-associatedtype-in-another-protocol-in-swift)

enhancement
help wanted

[How to get self of parent in @propertyWrapper?](https://forums.swift.org/t/how-to-get-self-of-parent-in-propertywrapper/29561) [property_wrappers.swift](https://github.com/apple/swift/blob/b32e82c720f6b6a5150fb09c63292f6709947d11/test/Interpreter/property_wrappers.swift) [Using Associated Object, to Store Properties, in an Extension](https://web.archive.org/web/20170221052848/http://stackoverflow.com/documentation/swift/1085/associated-objects/27656/property-in-a-protocol-extension-achieved-using-associated-object)

enhancement

https://apple.stackexchange.com/questions/327541/always-on-top-window-on-macos-high-sierra

enhancement

[UserDefaults+Key](https://gist.github.com/shaps80/eb0016303dcfceb3152285d4ea0c6691) To avoid issue while saving `nil` properties ```swift let myData = NSKeyedArchiver.archivedData(withRootObject: myJson) UserDefaults.standard.set(myData, forKey: "userJson") let recovedUserJsonData = UserDefaults.standard.object(forKey: "userJson") let recovedUserJson = NSKeyedUnarchiver.unarchiveObject(with: recovedUserJsonData) ```

enhancement