├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── 001-issue.md │ ├── 002-feature.md │ ├── 009-copyright_clause.md │ ├── 010-test_in_app.md │ ├── 011-test_migration.md │ ├── 012-test_release.md │ ├── 013-test_file_associations.md │ ├── 020-test_platforms.md │ └── config.yml └── workflows │ ├── api_cache.yml │ ├── api_publish.yml │ ├── full_test.yml │ ├── manual_release.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .gitmodules ├── .ruby-version ├── CHANGELOG.txt ├── CLA.rst ├── CMakeLists.txt ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── api ├── .gitignore ├── README.md ├── cache.js ├── cache │ └── .gitignore ├── index.js ├── lib │ ├── api.js │ └── context.js ├── package-lock.json ├── package.json ├── src ├── src-latest └── test │ ├── mock │ └── providers │ │ ├── hideme │ │ └── fetch.json │ │ ├── ivpn │ │ └── fetch.json │ │ ├── mullvad │ │ └── fetch.json │ │ ├── nordvpn │ │ └── fetch.json │ │ ├── oeck │ │ └── fetch.json │ │ ├── pia │ │ └── fetch.json │ │ └── surfshark │ │ └── fetch.json │ ├── providers │ ├── hideme.js │ ├── ivpn.js │ ├── mullvad.js │ ├── nordvpn.js │ ├── oeck.js │ ├── pia.js │ ├── surfshark.js │ ├── torguard.js │ ├── tunnelbear.js │ ├── vyprvpn.js │ └── windscribe.js │ └── setup.js ├── app-android ├── .gitignore ├── .idea │ └── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── algoritmico │ │ │ └── passepartout │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ └── .gitignore │ │ ├── cpp │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── build.sh │ │ │ └── src │ │ │ │ ├── partout.h │ │ │ │ ├── passepartout.h │ │ │ │ ├── vpn.c │ │ │ │ ├── vpn.h │ │ │ │ └── wrapper.c │ │ ├── java │ │ │ └── com │ │ │ │ └── algoritmico │ │ │ │ ├── partout │ │ │ │ ├── NativeLibraryWrapper.kt │ │ │ │ └── VpnWrapper.kt │ │ │ │ └── passepartout │ │ │ │ ├── DummyVPNService.kt │ │ │ │ └── MainActivity.kt │ │ ├── jniLibs │ │ │ └── .gitignore │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values-v23 │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── algoritmico │ │ └── passepartout │ │ └── ExampleUnitTest.kt ├── build.gradle.kts ├── gradle.properties ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts ├── app-apple ├── .gitignore ├── .swiftlint.yml ├── Package.resolved ├── Package.swift ├── Passepartout.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ ├── Passepartout.xcscheme │ │ ├── PassepartoutIntents.xcscheme │ │ ├── PassepartoutLoginItem.xcscheme │ │ ├── PassepartoutMac.xcscheme │ │ ├── PassepartoutTests.xcscheme │ │ ├── PassepartoutTunnel.xcscheme │ │ ├── PassepartoutTunnelMac.xcscheme │ │ └── PassepartoutUITests.xcscheme ├── Passepartout │ ├── App │ │ ├── App.entitlements │ │ ├── App.plist │ │ ├── AppDelegate.swift │ │ ├── AppMac.entitlements │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── AppIcon-ios-dark.png │ │ │ │ ├── AppIcon-ios-tinted.png │ │ │ │ ├── AppIcon-ios.png │ │ │ │ ├── AppIcon-mac.png │ │ │ │ ├── AppIcon-mac@2x.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── DarkAccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── Logo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Logo@2x.png │ │ │ │ └── Logo@3x.png │ │ │ ├── Menu │ │ │ │ ├── Contents.json │ │ │ │ ├── MenuActive.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── StatusActive@2x.png │ │ │ │ ├── MenuInactive.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── StatusInactive@2x.png │ │ │ │ └── MenuPending.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── StatusPending@2x.png │ │ │ └── TV.brandassets │ │ │ │ ├── App Icon - App Store.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ ├── AppIcon.png │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ └── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── AppIcon.png │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── App Icon.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ ├── AppIcon.png │ │ │ │ │ │ ├── AppIcon@2x.png │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ └── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── AppIcon.png │ │ │ │ │ ├── AppIcon@2x.png │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Top Shelf Image Wide.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── TopShelf.png │ │ │ │ └── TopShelf@2x.png │ │ │ │ └── Top Shelf Image.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── TopShelf.png │ │ │ │ └── TopShelf@2x.png │ │ ├── Context │ │ │ ├── AppContext+Production.swift │ │ │ ├── AppContext+Testing.swift │ │ │ ├── DefaultAppProcessor.swift │ │ │ ├── Dependencies+Processors.swift │ │ │ ├── ProfileManager+Testing.swift │ │ │ └── test-bundle.json │ │ ├── LaunchScreen.storyboard │ │ ├── PassepartoutApp.swift │ │ ├── Platforms │ │ │ ├── App+iOS.swift │ │ │ ├── App+macOS.swift │ │ │ └── App+tvOS.swift │ │ ├── de.lproj │ │ │ └── AppPlist.strings │ │ ├── el.lproj │ │ │ └── AppPlist.strings │ │ ├── en.lproj │ │ │ └── AppPlist.strings │ │ ├── es.lproj │ │ │ └── AppPlist.strings │ │ ├── fr.lproj │ │ │ └── AppPlist.strings │ │ ├── it.lproj │ │ │ └── AppPlist.strings │ │ ├── nl.lproj │ │ │ └── AppPlist.strings │ │ ├── pl.lproj │ │ │ └── AppPlist.strings │ │ ├── pt.lproj │ │ │ └── AppPlist.strings │ │ ├── ru.lproj │ │ │ └── AppPlist.strings │ │ ├── sv.lproj │ │ │ └── AppPlist.strings │ │ ├── uk.lproj │ │ │ └── AppPlist.strings │ │ └── zh-Hans.lproj │ │ │ └── AppPlist.strings │ ├── Config.mac.xcconfig │ ├── Config.xcconfig │ ├── Intents │ │ ├── Intents.entitlements │ │ ├── Intents.plist │ │ └── IntentsExtension.swift │ ├── LoginItem │ │ ├── AppDelegate.swift │ │ ├── LoginItem.entitlements │ │ └── PassepartoutLoginItemApp.swift │ ├── Passepartout.xctestplan │ ├── Scripts │ │ └── embed-extensions.sh │ ├── Shared │ │ ├── AppRelease+BusinessChanges.swift │ │ ├── Dependencies+IAPManager.swift │ │ ├── Dependencies+Partout.swift │ │ ├── Dependencies.swift │ │ ├── OpenVPNImplementationBuilder.swift │ │ └── WireGuardImplementationBuilder.swift │ ├── Tests │ │ └── LocalizationTests.swift │ ├── Tunnel │ │ ├── DefaultTunnelProcessor.swift │ │ ├── PacketTunnelProvider.swift │ │ ├── Tunnel.entitlements │ │ ├── Tunnel.plist │ │ ├── TunnelMac.plist │ │ └── main.swift │ └── UITests │ │ ├── Extensions │ │ ├── XCTestCase+Extensions.swift │ │ ├── XCUIApplication+Extensions.swift │ │ └── XCUIElement+Extensions.swift │ │ ├── Main │ │ ├── MainFlowTests.swift │ │ ├── MainScreenshotTests.swift │ │ └── Screens │ │ │ ├── AppScreen.swift │ │ │ ├── ProfileEditorScreen.swift │ │ │ ├── ProfileMenuScreen.swift │ │ │ └── ProviderServersScreen.swift │ │ ├── MainScreenshots.xctestplan │ │ ├── TV │ │ ├── Screens │ │ │ └── AppScreen.swift │ │ ├── TVFlowTests.swift │ │ └── TVScreenshotTests.swift │ │ └── TVScreenshots.xctestplan ├── Sources │ ├── AppAccessibility │ │ ├── Domain │ │ │ ├── AccessibilityInfo.swift │ │ │ └── View+Accessibility.swift │ │ ├── IPC │ │ │ └── AppCommandLine.swift │ │ └── Screens │ │ │ ├── App.swift │ │ │ ├── Profile.swift │ │ │ └── ProviderServers.swift │ ├── AppLibrary │ │ ├── AppLibrary.swift │ │ ├── Domain │ │ │ ├── AppTip.swift │ │ │ ├── EditableProfile.swift │ │ │ ├── HTTPAddressPort.swift │ │ │ ├── OnboardingStep.swift │ │ │ ├── ProfilesLayout.swift │ │ │ └── SystemAppearance.swift │ │ ├── Extensions │ │ │ ├── AppCoordinatorConforming+Extensions.swift │ │ │ ├── AppTip+TipKit.swift │ │ │ ├── ChangelogEntry+Extensions.swift │ │ │ ├── EnvironmentValues+Extensions.swift │ │ │ ├── LegacyAppCoordinatorConforming+Extensions.swift │ │ │ ├── ModuleBuilder+Previews.swift │ │ │ ├── ProfileEditor+Save.swift │ │ │ ├── ProfileEditor+UI.swift │ │ │ ├── ProfileManager+Editing.swift │ │ │ └── TunnelInstallationProviding+Extensions.swift │ │ ├── L10n │ │ │ ├── AppError+L10n.swift │ │ │ ├── AppFeature+L10n.swift │ │ │ ├── AppLibrary+L10n.swift │ │ │ ├── ErrorHandler+Default.swift │ │ │ ├── Foundation+L10n.swift │ │ │ ├── Modules │ │ │ │ ├── DNSModule+L10n.swift │ │ │ │ ├── HTTPProxyModule+L10n.swift │ │ │ │ ├── IPModule+L10n.swift │ │ │ │ ├── OnDemandModule+L10n.swift │ │ │ │ ├── OpenVPNModule+L10n.swift │ │ │ │ ├── ProviderModule+L10n.swift │ │ │ │ └── WireGuardModule+L10n.swift │ │ │ ├── Partout+L10n.swift │ │ │ ├── Strings+Extensions.swift │ │ │ └── Strings+Unlocalized.swift │ │ ├── Observables │ │ │ ├── AppContext.swift │ │ │ ├── AppEncoderObservable.swift │ │ │ ├── AppFormatter.swift │ │ │ ├── AppearanceObservable.swift │ │ │ ├── ConfigObservable.swift │ │ │ ├── IAPObservable.swift │ │ │ ├── InteractiveObservable.swift │ │ │ ├── MacSettings.swift │ │ │ ├── ModuleDraft.swift │ │ │ ├── ModulePreferences.swift │ │ │ ├── ObservableList.swift │ │ │ ├── OnboardingObservable.swift │ │ │ ├── PreferencesManager.swift │ │ │ ├── ProfileEditor.swift │ │ │ ├── ProfileObservable.swift │ │ │ ├── ProviderPreferences.swift │ │ │ ├── TunnelObservable.swift │ │ │ ├── UserPreferencesObservable.swift │ │ │ ├── VersionObservable.swift │ │ │ ├── View+Environment.swift │ │ │ ├── ViewLogger.swift │ │ │ └── WebReceiverObservable.swift │ │ ├── Previews │ │ │ ├── AppContext+Previews.swift │ │ │ └── Profile+Previews.swift │ │ ├── Strategy │ │ │ ├── AppCoordinatorConforming.swift │ │ │ ├── InteractiveViewProviding.swift │ │ │ ├── LegacyAppCoordinatorConforming.swift │ │ │ ├── MockAppProcessor.swift │ │ │ ├── ModuleDestinationProviding.swift │ │ │ ├── ModuleDraftEditing.swift │ │ │ ├── ModuleShortcutsProviding.swift │ │ │ ├── ModuleViewFactory+Default.swift │ │ │ ├── ModuleViewFactory.swift │ │ │ ├── ModuleViewProviding.swift │ │ │ └── TunnelInstallationProviding.swift │ │ ├── Theme │ │ │ ├── Platforms │ │ │ │ ├── Theme+iOS.swift │ │ │ │ ├── Theme+macOS.swift │ │ │ │ └── Theme+tvOS.swift │ │ │ ├── Theme+Extensions.swift │ │ │ ├── Theme+ImageName.swift │ │ │ ├── Theme+MenuImageName.swift │ │ │ ├── Theme.swift │ │ │ ├── ThemeAnimationCategory.swift │ │ │ └── Views │ │ │ │ ├── Theme+ListSection.swift │ │ │ │ ├── Theme+Modifiers.swift │ │ │ │ ├── Theme+ModuleSection.swift │ │ │ │ ├── ThemeAnimationModifier.swift │ │ │ │ ├── ThemeBooleanModalModifier.swift │ │ │ │ ├── ThemeCloseLabel.swift │ │ │ │ ├── ThemeConfirmationModifier.swift │ │ │ │ ├── ThemeContainerModifier.swift │ │ │ │ ├── ThemeCopiableText.swift │ │ │ │ ├── ThemeCountryFlag.swift │ │ │ │ ├── ThemeCountryText.swift │ │ │ │ ├── ThemeDisclosableMenu.swift │ │ │ │ ├── ThemeEditableListSection.swift │ │ │ │ ├── ThemeEmptyMessageModifier.swift │ │ │ │ ├── ThemeErrorModifier.swift │ │ │ │ ├── ThemeFavoriteToggle.swift │ │ │ │ ├── ThemeFullScreenView.swift │ │ │ │ ├── ThemeGridCellModifier.swift │ │ │ │ ├── ThemeGridSectionModifier.swift │ │ │ │ ├── ThemeHoverListRowModifier.swift │ │ │ │ ├── ThemeImage.swift │ │ │ │ ├── ThemeImageLabel.swift │ │ │ │ ├── ThemeInputType.swift │ │ │ │ ├── ThemeItemModalModifier.swift │ │ │ │ ├── ThemeKeyValueModifier.swift │ │ │ │ ├── ThemeLockScreenModifier.swift │ │ │ │ ├── ThemeLogo.swift │ │ │ │ ├── ThemeLongContentLink.swift │ │ │ │ ├── ThemeManualInputModifier.swift │ │ │ │ ├── ThemeMenuImage.swift │ │ │ │ ├── ThemeModalOptions.swift │ │ │ │ ├── ThemeNameSection.swift │ │ │ │ ├── ThemeNavigatingButton.swift │ │ │ │ ├── ThemeNavigationStackModifier.swift │ │ │ │ ├── ThemeProgressView.swift │ │ │ │ ├── ThemeProgressViewModifier.swift │ │ │ │ ├── ThemeRemovableItemRow.swift │ │ │ │ ├── ThemeRow.swift │ │ │ │ ├── ThemeSecureField.swift │ │ │ │ ├── ThemeTappableText.swift │ │ │ │ ├── ThemeTextField.swift │ │ │ │ ├── ThemeTextInputView.swift │ │ │ │ ├── ThemeTextList.swift │ │ │ │ ├── ThemeTipModifier.swift │ │ │ │ ├── ThemeTrailingContent.swift │ │ │ │ ├── ThemeTrailingValueModifier.swift │ │ │ │ └── ThemeWindowModifier.swift │ │ ├── Utils │ │ │ ├── AppWindow.swift │ │ │ ├── Binding+Extensions.swift │ │ │ ├── Color+Extensions.swift │ │ │ ├── CompatibleSettingsLink.swift │ │ │ ├── ContentPreviewLink.swift │ │ │ ├── CoreLocationWifiObserver.swift │ │ │ ├── ErrorHandler.swift │ │ │ ├── GenericCreditsView.swift │ │ │ ├── JSONFile.swift │ │ │ ├── LocalizableEntity.swift │ │ │ ├── LockableView.swift │ │ │ ├── LongContentEditor.swift │ │ │ ├── MailComposerView.swift │ │ │ ├── OnLoadModifier.swift │ │ │ ├── PasscodeInputView.swift │ │ │ ├── PlatformExtensions+iOS.swift │ │ │ ├── PlatformExtensions+macOS.swift │ │ │ ├── PlatformExtensions+tvOS.swift │ │ │ ├── PlatformExtensions.swift │ │ │ ├── QRCodeView.swift │ │ │ ├── QRScanView.swift │ │ │ ├── RevealingSecureField.swift │ │ │ ├── SizeClassProviding.swift │ │ │ ├── String+QR.swift │ │ │ ├── View+Extensions.swift │ │ │ ├── WebView.swift │ │ │ └── Wifi.swift │ │ └── Views │ │ │ ├── Diagnostics │ │ │ ├── BetaSection.swift │ │ │ ├── DebugLogContentView.swift │ │ │ └── DebugLogView.swift │ │ │ ├── Modules │ │ │ ├── Extensions │ │ │ │ └── OpenVPNModule+Extensions.swift │ │ │ ├── ModuleImportSection.swift │ │ │ └── OpenVPNView+Credentials.swift │ │ │ ├── Paywall │ │ │ ├── AllFeaturesView.swift │ │ │ ├── DisclosingFeaturesView.swift │ │ │ ├── FeatureRow.swift │ │ │ ├── ModuleDynamicPaywallModifier.swift │ │ │ ├── NewCustomProductView.swift │ │ │ ├── NewPaywallModifier.swift │ │ │ ├── NewPaywallProductView.swift │ │ │ ├── NewPaywallView.swift │ │ │ ├── PaywallCoordinator+Model.swift │ │ │ ├── PaywallCoordinator.swift │ │ │ ├── PaywallModifier+Extensions.swift │ │ │ ├── PaywallProductViewStyle.swift │ │ │ ├── PaywallView+Fixed.swift │ │ │ ├── PaywallView+Scrollable.swift │ │ │ ├── PurchaseRequiredView.swift │ │ │ ├── RestorePurchasesButton.swift │ │ │ └── StoreKitProductView.swift │ │ │ ├── Preferences │ │ │ ├── LogsPrivateDataToggle.swift │ │ │ ├── PinActiveProfileToggle.swift │ │ │ ├── PreferencesAdvancedView.swift │ │ │ └── PreferencesView.swift │ │ │ ├── Settings │ │ │ ├── ChangelogView.swift │ │ │ ├── CreditsView.swift │ │ │ ├── DonateView.swift │ │ │ ├── LinksView.swift │ │ │ ├── PurchasedView.swift │ │ │ ├── VersionView.swift │ │ │ └── WebDonationLink.swift │ │ │ └── Shared │ │ │ ├── ConnectionFlow.swift │ │ │ ├── ConnectionStatusText.swift │ │ │ ├── EndpointCardView.swift │ │ │ ├── ExternalLink.swift │ │ │ ├── InteractiveCoordinator.swift │ │ │ ├── LegacyConnectionStatusText.swift │ │ │ ├── LegacyTunnelToggle.swift │ │ │ ├── ModuleSendMenu.swift │ │ │ ├── ProfileSelectorMenu.swift │ │ │ ├── ProfileSharingView.swift │ │ │ ├── RefreshInfrastructureButton.swift │ │ │ ├── TunnelToggle.swift │ │ │ └── VersionUpdateLink.swift │ ├── AppLibraryMain │ │ ├── AppLibraryMain.swift │ │ ├── Extensions │ │ │ ├── EnvironmentValues+Extensions.swift │ │ │ ├── HTTPAddressPort+Extensions.swift │ │ │ ├── Issue+Extensions.swift │ │ │ ├── ProfileEditor+Destination.swift │ │ │ └── ProviderRegion+Extensions.swift │ │ ├── Observables │ │ │ ├── AppPipe.swift │ │ │ └── AppProfileImporter.swift │ │ └── Views │ │ │ ├── App │ │ │ ├── AddProfileMenu.swift │ │ │ ├── AppNotWorkingButton.swift │ │ │ ├── AppProfileImporterModifier.swift │ │ │ ├── AppToolbar.swift │ │ │ ├── InstalledProfileView.swift │ │ │ ├── LegacyAppCoordinator+ModalRoute.swift │ │ │ ├── LegacyAppCoordinator.swift │ │ │ ├── OnboardingModifier.swift │ │ │ ├── Profile+ProviderSelectorButton.swift │ │ │ ├── ProfileCardView.swift │ │ │ ├── ProfileContainerView.swift │ │ │ ├── ProfileContextMenu.swift │ │ │ ├── ProfileDuplicateButton.swift │ │ │ ├── ProfileFlow.swift │ │ │ ├── ProfileGridView.swift │ │ │ ├── ProfileInfoButton.swift │ │ │ ├── ProfileListView.swift │ │ │ ├── ProfileRowView.swift │ │ │ ├── ProfilesHeaderView.swift │ │ │ ├── ProfilesLayoutPicker.swift │ │ │ └── TunnelRestartButton.swift │ │ │ ├── AppMenu │ │ │ └── macOS │ │ │ │ ├── AppMenu.swift │ │ │ │ └── AppMenuImage.swift │ │ │ ├── Diagnostics │ │ │ ├── DiagnosticsProfileView.swift │ │ │ ├── DiagnosticsRoute.swift │ │ │ ├── DiagnosticsView.swift │ │ │ ├── ReportIssueButton.swift │ │ │ ├── iOS │ │ │ │ └── ReportIssueButton+iOS.swift │ │ │ └── macOS │ │ │ │ └── ReportIssueButton+macOS.swift │ │ │ ├── Modules │ │ │ ├── DNSView.swift │ │ │ ├── HTTPProxyView.swift │ │ │ ├── IPView+Route.swift │ │ │ ├── IPView.swift │ │ │ ├── OnDemandView.swift │ │ │ ├── OpenVPN │ │ │ │ ├── OpenVPN+Previews.swift │ │ │ │ ├── OpenVPNModule+UI.swift │ │ │ │ ├── OpenVPNView+Configuration.swift │ │ │ │ ├── OpenVPNView+Import.swift │ │ │ │ ├── OpenVPNView+Remotes.swift │ │ │ │ └── OpenVPNView.swift │ │ │ ├── Provider │ │ │ │ ├── ProviderModule+UI.swift │ │ │ │ ├── ProviderNameRow.swift │ │ │ │ ├── ProviderServerLink.swift │ │ │ │ ├── ProviderView+OpenVPN.swift │ │ │ │ └── ProviderView.swift │ │ │ ├── UI │ │ │ │ ├── DNSModule+UI.swift │ │ │ │ ├── HTTPProxyModule+UI.swift │ │ │ │ ├── IPModule+UI.swift │ │ │ │ └── OnDemandModule+UI.swift │ │ │ └── WireGuard │ │ │ │ ├── WireGuard+Previews.swift │ │ │ │ ├── WireGuardModule+UI.swift │ │ │ │ ├── WireGuardView+Configuration.swift │ │ │ │ ├── WireGuardView+Import.swift │ │ │ │ └── WireGuardView.swift │ │ │ ├── Profile │ │ │ ├── AddModuleMenu.swift │ │ │ ├── EditorModuleToggle.swift │ │ │ ├── ModuleDetailView.swift │ │ │ ├── ModulePreferencesModifier.swift │ │ │ ├── ModuleViewModifier.swift │ │ │ ├── ProfileActionsSection.swift │ │ │ ├── ProfileBehaviorSection.swift │ │ │ ├── ProfileCoordinator.swift │ │ │ ├── ProfileExportButton.swift │ │ │ ├── ProfileLink.swift │ │ │ ├── ProfileNameSection.swift │ │ │ ├── ProfileSaveButton.swift │ │ │ ├── ProfileShareButton.swift │ │ │ ├── ProfileStorageSection.swift │ │ │ ├── ProfileTips.swift │ │ │ ├── SendToTVCoordinator.swift │ │ │ ├── SendToTVFormView.swift │ │ │ ├── UUIDText.swift │ │ │ ├── iOS │ │ │ │ ├── ProfileEditView+iOS.swift │ │ │ │ ├── SendToTVPasscodeView+iOS.swift │ │ │ │ ├── SendToTVQRScanView+iOS.swift │ │ │ │ └── SendToTVView+iOS.swift │ │ │ └── macOS │ │ │ │ ├── ModuleListView+macOS.swift │ │ │ │ ├── ProfileGeneralView+macOS.swift │ │ │ │ ├── ProfileSplitView+macOS.swift │ │ │ │ └── SendToTVView+macOS.swift │ │ │ ├── Providers │ │ │ ├── ProviderConnectToButton.swift │ │ │ ├── ProviderFiltersView+Model.swift │ │ │ ├── ProviderFiltersView.swift │ │ │ ├── ProviderPicker.swift │ │ │ ├── ProviderServerCoordinator.swift │ │ │ ├── ProviderServerView.swift │ │ │ ├── iOS │ │ │ │ ├── ProviderServer+Container+iOS.swift │ │ │ │ └── ProviderServer+Content+iOS.swift │ │ │ └── macOS │ │ │ │ ├── ProviderServer+Container+macOS.swift │ │ │ │ └── ProviderServer+Content+macOS.swift │ │ │ └── Settings │ │ │ ├── SettingsCoordinator.swift │ │ │ ├── SettingsCoordinatorRoute.swift │ │ │ ├── iOS │ │ │ ├── DonateViewModifier+iOS.swift │ │ │ └── SettingsContentView+iOS.swift │ │ │ └── macOS │ │ │ ├── DonateViewModifier+macOS.swift │ │ │ ├── SettingsContentView+macOS.swift │ │ │ ├── SystemExtensionView+macOS.swift │ │ │ └── SystemExtensionsManager+UI.swift │ ├── AppLibraryTV │ │ ├── AppLibraryTV.swift │ │ └── Views │ │ │ ├── App │ │ │ ├── AppCoordinator.swift │ │ │ └── AppCoordinatorRoute.swift │ │ │ ├── Connection │ │ │ ├── ActiveProfileView.swift │ │ │ ├── ActiveTunnelButton.swift │ │ │ ├── ConnectionProfilesView.swift │ │ │ └── ConnectionView.swift │ │ │ ├── Profiles │ │ │ ├── ProfilesView.swift │ │ │ └── WebReceiverView.swift │ │ │ ├── Settings │ │ │ ├── DonateViewModifier.swift │ │ │ └── SettingsView.swift │ │ │ └── Shared │ │ │ ├── ListRowView.swift │ │ │ ├── TopSpacer.swift │ │ │ └── View+MainButton.swift │ ├── AppLibraryTVLegacy │ │ ├── AppLibraryTVLegacy.swift │ │ └── Views │ │ │ ├── App │ │ │ ├── AppCoordinatorRoute.swift │ │ │ └── LegacyAppCoordinator.swift │ │ │ ├── Connection │ │ │ ├── ActiveProfileView.swift │ │ │ ├── ActiveTunnelButton.swift │ │ │ ├── ConnectionProfilesView.swift │ │ │ └── ConnectionView.swift │ │ │ ├── Profiles │ │ │ ├── ProfilesView.swift │ │ │ └── WebReceiverView.swift │ │ │ ├── Settings │ │ │ ├── DonateViewModifier.swift │ │ │ └── SettingsView.swift │ │ │ └── Shared │ │ │ ├── ListRowView.swift │ │ │ ├── TopSpacer.swift │ │ │ └── View+MainButton.swift │ ├── AppStrings │ │ ├── AppStrings.swift │ │ ├── Resources │ │ │ ├── de.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── el.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── en.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── es.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── fr.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── it.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── nl.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── pl.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── pt.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── ru.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── sv.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── uk.lproj │ │ │ │ └── Localizable.strings │ │ │ └── zh-Hans.lproj │ │ │ │ └── Localizable.strings │ │ └── SwiftGen+Strings.swift │ ├── CommonData │ │ └── CommonData.swift │ ├── CommonDataPreferences │ │ ├── CommonData+Preferences.swift │ │ ├── Domain │ │ │ ├── CDExcludedEndpoint.swift │ │ │ ├── CDFavoriteServer.swift │ │ │ ├── CDModulePreferencesV3.swift │ │ │ ├── CDProviderPreferencesV3.swift │ │ │ └── Mapper.swift │ │ ├── Preferences.xcdatamodeld │ │ │ └── Preferences.xcdatamodel │ │ │ │ └── contents │ │ └── Strategy │ │ │ ├── CDModulePreferencesRepositoryV3.swift │ │ │ └── CDProviderPreferencesRepositoryV3.swift │ ├── CommonDataProfiles │ │ ├── CommonData+Profiles.swift │ │ ├── Domain │ │ │ └── CDProfileV3.swift │ │ ├── Profiles.xcdatamodeld │ │ │ ├── .xccurrentversion │ │ │ ├── Profiles.xcdatamodel │ │ │ │ └── contents │ │ │ └── ProfilesV3.xcdatamodel │ │ │ │ └── contents │ │ └── Strategy │ │ │ └── CDProfileRepositoryV3.swift │ ├── CommonDataProviders │ │ ├── CommonData+Providers.swift │ │ ├── Domain │ │ │ ├── CDProviderPresetV3.swift │ │ │ ├── CDProviderServerV3.swift │ │ │ ├── CDProviderV3.swift │ │ │ ├── CoreDataMapper.swift │ │ │ ├── DomainMapper.swift │ │ │ └── ProviderServerParameters+CoreData.swift │ │ ├── Providers.xcdatamodeld │ │ │ └── Providers.xcdatamodel │ │ │ │ └── contents │ │ └── Strategy │ │ │ ├── CDAPIRepositoryV3.swift │ │ │ └── CDProviderRepositoryV3.swift │ ├── CommonResources │ │ ├── API+Shared.swift │ │ ├── Resources.swift │ │ └── Resources │ │ │ ├── Constants.json │ │ │ ├── Credits.json │ │ │ ├── Issue.txt │ │ │ └── web_uploader.html │ └── Empty │ │ ├── AppLibraryMainWrapper │ │ └── Dummy.swift │ │ └── AppLibraryTVWrapper │ │ └── Dummy.swift ├── Tests │ ├── AppLibraryMainTests │ │ ├── AppProfileImporterTests.swift │ │ └── IssueTests.swift │ └── AppLibraryTests │ │ ├── AppContextTests.swift │ │ ├── OnboardingObservableTests.swift │ │ ├── ProfileEditorTests.swift │ │ └── WireGuardParseErrorTests.swift ├── ci │ ├── build-number.sh │ ├── dmg-generate.sh │ ├── dmg-notarize.sh │ ├── dmg-save-template.sh │ ├── dmg-sign.sh │ ├── dmg │ │ ├── .DS_Store │ │ ├── .background │ │ │ └── drag.png │ │ ├── .gitignore │ │ ├── Applications │ │ └── README.txt │ ├── export │ │ ├── options.plist │ │ └── options_dmg.plist │ ├── team-id.sh │ ├── version-number.sh │ ├── xcconfig-get.sh │ ├── xcconfig-set.sh │ ├── xcode-archive.sh │ └── xcode-export.sh ├── screenshots │ ├── compose-device.sh │ ├── compose.sh │ ├── export.sh │ └── html │ │ ├── appletv │ │ ├── frame.png │ │ └── style.css │ │ ├── ipad │ │ ├── frame.png │ │ └── style.css │ │ ├── iphone │ │ ├── frame.png │ │ └── style.css │ │ ├── mac │ │ └── style.css │ │ ├── main.html │ │ ├── script.js │ │ ├── style.css │ │ └── tv.html └── scripts │ ├── env.sh │ ├── export-certs.sh │ ├── gen-notarized-dmg.sh │ └── gen-screenshots.sh ├── app-cross ├── .gitignore ├── CMakeLists.txt ├── distribute.cmake ├── include │ └── app.h ├── passepartout.cmake ├── src │ ├── app.cc │ └── main.cc └── wx.cmake ├── app-shared ├── .gitignore ├── CMakeLists.txt ├── Package.resolved ├── Package.swift ├── Sources │ ├── ABI │ │ └── Example.swift │ ├── ABIExample_C │ │ └── main.c │ ├── ABI_C │ │ ├── include │ │ │ └── passepartout.h │ │ └── passepartout.c │ ├── CommonLibrary │ │ └── CommonLibrary.swift │ ├── CommonLibraryApple │ │ ├── AppConfiguration+Apple.swift │ │ ├── CoreDataPersistentStore.swift │ │ ├── CoreDataRepository.swift │ │ ├── IAPManager+Suggestions.swift │ │ ├── NEProfileRepository.swift │ │ ├── StoreKitHelper.swift │ │ └── StoreKitReceiptReader.swift │ ├── CommonLibraryCore │ │ ├── Business │ │ │ ├── AppEncoder.swift │ │ │ ├── ConfigManager.swift │ │ │ ├── ExtendedTunnel.swift │ │ │ ├── IAPManager.swift │ │ │ ├── KeyValueManager.swift │ │ │ ├── ProfileManager.swift │ │ │ ├── VersionChecker.swift │ │ │ ├── WebReceiverManager.swift │ │ │ └── WebUploader.swift │ │ ├── Domain │ │ │ ├── ABI.swift │ │ │ ├── AppConfiguration.swift │ │ │ ├── AppError.swift │ │ │ ├── AppFeature.swift │ │ │ ├── AppIdentifier.swift │ │ │ ├── AppLog.swift │ │ │ ├── AppPreference.swift │ │ │ ├── AppProduct+Donations.swift │ │ │ ├── AppProduct+Features.swift │ │ │ ├── AppProduct+Providers.swift │ │ │ ├── AppProduct.swift │ │ │ ├── AppProfile.swift │ │ │ ├── AppProfileHeader.swift │ │ │ ├── AppProfileStatus.swift │ │ │ ├── AppUserLevel.swift │ │ │ ├── ChangelogEntry.swift │ │ │ ├── ConfigFlag.swift │ │ │ ├── Constants.swift │ │ │ ├── Credits.swift │ │ │ ├── DistributionTarget.swift │ │ │ ├── Issue.swift │ │ │ ├── PreferenceProtocol.swift │ │ │ ├── ProfileImporterInput.swift │ │ │ ├── ProfilePreview.swift │ │ │ ├── ProfileSharingFlag.swift │ │ │ ├── ProfileTransfer.swift │ │ │ ├── SemanticVersion.swift │ │ │ ├── SystemInformation.swift │ │ │ ├── UIPreference.swift │ │ │ └── Web.swift │ │ ├── Extensions │ │ │ ├── ChangelogEntry+Extensions.swift │ │ │ ├── JSON+Extensions.swift │ │ │ ├── KeyValueManager+AppPreference.swift │ │ │ ├── KeyValueManager+UIPreference.swift │ │ │ ├── Module+Extensions.swift │ │ │ ├── ModuleType+Known.swift │ │ │ ├── ModuleType+New.swift │ │ │ ├── PartoutLogger+Extensions.swift │ │ │ ├── Profile+Extensions.swift │ │ │ ├── ProfileAttributes+ModulePreferences.swift │ │ │ ├── ProfileImporter+SingleModule.swift │ │ │ ├── Registry+Passepartout.swift │ │ │ └── Registry+ProfileImporter.swift │ │ ├── IAP │ │ │ ├── AppFeature+Suggestions.swift │ │ │ ├── AppFeatureProviding+Levels.swift │ │ │ ├── AppFeatureProviding+Products.swift │ │ │ ├── AppFeatureProviding.swift │ │ │ ├── AppFeatureRequiring+Modules.swift │ │ │ ├── AppFeatureRequiring+Profile.swift │ │ │ ├── AppFeatureRequiring+Providers.swift │ │ │ ├── AppFeatureRequiring.swift │ │ │ ├── AppProduct+Suggestions.swift │ │ │ └── IAPManager+Verify.swift │ │ ├── Internal │ │ │ ├── AppRelease.swift │ │ │ ├── ConfigBundle.swift │ │ │ └── ProfileAttributes.swift │ │ ├── Mappers │ │ │ ├── Partout+Profile.swift │ │ │ └── Partout+Tunnel.swift │ │ ├── Strategy │ │ │ ├── AppLogger.swift │ │ │ ├── AppProductHelper.swift │ │ │ ├── AppReceiptReader.swift │ │ │ ├── ConfigManagerStrategy.swift │ │ │ ├── DummyWebReceiver.swift │ │ │ ├── FakeAppProductHelper.swift │ │ │ ├── FakeAppReceiptReader.swift │ │ │ ├── GitHubConfigStrategy.swift │ │ │ ├── GitHubReleaseStrategy.swift │ │ │ ├── InMemoryProfileRepository.swift │ │ │ ├── ModulePreferencesRepository.swift │ │ │ ├── PartoutLoggerStrategy.swift │ │ │ ├── Processors.swift │ │ │ ├── ProfileImporter.swift │ │ │ ├── ProfileRepository.swift │ │ │ ├── ProviderPreferencesRepository.swift │ │ │ ├── SharedReceiptReader.swift │ │ │ ├── URLSessionUploaderStrategy.swift │ │ │ ├── VersionCheckerStrategy.swift │ │ │ ├── WebReceiver.swift │ │ │ └── WebUploaderStrategy.swift │ │ ├── Utils │ │ │ ├── BetaChecker.swift │ │ │ ├── BuildProducts.swift │ │ │ ├── Bundle+Extensions.swift │ │ │ ├── Collection+Extensions.swift │ │ │ ├── Data+Extensions.swift │ │ │ ├── HTMLTemplate.swift │ │ │ ├── InApp.swift │ │ │ ├── KeyValueStore.swift │ │ │ ├── LocalNetworkPermissionService.swift │ │ │ ├── MainActor+Sync.swift │ │ │ ├── Measure.swift │ │ │ ├── MultipartForm.swift │ │ │ ├── OriginalPurchase.swift │ │ │ ├── Repository.swift │ │ │ ├── Routable.swift │ │ │ ├── String+Extensions.swift │ │ │ ├── SystemExtensionManager.swift │ │ │ ├── TaskTimeout.swift │ │ │ ├── TestFlightChecker.swift │ │ │ ├── URL+Extensions.swift │ │ │ └── UserDefaultsStore.swift │ │ └── Web │ │ │ ├── NIOWebReceiver.swift │ │ │ └── NIOWebReceiverHandler.swift │ ├── CommonProviders │ │ ├── API │ │ │ ├── DefaultAPIMapper+Extensions.swift │ │ │ ├── DefaultAPIMapper.swift │ │ │ └── ProviderID+API.swift │ │ ├── CommonProviders.swift │ │ ├── OpenVPN │ │ │ ├── OpenVPN+API.swift │ │ │ ├── OpenVPNProviderResolver.swift │ │ │ └── OpenVPNProviderTemplate.swift │ │ ├── Providers │ │ │ ├── ProviderScriptingEngine+Apple.swift │ │ │ └── ProviderScriptingEngine.swift │ │ └── WireGuard │ │ │ ├── WireGuard+API.swift │ │ │ ├── WireGuardProviderResolver.swift │ │ │ ├── WireGuardProviderStorage.swift │ │ │ └── WireGuardProviderTemplate.swift │ ├── CommonProvidersAPI │ │ ├── API.swift │ │ ├── APIManager.swift │ │ ├── APIMapper.swift │ │ ├── APIRepository.swift │ │ ├── InMemoryAPIRepository.swift │ │ ├── InMemoryProviderRepository.swift │ │ ├── JSON │ │ │ └── v7 │ │ │ │ ├── index.json │ │ │ │ └── providers │ │ │ │ ├── hideme.js │ │ │ │ ├── ivpn.js │ │ │ │ ├── mullvad.js │ │ │ │ ├── nordvpn.js │ │ │ │ ├── oeck.js │ │ │ │ ├── pia.js │ │ │ │ ├── surfshark.js │ │ │ │ ├── torguard.js │ │ │ │ ├── tunnelbear.js │ │ │ │ ├── vyprvpn.js │ │ │ │ └── windscribe.js │ │ ├── Provider+Metadata.swift │ │ ├── Provider.swift │ │ ├── ProviderInfrastructure.swift │ │ ├── ProviderManager.swift │ │ ├── ProviderRepository.swift │ │ ├── ProviderServerParameters.swift │ │ └── REST │ │ │ ├── API+Bundle.swift │ │ │ ├── API+REST.swift │ │ │ ├── RESTIndex.swift │ │ │ └── RESTResource.swift │ └── CommonProvidersCore │ │ ├── CommonProvidersCore.swift │ │ ├── DefaultProviderScriptingAPI.swift │ │ ├── Partout+Providers.swift │ │ ├── ProfileType+Providers.swift │ │ ├── ProviderAuthentication.swift │ │ ├── ProviderCache.swift │ │ ├── ProviderEntity.swift │ │ ├── ProviderHeuristic.swift │ │ ├── ProviderID.swift │ │ ├── ProviderModule.swift │ │ ├── ProviderOptions.swift │ │ ├── ProviderPreset.swift │ │ ├── ProviderRegion.swift │ │ ├── ProviderScriptingAPI.swift │ │ ├── ProviderServer.swift │ │ ├── ProviderTemplateCompiler.swift │ │ ├── Timestamp+Date.swift │ │ └── Timestamp+RFC1123.swift └── Tests │ ├── CommonLibraryTests │ ├── Business │ │ ├── ExtendedTunnelTests.swift │ │ ├── IAPManagerTests+New.swift │ │ ├── IAPManagerTests.swift │ │ ├── KeyValueManagerTests.swift │ │ ├── ProfileManagerTests.swift │ │ ├── VersionCheckerTests.swift │ │ └── WebReceiverManagerTests.swift │ ├── Domain │ │ ├── AppPreferenceTests.swift │ │ ├── ChangelogTests.swift │ │ ├── ConfigBundleTests.swift │ │ ├── ModuleTypeTests.swift │ │ ├── ProfileAttributesTests.swift │ │ └── SemanticVersionTests.swift │ ├── Mock │ │ ├── MockBetaChecker.swift │ │ ├── MockProfileProcessor.swift │ │ └── MockTunnelProcessor.swift │ ├── Resources │ │ └── en.lproj │ │ │ └── Localizable.strings │ ├── Shared.swift │ └── Web │ │ ├── HTMLTemplateTests.swift │ │ └── MultipartFormTests.swift │ ├── CommonProvidersAPITests │ ├── APIManagerTests.swift │ ├── Mock.swift │ └── ProviderManagerTests.swift │ ├── CommonProvidersCoreTests │ ├── ProviderScriptingAPITests.swift │ └── Resources │ │ └── mapped.txt │ └── CommonProvidersTests │ ├── API │ ├── APIMapperTests.swift │ ├── APITestSuite.swift │ ├── Helpers │ │ ├── AuthInput.swift │ │ └── FetchInput.swift │ ├── HideMeProviderTests.swift │ └── MullvadProviderTests.swift │ ├── ProviderModulesTests.swift │ ├── ProviderScriptingEngineTests.swift │ ├── RegistryTests.swift │ └── Resources │ ├── hideme │ └── fetch.json │ ├── mullvad │ ├── fetch.json │ ├── get-devices.json │ ├── post-auth.json │ ├── post-device.json │ └── put-device.json │ ├── preset.openvpn.json │ └── preset.wireguard.json ├── ci ├── gpg-import.sh ├── gpg.txt ├── run-api-tests.sh ├── run-apple-tests.sh ├── run-partout-tests.sh └── run-shared-tests.sh ├── fastlane ├── .env ├── .env.iOS ├── .env.macOS ├── .env.tvOS ├── Appfile ├── Deliverfile ├── Fastfile ├── Pluginfile ├── metadata │ ├── iOS │ │ ├── app_icon.jpg │ │ ├── copyright.txt │ │ ├── de-DE │ │ │ ├── description.txt │ │ │ ├── keywords.txt │ │ │ ├── name.txt │ │ │ └── subtitle.txt │ │ ├── default │ │ │ ├── apple_tv_privacy_policy.txt │ │ │ ├── marketing_url.txt │ │ │ ├── privacy_url.txt │ │ │ ├── promotional_text.txt │ │ │ ├── release_notes.txt │ │ │ └── support_url.txt │ │ ├── el │ │ │ ├── description.txt │ │ │ ├── keywords.txt │ │ │ ├── name.txt │ │ │ └── subtitle.txt │ │ ├── en-US │ │ │ ├── description.txt │ │ │ ├── keywords.txt │ │ │ ├── name.txt │ │ │ └── subtitle.txt │ │ ├── es-MX │ │ │ ├── description.txt │ │ │ ├── keywords.txt │ │ │ ├── name.txt │ │ │ └── subtitle.txt │ │ ├── fr-FR │ │ │ ├── description.txt │ │ │ ├── keywords.txt │ │ │ ├── name.txt │ │ │ └── subtitle.txt │ │ ├── it │ │ │ ├── description.txt │ │ │ ├── keywords.txt │ │ │ ├── name.txt │ │ │ └── subtitle.txt │ │ ├── nl-NL │ │ │ ├── description.txt │ │ │ ├── keywords.txt │ │ │ ├── name.txt │ │ │ └── subtitle.txt │ │ ├── pl │ │ │ ├── description.txt │ │ │ ├── keywords.txt │ │ │ ├── name.txt │ │ │ └── subtitle.txt │ │ ├── primary_category.txt │ │ ├── primary_first_sub_category.txt │ │ ├── primary_second_sub_category.txt │ │ ├── pt-BR │ │ │ ├── description.txt │ │ │ ├── keywords.txt │ │ │ ├── name.txt │ │ │ └── subtitle.txt │ │ ├── ru │ │ │ ├── description.txt │ │ │ ├── keywords.txt │ │ │ ├── name.txt │ │ │ └── subtitle.txt │ │ ├── secondary_category.txt │ │ ├── secondary_first_sub_category.txt │ │ ├── secondary_second_sub_category.txt │ │ └── sv │ │ │ ├── description.txt │ │ │ ├── keywords.txt │ │ │ ├── name.txt │ │ │ └── subtitle.txt │ ├── macOS │ │ ├── app_icon.jpg │ │ ├── copyright.txt │ │ ├── de-DE │ │ │ ├── description.txt │ │ │ ├── keywords.txt │ │ │ ├── name.txt │ │ │ └── subtitle.txt │ │ ├── default │ │ │ ├── apple_tv_privacy_policy.txt │ │ │ ├── marketing_url.txt │ │ │ ├── privacy_url.txt │ │ │ ├── promotional_text.txt │ │ │ ├── release_notes.txt │ │ │ └── support_url.txt │ │ ├── el │ │ │ ├── description.txt │ │ │ ├── keywords.txt │ │ │ ├── name.txt │ │ │ └── subtitle.txt │ │ ├── en-US │ │ │ ├── description.txt │ │ │ ├── keywords.txt │ │ │ ├── name.txt │ │ │ └── subtitle.txt │ │ ├── es-MX │ │ │ ├── description.txt │ │ │ ├── keywords.txt │ │ │ ├── name.txt │ │ │ └── subtitle.txt │ │ ├── fr-FR │ │ │ ├── description.txt │ │ │ ├── keywords.txt │ │ │ ├── name.txt │ │ │ └── subtitle.txt │ │ ├── it │ │ │ ├── description.txt │ │ │ ├── keywords.txt │ │ │ ├── name.txt │ │ │ └── subtitle.txt │ │ ├── nl-NL │ │ │ ├── description.txt │ │ │ ├── keywords.txt │ │ │ ├── name.txt │ │ │ └── subtitle.txt │ │ ├── pl │ │ │ ├── description.txt │ │ │ ├── keywords.txt │ │ │ ├── name.txt │ │ │ └── subtitle.txt │ │ ├── primary_category.txt │ │ ├── primary_first_sub_category.txt │ │ ├── primary_second_sub_category.txt │ │ ├── pt-BR │ │ │ ├── description.txt │ │ │ ├── keywords.txt │ │ │ ├── name.txt │ │ │ └── subtitle.txt │ │ ├── review_information │ │ ├── ru │ │ │ ├── description.txt │ │ │ ├── keywords.txt │ │ │ ├── name.txt │ │ │ └── subtitle.txt │ │ ├── secondary_category.txt │ │ ├── secondary_first_sub_category.txt │ │ ├── secondary_second_sub_category.txt │ │ └── sv │ │ │ ├── description.txt │ │ │ ├── keywords.txt │ │ │ ├── name.txt │ │ │ └── subtitle.txt │ ├── symlink-base.sh │ ├── symlink-l10n.sh │ ├── symlink-release-notes.sh │ └── tvOS │ │ ├── copyright.txt │ │ ├── de-DE │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── name.txt │ │ └── subtitle.txt │ │ ├── default │ │ ├── apple_tv_privacy_policy.txt │ │ ├── marketing_url.txt │ │ ├── privacy_url.txt │ │ ├── promotional_text.txt │ │ ├── release_notes.txt │ │ └── support_url.txt │ │ ├── el │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── name.txt │ │ └── subtitle.txt │ │ ├── en-US │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── name.txt │ │ └── subtitle.txt │ │ ├── es-MX │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── name.txt │ │ └── subtitle.txt │ │ ├── fr-FR │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── name.txt │ │ └── subtitle.txt │ │ ├── it │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── name.txt │ │ └── subtitle.txt │ │ ├── nl-NL │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── name.txt │ │ └── subtitle.txt │ │ ├── pl │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── name.txt │ │ └── subtitle.txt │ │ ├── primary_category.txt │ │ ├── primary_first_sub_category.txt │ │ ├── primary_second_sub_category.txt │ │ ├── pt-BR │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── name.txt │ │ └── subtitle.txt │ │ ├── review_information │ │ ├── ru │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── name.txt │ │ └── subtitle.txt │ │ ├── secondary_category.txt │ │ ├── secondary_first_sub_category.txt │ │ ├── secondary_second_sub_category.txt │ │ └── sv │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── name.txt │ │ └── subtitle.txt └── screenshots │ ├── iOS │ └── en-US │ │ ├── ipadPro129-01.png │ │ ├── ipadPro129-02.png │ │ ├── ipadPro129-03.png │ │ ├── ipadPro129-04.png │ │ ├── ipadPro129-05.png │ │ ├── iphone-01.png │ │ ├── iphone-02.png │ │ ├── iphone-03.png │ │ ├── iphone-04.png │ │ └── iphone-05.png │ ├── macOS │ └── en-US │ │ ├── mac-01.png │ │ ├── mac-02.png │ │ ├── mac-03.png │ │ ├── mac-04.png │ │ └── mac-05.png │ └── tvOS │ └── en-US │ ├── appletv-01.png │ ├── appletv-02.png │ └── appletv-03.png ├── scripts ├── build.ps1 ├── build.sh ├── bump.sh ├── clean-translations.sh ├── copy-release-notes.sh ├── env.sh ├── import-translations.sh ├── import-translations.txt ├── list-changes.sh ├── pull-android-libraries.sh ├── push-release.sh ├── upload-metadata.sh └── upload-screenshots.sh └── swiftgen.yml /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/001-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/.github/ISSUE_TEMPLATE/001-issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/002-feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/.github/ISSUE_TEMPLATE/002-feature.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/009-copyright_clause.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/.github/ISSUE_TEMPLATE/009-copyright_clause.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/010-test_in_app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/.github/ISSUE_TEMPLATE/010-test_in_app.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/011-test_migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/.github/ISSUE_TEMPLATE/011-test_migration.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/012-test_release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/.github/ISSUE_TEMPLATE/012-test_release.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/013-test_file_associations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/.github/ISSUE_TEMPLATE/013-test_file_associations.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/020-test_platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/.github/ISSUE_TEMPLATE/020-test_platforms.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/api_cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/.github/workflows/api_cache.yml -------------------------------------------------------------------------------- /.github/workflows/api_publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/.github/workflows/api_publish.yml -------------------------------------------------------------------------------- /.github/workflows/full_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/.github/workflows/full_test.yml -------------------------------------------------------------------------------- /.github/workflows/manual_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/.github/workflows/manual_release.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/.gitmodules -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.2 2 | -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /CLA.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/CLA.rst -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/README.md -------------------------------------------------------------------------------- /api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/api/.gitignore -------------------------------------------------------------------------------- /api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/api/README.md -------------------------------------------------------------------------------- /api/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/api/cache.js -------------------------------------------------------------------------------- /api/cache/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/api/index.js -------------------------------------------------------------------------------- /api/lib/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/api/lib/api.js -------------------------------------------------------------------------------- /api/lib/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/api/lib/context.js -------------------------------------------------------------------------------- /api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/api/package-lock.json -------------------------------------------------------------------------------- /api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/api/package.json -------------------------------------------------------------------------------- /api/src: -------------------------------------------------------------------------------- 1 | ../app-shared/Sources/CommonProvidersAPI/JSON/ -------------------------------------------------------------------------------- /api/src-latest: -------------------------------------------------------------------------------- 1 | src/v7/ -------------------------------------------------------------------------------- /api/test/mock/providers/hideme/fetch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/api/test/mock/providers/hideme/fetch.json -------------------------------------------------------------------------------- /api/test/mock/providers/ivpn/fetch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/api/test/mock/providers/ivpn/fetch.json -------------------------------------------------------------------------------- /api/test/mock/providers/mullvad/fetch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/api/test/mock/providers/mullvad/fetch.json -------------------------------------------------------------------------------- /api/test/mock/providers/nordvpn/fetch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/api/test/mock/providers/nordvpn/fetch.json -------------------------------------------------------------------------------- /api/test/mock/providers/oeck/fetch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/api/test/mock/providers/oeck/fetch.json -------------------------------------------------------------------------------- /api/test/mock/providers/pia/fetch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/api/test/mock/providers/pia/fetch.json -------------------------------------------------------------------------------- /api/test/mock/providers/surfshark/fetch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/api/test/mock/providers/surfshark/fetch.json -------------------------------------------------------------------------------- /api/test/providers/hideme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/api/test/providers/hideme.js -------------------------------------------------------------------------------- /api/test/providers/ivpn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/api/test/providers/ivpn.js -------------------------------------------------------------------------------- /api/test/providers/mullvad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/api/test/providers/mullvad.js -------------------------------------------------------------------------------- /api/test/providers/nordvpn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/api/test/providers/nordvpn.js -------------------------------------------------------------------------------- /api/test/providers/oeck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/api/test/providers/oeck.js -------------------------------------------------------------------------------- /api/test/providers/pia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/api/test/providers/pia.js -------------------------------------------------------------------------------- /api/test/providers/surfshark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/api/test/providers/surfshark.js -------------------------------------------------------------------------------- /api/test/providers/torguard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/api/test/providers/torguard.js -------------------------------------------------------------------------------- /api/test/providers/tunnelbear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/api/test/providers/tunnelbear.js -------------------------------------------------------------------------------- /api/test/providers/vyprvpn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/api/test/providers/vyprvpn.js -------------------------------------------------------------------------------- /api/test/providers/windscribe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/api/test/providers/windscribe.js -------------------------------------------------------------------------------- /api/test/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/api/test/setup.js -------------------------------------------------------------------------------- /app-android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-android/.gitignore -------------------------------------------------------------------------------- /app-android/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /app-android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app-android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-android/app/build.gradle.kts -------------------------------------------------------------------------------- /app-android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-android/app/proguard-rules.pro -------------------------------------------------------------------------------- /app-android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app-android/app/src/main/assets/.gitignore: -------------------------------------------------------------------------------- 1 | *.json 2 | -------------------------------------------------------------------------------- /app-android/app/src/main/cpp/.gitignore: -------------------------------------------------------------------------------- 1 | *.a 2 | *.so 3 | -------------------------------------------------------------------------------- /app-android/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-android/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /app-android/app/src/main/cpp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-android/app/src/main/cpp/build.sh -------------------------------------------------------------------------------- /app-android/app/src/main/cpp/src/partout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-android/app/src/main/cpp/src/partout.h -------------------------------------------------------------------------------- /app-android/app/src/main/cpp/src/passepartout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-android/app/src/main/cpp/src/passepartout.h -------------------------------------------------------------------------------- /app-android/app/src/main/cpp/src/vpn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-android/app/src/main/cpp/src/vpn.c -------------------------------------------------------------------------------- /app-android/app/src/main/cpp/src/vpn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-android/app/src/main/cpp/src/vpn.h -------------------------------------------------------------------------------- /app-android/app/src/main/cpp/src/wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-android/app/src/main/cpp/src/wrapper.c -------------------------------------------------------------------------------- /app-android/app/src/main/java/com/algoritmico/partout/VpnWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-android/app/src/main/java/com/algoritmico/partout/VpnWrapper.kt -------------------------------------------------------------------------------- /app-android/app/src/main/jniLibs/.gitignore: -------------------------------------------------------------------------------- 1 | *.so 2 | -------------------------------------------------------------------------------- /app-android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app-android/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-android/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app-android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app-android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app-android/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-android/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app-android/app/src/main/res/values-v23/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-android/app/src/main/res/values-v23/themes.xml -------------------------------------------------------------------------------- /app-android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app-android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app-android/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-android/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app-android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-android/build.gradle.kts -------------------------------------------------------------------------------- /app-android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-android/gradle.properties -------------------------------------------------------------------------------- /app-android/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-android/gradle/libs.versions.toml -------------------------------------------------------------------------------- /app-android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app-android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /app-android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-android/gradlew -------------------------------------------------------------------------------- /app-android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-android/gradlew.bat -------------------------------------------------------------------------------- /app-android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-android/settings.gradle.kts -------------------------------------------------------------------------------- /app-apple/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/.gitignore -------------------------------------------------------------------------------- /app-apple/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/.swiftlint.yml -------------------------------------------------------------------------------- /app-apple/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Package.resolved -------------------------------------------------------------------------------- /app-apple/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Package.swift -------------------------------------------------------------------------------- /app-apple/Passepartout.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /app-apple/Passepartout/App/App.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/App.entitlements -------------------------------------------------------------------------------- /app-apple/Passepartout/App/App.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/App.plist -------------------------------------------------------------------------------- /app-apple/Passepartout/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/AppDelegate.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/App/AppMac.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/AppMac.entitlements -------------------------------------------------------------------------------- /app-apple/Passepartout/App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /app-apple/Passepartout/App/Assets.xcassets/Logo.imageset/Logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/Assets.xcassets/Logo.imageset/Logo@2x.png -------------------------------------------------------------------------------- /app-apple/Passepartout/App/Assets.xcassets/Logo.imageset/Logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/Assets.xcassets/Logo.imageset/Logo@3x.png -------------------------------------------------------------------------------- /app-apple/Passepartout/App/Assets.xcassets/Menu/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/Assets.xcassets/Menu/Contents.json -------------------------------------------------------------------------------- /app-apple/Passepartout/App/Context/AppContext+Production.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/Context/AppContext+Production.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/App/Context/AppContext+Testing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/Context/AppContext+Testing.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/App/Context/DefaultAppProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/Context/DefaultAppProcessor.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/App/Context/Dependencies+Processors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/Context/Dependencies+Processors.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/App/Context/ProfileManager+Testing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/Context/ProfileManager+Testing.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/App/Context/test-bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/Context/test-bundle.json -------------------------------------------------------------------------------- /app-apple/Passepartout/App/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/LaunchScreen.storyboard -------------------------------------------------------------------------------- /app-apple/Passepartout/App/PassepartoutApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/PassepartoutApp.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/App/Platforms/App+iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/Platforms/App+iOS.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/App/Platforms/App+macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/Platforms/App+macOS.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/App/Platforms/App+tvOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/Platforms/App+tvOS.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/App/de.lproj/AppPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/de.lproj/AppPlist.strings -------------------------------------------------------------------------------- /app-apple/Passepartout/App/el.lproj/AppPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/el.lproj/AppPlist.strings -------------------------------------------------------------------------------- /app-apple/Passepartout/App/en.lproj/AppPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/en.lproj/AppPlist.strings -------------------------------------------------------------------------------- /app-apple/Passepartout/App/es.lproj/AppPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/es.lproj/AppPlist.strings -------------------------------------------------------------------------------- /app-apple/Passepartout/App/fr.lproj/AppPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/fr.lproj/AppPlist.strings -------------------------------------------------------------------------------- /app-apple/Passepartout/App/it.lproj/AppPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/it.lproj/AppPlist.strings -------------------------------------------------------------------------------- /app-apple/Passepartout/App/nl.lproj/AppPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/nl.lproj/AppPlist.strings -------------------------------------------------------------------------------- /app-apple/Passepartout/App/pl.lproj/AppPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/pl.lproj/AppPlist.strings -------------------------------------------------------------------------------- /app-apple/Passepartout/App/pt.lproj/AppPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/pt.lproj/AppPlist.strings -------------------------------------------------------------------------------- /app-apple/Passepartout/App/ru.lproj/AppPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/ru.lproj/AppPlist.strings -------------------------------------------------------------------------------- /app-apple/Passepartout/App/sv.lproj/AppPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/sv.lproj/AppPlist.strings -------------------------------------------------------------------------------- /app-apple/Passepartout/App/uk.lproj/AppPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/uk.lproj/AppPlist.strings -------------------------------------------------------------------------------- /app-apple/Passepartout/App/zh-Hans.lproj/AppPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/App/zh-Hans.lproj/AppPlist.strings -------------------------------------------------------------------------------- /app-apple/Passepartout/Config.mac.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/Config.mac.xcconfig -------------------------------------------------------------------------------- /app-apple/Passepartout/Config.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/Config.xcconfig -------------------------------------------------------------------------------- /app-apple/Passepartout/Intents/Intents.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/Intents/Intents.entitlements -------------------------------------------------------------------------------- /app-apple/Passepartout/Intents/Intents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/Intents/Intents.plist -------------------------------------------------------------------------------- /app-apple/Passepartout/Intents/IntentsExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/Intents/IntentsExtension.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/LoginItem/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/LoginItem/AppDelegate.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/LoginItem/LoginItem.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/LoginItem/LoginItem.entitlements -------------------------------------------------------------------------------- /app-apple/Passepartout/LoginItem/PassepartoutLoginItemApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/LoginItem/PassepartoutLoginItemApp.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/Passepartout.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/Passepartout.xctestplan -------------------------------------------------------------------------------- /app-apple/Passepartout/Scripts/embed-extensions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/Scripts/embed-extensions.sh -------------------------------------------------------------------------------- /app-apple/Passepartout/Shared/AppRelease+BusinessChanges.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/Shared/AppRelease+BusinessChanges.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/Shared/Dependencies+IAPManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/Shared/Dependencies+IAPManager.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/Shared/Dependencies+Partout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/Shared/Dependencies+Partout.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/Shared/Dependencies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/Shared/Dependencies.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/Shared/OpenVPNImplementationBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/Shared/OpenVPNImplementationBuilder.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/Shared/WireGuardImplementationBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/Shared/WireGuardImplementationBuilder.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/Tests/LocalizationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/Tests/LocalizationTests.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/Tunnel/DefaultTunnelProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/Tunnel/DefaultTunnelProcessor.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/Tunnel/PacketTunnelProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/Tunnel/PacketTunnelProvider.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/Tunnel/Tunnel.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/Tunnel/Tunnel.entitlements -------------------------------------------------------------------------------- /app-apple/Passepartout/Tunnel/Tunnel.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/Tunnel/Tunnel.plist -------------------------------------------------------------------------------- /app-apple/Passepartout/Tunnel/TunnelMac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/Tunnel/TunnelMac.plist -------------------------------------------------------------------------------- /app-apple/Passepartout/Tunnel/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/Tunnel/main.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/UITests/Main/MainFlowTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/UITests/Main/MainFlowTests.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/UITests/Main/MainScreenshotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/UITests/Main/MainScreenshotTests.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/UITests/Main/Screens/AppScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/UITests/Main/Screens/AppScreen.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/UITests/Main/Screens/ProfileMenuScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/UITests/Main/Screens/ProfileMenuScreen.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/UITests/MainScreenshots.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/UITests/MainScreenshots.xctestplan -------------------------------------------------------------------------------- /app-apple/Passepartout/UITests/TV/Screens/AppScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/UITests/TV/Screens/AppScreen.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/UITests/TV/TVFlowTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/UITests/TV/TVFlowTests.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/UITests/TV/TVScreenshotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/UITests/TV/TVScreenshotTests.swift -------------------------------------------------------------------------------- /app-apple/Passepartout/UITests/TVScreenshots.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Passepartout/UITests/TVScreenshots.xctestplan -------------------------------------------------------------------------------- /app-apple/Sources/AppAccessibility/Domain/AccessibilityInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppAccessibility/Domain/AccessibilityInfo.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppAccessibility/Domain/View+Accessibility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppAccessibility/Domain/View+Accessibility.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppAccessibility/IPC/AppCommandLine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppAccessibility/IPC/AppCommandLine.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppAccessibility/Screens/App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppAccessibility/Screens/App.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppAccessibility/Screens/Profile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppAccessibility/Screens/Profile.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppAccessibility/Screens/ProviderServers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppAccessibility/Screens/ProviderServers.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/AppLibrary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/AppLibrary.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Domain/AppTip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Domain/AppTip.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Domain/EditableProfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Domain/EditableProfile.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Domain/HTTPAddressPort.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Domain/HTTPAddressPort.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Domain/OnboardingStep.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Domain/OnboardingStep.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Domain/ProfilesLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Domain/ProfilesLayout.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Domain/SystemAppearance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Domain/SystemAppearance.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Extensions/AppTip+TipKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Extensions/AppTip+TipKit.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Extensions/ProfileEditor+Save.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Extensions/ProfileEditor+Save.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Extensions/ProfileEditor+UI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Extensions/ProfileEditor+UI.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/L10n/AppError+L10n.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/L10n/AppError+L10n.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/L10n/AppFeature+L10n.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/L10n/AppFeature+L10n.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/L10n/AppLibrary+L10n.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/L10n/AppLibrary+L10n.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/L10n/ErrorHandler+Default.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/L10n/ErrorHandler+Default.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/L10n/Foundation+L10n.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/L10n/Foundation+L10n.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/L10n/Modules/DNSModule+L10n.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/L10n/Modules/DNSModule+L10n.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/L10n/Modules/IPModule+L10n.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/L10n/Modules/IPModule+L10n.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/L10n/Modules/OnDemandModule+L10n.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/L10n/Modules/OnDemandModule+L10n.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/L10n/Modules/OpenVPNModule+L10n.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/L10n/Modules/OpenVPNModule+L10n.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/L10n/Modules/ProviderModule+L10n.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/L10n/Modules/ProviderModule+L10n.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/L10n/Partout+L10n.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/L10n/Partout+L10n.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/L10n/Strings+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/L10n/Strings+Extensions.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/L10n/Strings+Unlocalized.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/L10n/Strings+Unlocalized.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Observables/AppContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Observables/AppContext.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Observables/AppEncoderObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Observables/AppEncoderObservable.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Observables/AppFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Observables/AppFormatter.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Observables/AppearanceObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Observables/AppearanceObservable.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Observables/ConfigObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Observables/ConfigObservable.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Observables/IAPObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Observables/IAPObservable.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Observables/MacSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Observables/MacSettings.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Observables/ModuleDraft.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Observables/ModuleDraft.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Observables/ModulePreferences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Observables/ModulePreferences.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Observables/ObservableList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Observables/ObservableList.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Observables/OnboardingObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Observables/OnboardingObservable.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Observables/PreferencesManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Observables/PreferencesManager.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Observables/ProfileEditor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Observables/ProfileEditor.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Observables/ProfileObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Observables/ProfileObservable.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Observables/ProviderPreferences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Observables/ProviderPreferences.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Observables/TunnelObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Observables/TunnelObservable.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Observables/VersionObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Observables/VersionObservable.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Observables/View+Environment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Observables/View+Environment.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Observables/ViewLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Observables/ViewLogger.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Previews/AppContext+Previews.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Previews/AppContext+Previews.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Previews/Profile+Previews.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Previews/Profile+Previews.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Strategy/MockAppProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Strategy/MockAppProcessor.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Strategy/ModuleDraftEditing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Strategy/ModuleDraftEditing.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Strategy/ModuleViewFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Strategy/ModuleViewFactory.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Strategy/ModuleViewProviding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Strategy/ModuleViewProviding.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Platforms/Theme+iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Platforms/Theme+iOS.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Platforms/Theme+macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Platforms/Theme+macOS.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Platforms/Theme+tvOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Platforms/Theme+tvOS.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Theme+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Theme+Extensions.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Theme+ImageName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Theme+ImageName.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Theme+MenuImageName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Theme+MenuImageName.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Theme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Theme.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/ThemeAnimationCategory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/ThemeAnimationCategory.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Views/Theme+ListSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Views/Theme+ListSection.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Views/Theme+Modifiers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Views/Theme+Modifiers.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Views/Theme+ModuleSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Views/Theme+ModuleSection.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Views/ThemeCloseLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Views/ThemeCloseLabel.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Views/ThemeCopiableText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Views/ThemeCopiableText.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Views/ThemeCountryFlag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Views/ThemeCountryFlag.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Views/ThemeCountryText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Views/ThemeCountryText.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Views/ThemeDisclosableMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Views/ThemeDisclosableMenu.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Views/ThemeErrorModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Views/ThemeErrorModifier.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Views/ThemeFavoriteToggle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Views/ThemeFavoriteToggle.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Views/ThemeFullScreenView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Views/ThemeFullScreenView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Views/ThemeImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Views/ThemeImage.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Views/ThemeImageLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Views/ThemeImageLabel.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Views/ThemeInputType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Views/ThemeInputType.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Views/ThemeLogo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Views/ThemeLogo.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Views/ThemeLongContentLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Views/ThemeLongContentLink.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Views/ThemeMenuImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Views/ThemeMenuImage.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Views/ThemeModalOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Views/ThemeModalOptions.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Views/ThemeNameSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Views/ThemeNameSection.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Views/ThemeProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Views/ThemeProgressView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Views/ThemeRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Views/ThemeRow.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Views/ThemeSecureField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Views/ThemeSecureField.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Views/ThemeTappableText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Views/ThemeTappableText.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Views/ThemeTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Views/ThemeTextField.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Views/ThemeTextInputView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Views/ThemeTextInputView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Views/ThemeTextList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Views/ThemeTextList.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Views/ThemeTipModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Views/ThemeTipModifier.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Views/ThemeTrailingContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Views/ThemeTrailingContent.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Theme/Views/ThemeWindowModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Theme/Views/ThemeWindowModifier.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Utils/AppWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Utils/AppWindow.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Utils/Binding+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Utils/Binding+Extensions.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Utils/Color+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Utils/Color+Extensions.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Utils/CompatibleSettingsLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Utils/CompatibleSettingsLink.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Utils/ContentPreviewLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Utils/ContentPreviewLink.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Utils/CoreLocationWifiObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Utils/CoreLocationWifiObserver.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Utils/ErrorHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Utils/ErrorHandler.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Utils/GenericCreditsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Utils/GenericCreditsView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Utils/JSONFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Utils/JSONFile.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Utils/LocalizableEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Utils/LocalizableEntity.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Utils/LockableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Utils/LockableView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Utils/LongContentEditor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Utils/LongContentEditor.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Utils/MailComposerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Utils/MailComposerView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Utils/OnLoadModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Utils/OnLoadModifier.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Utils/PasscodeInputView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Utils/PasscodeInputView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Utils/PlatformExtensions+iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Utils/PlatformExtensions+iOS.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Utils/PlatformExtensions+macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Utils/PlatformExtensions+macOS.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Utils/PlatformExtensions+tvOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Utils/PlatformExtensions+tvOS.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Utils/PlatformExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Utils/PlatformExtensions.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Utils/QRCodeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Utils/QRCodeView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Utils/QRScanView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Utils/QRScanView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Utils/RevealingSecureField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Utils/RevealingSecureField.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Utils/SizeClassProviding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Utils/SizeClassProviding.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Utils/String+QR.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Utils/String+QR.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Utils/View+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Utils/View+Extensions.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Utils/WebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Utils/WebView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Utils/Wifi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Utils/Wifi.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Views/Diagnostics/BetaSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Views/Diagnostics/BetaSection.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Views/Diagnostics/DebugLogView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Views/Diagnostics/DebugLogView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Views/Paywall/AllFeaturesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Views/Paywall/AllFeaturesView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Views/Paywall/FeatureRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Views/Paywall/FeatureRow.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Views/Paywall/NewPaywallModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Views/Paywall/NewPaywallModifier.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Views/Paywall/NewPaywallView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Views/Paywall/NewPaywallView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Views/Paywall/PaywallCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Views/Paywall/PaywallCoordinator.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Views/Paywall/PaywallView+Fixed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Views/Paywall/PaywallView+Fixed.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Views/Settings/ChangelogView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Views/Settings/ChangelogView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Views/Settings/CreditsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Views/Settings/CreditsView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Views/Settings/DonateView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Views/Settings/DonateView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Views/Settings/LinksView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Views/Settings/LinksView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Views/Settings/PurchasedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Views/Settings/PurchasedView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Views/Settings/VersionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Views/Settings/VersionView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Views/Settings/WebDonationLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Views/Settings/WebDonationLink.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Views/Shared/ConnectionFlow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Views/Shared/ConnectionFlow.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Views/Shared/EndpointCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Views/Shared/EndpointCardView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Views/Shared/ExternalLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Views/Shared/ExternalLink.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Views/Shared/LegacyTunnelToggle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Views/Shared/LegacyTunnelToggle.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Views/Shared/ModuleSendMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Views/Shared/ModuleSendMenu.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Views/Shared/ProfileSelectorMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Views/Shared/ProfileSelectorMenu.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Views/Shared/ProfileSharingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Views/Shared/ProfileSharingView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Views/Shared/TunnelToggle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Views/Shared/TunnelToggle.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibrary/Views/Shared/VersionUpdateLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibrary/Views/Shared/VersionUpdateLink.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryMain/AppLibraryMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryMain/AppLibraryMain.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryMain/Extensions/Issue+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryMain/Extensions/Issue+Extensions.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryMain/Observables/AppPipe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryMain/Observables/AppPipe.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryMain/Views/App/AddProfileMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryMain/Views/App/AddProfileMenu.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryMain/Views/App/AppToolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryMain/Views/App/AppToolbar.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryMain/Views/App/OnboardingModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryMain/Views/App/OnboardingModifier.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryMain/Views/App/ProfileCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryMain/Views/App/ProfileCardView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryMain/Views/App/ProfileContextMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryMain/Views/App/ProfileContextMenu.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryMain/Views/App/ProfileFlow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryMain/Views/App/ProfileFlow.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryMain/Views/App/ProfileGridView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryMain/Views/App/ProfileGridView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryMain/Views/App/ProfileInfoButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryMain/Views/App/ProfileInfoButton.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryMain/Views/App/ProfileListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryMain/Views/App/ProfileListView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryMain/Views/App/ProfileRowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryMain/Views/App/ProfileRowView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryMain/Views/App/ProfilesHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryMain/Views/App/ProfilesHeaderView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryMain/Views/AppMenu/macOS/AppMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryMain/Views/AppMenu/macOS/AppMenu.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryMain/Views/Modules/DNSView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryMain/Views/Modules/DNSView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryMain/Views/Modules/HTTPProxyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryMain/Views/Modules/HTTPProxyView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryMain/Views/Modules/IPView+Route.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryMain/Views/Modules/IPView+Route.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryMain/Views/Modules/IPView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryMain/Views/Modules/IPView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryMain/Views/Modules/OnDemandView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryMain/Views/Modules/OnDemandView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryMain/Views/Modules/UI/IPModule+UI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryMain/Views/Modules/UI/IPModule+UI.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryMain/Views/Profile/AddModuleMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryMain/Views/Profile/AddModuleMenu.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryMain/Views/Profile/ProfileLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryMain/Views/Profile/ProfileLink.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryMain/Views/Profile/ProfileTips.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryMain/Views/Profile/ProfileTips.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryMain/Views/Profile/UUIDText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryMain/Views/Profile/UUIDText.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryTV/AppLibraryTV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryTV/AppLibraryTV.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryTV/Views/App/AppCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryTV/Views/App/AppCoordinator.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryTV/Views/App/AppCoordinatorRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryTV/Views/App/AppCoordinatorRoute.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryTV/Views/Profiles/ProfilesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryTV/Views/Profiles/ProfilesView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryTV/Views/Profiles/WebReceiverView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryTV/Views/Profiles/WebReceiverView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryTV/Views/Settings/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryTV/Views/Settings/SettingsView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryTV/Views/Shared/ListRowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryTV/Views/Shared/ListRowView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryTV/Views/Shared/TopSpacer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryTV/Views/Shared/TopSpacer.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryTV/Views/Shared/View+MainButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryTV/Views/Shared/View+MainButton.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryTVLegacy/AppLibraryTVLegacy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryTVLegacy/AppLibraryTVLegacy.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryTVLegacy/Views/Shared/ListRowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryTVLegacy/Views/Shared/ListRowView.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppLibraryTVLegacy/Views/Shared/TopSpacer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppLibraryTVLegacy/Views/Shared/TopSpacer.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppStrings/AppStrings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppStrings/AppStrings.swift -------------------------------------------------------------------------------- /app-apple/Sources/AppStrings/Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppStrings/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /app-apple/Sources/AppStrings/Resources/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppStrings/Resources/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /app-apple/Sources/AppStrings/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppStrings/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /app-apple/Sources/AppStrings/Resources/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppStrings/Resources/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /app-apple/Sources/AppStrings/Resources/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppStrings/Resources/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /app-apple/Sources/AppStrings/Resources/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppStrings/Resources/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /app-apple/Sources/AppStrings/Resources/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppStrings/Resources/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /app-apple/Sources/AppStrings/Resources/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppStrings/Resources/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /app-apple/Sources/AppStrings/Resources/pt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppStrings/Resources/pt.lproj/Localizable.strings -------------------------------------------------------------------------------- /app-apple/Sources/AppStrings/Resources/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppStrings/Resources/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /app-apple/Sources/AppStrings/Resources/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppStrings/Resources/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /app-apple/Sources/AppStrings/Resources/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppStrings/Resources/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /app-apple/Sources/AppStrings/SwiftGen+Strings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/AppStrings/SwiftGen+Strings.swift -------------------------------------------------------------------------------- /app-apple/Sources/CommonData/CommonData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/CommonData/CommonData.swift -------------------------------------------------------------------------------- /app-apple/Sources/CommonDataPreferences/Domain/Mapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/CommonDataPreferences/Domain/Mapper.swift -------------------------------------------------------------------------------- /app-apple/Sources/CommonDataProfiles/CommonData+Profiles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/CommonDataProfiles/CommonData+Profiles.swift -------------------------------------------------------------------------------- /app-apple/Sources/CommonDataProfiles/Domain/CDProfileV3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/CommonDataProfiles/Domain/CDProfileV3.swift -------------------------------------------------------------------------------- /app-apple/Sources/CommonDataProviders/CommonData+Providers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/CommonDataProviders/CommonData+Providers.swift -------------------------------------------------------------------------------- /app-apple/Sources/CommonDataProviders/Domain/CDProviderV3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/CommonDataProviders/Domain/CDProviderV3.swift -------------------------------------------------------------------------------- /app-apple/Sources/CommonDataProviders/Domain/CoreDataMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/CommonDataProviders/Domain/CoreDataMapper.swift -------------------------------------------------------------------------------- /app-apple/Sources/CommonDataProviders/Domain/DomainMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/CommonDataProviders/Domain/DomainMapper.swift -------------------------------------------------------------------------------- /app-apple/Sources/CommonResources/API+Shared.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/CommonResources/API+Shared.swift -------------------------------------------------------------------------------- /app-apple/Sources/CommonResources/Resources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/CommonResources/Resources.swift -------------------------------------------------------------------------------- /app-apple/Sources/CommonResources/Resources/Constants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/CommonResources/Resources/Constants.json -------------------------------------------------------------------------------- /app-apple/Sources/CommonResources/Resources/Credits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/CommonResources/Resources/Credits.json -------------------------------------------------------------------------------- /app-apple/Sources/CommonResources/Resources/Issue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/CommonResources/Resources/Issue.txt -------------------------------------------------------------------------------- /app-apple/Sources/CommonResources/Resources/web_uploader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/CommonResources/Resources/web_uploader.html -------------------------------------------------------------------------------- /app-apple/Sources/Empty/AppLibraryMainWrapper/Dummy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/Empty/AppLibraryMainWrapper/Dummy.swift -------------------------------------------------------------------------------- /app-apple/Sources/Empty/AppLibraryTVWrapper/Dummy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Sources/Empty/AppLibraryTVWrapper/Dummy.swift -------------------------------------------------------------------------------- /app-apple/Tests/AppLibraryMainTests/AppProfileImporterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Tests/AppLibraryMainTests/AppProfileImporterTests.swift -------------------------------------------------------------------------------- /app-apple/Tests/AppLibraryMainTests/IssueTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Tests/AppLibraryMainTests/IssueTests.swift -------------------------------------------------------------------------------- /app-apple/Tests/AppLibraryTests/AppContextTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Tests/AppLibraryTests/AppContextTests.swift -------------------------------------------------------------------------------- /app-apple/Tests/AppLibraryTests/OnboardingObservableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Tests/AppLibraryTests/OnboardingObservableTests.swift -------------------------------------------------------------------------------- /app-apple/Tests/AppLibraryTests/ProfileEditorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Tests/AppLibraryTests/ProfileEditorTests.swift -------------------------------------------------------------------------------- /app-apple/Tests/AppLibraryTests/WireGuardParseErrorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/Tests/AppLibraryTests/WireGuardParseErrorTests.swift -------------------------------------------------------------------------------- /app-apple/ci/build-number.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/ci/build-number.sh -------------------------------------------------------------------------------- /app-apple/ci/dmg-generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/ci/dmg-generate.sh -------------------------------------------------------------------------------- /app-apple/ci/dmg-notarize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/ci/dmg-notarize.sh -------------------------------------------------------------------------------- /app-apple/ci/dmg-save-template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/ci/dmg-save-template.sh -------------------------------------------------------------------------------- /app-apple/ci/dmg-sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/ci/dmg-sign.sh -------------------------------------------------------------------------------- /app-apple/ci/dmg/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/ci/dmg/.DS_Store -------------------------------------------------------------------------------- /app-apple/ci/dmg/.background/drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/ci/dmg/.background/drag.png -------------------------------------------------------------------------------- /app-apple/ci/dmg/.gitignore: -------------------------------------------------------------------------------- 1 | *.app 2 | -------------------------------------------------------------------------------- /app-apple/ci/dmg/Applications: -------------------------------------------------------------------------------- 1 | /Applications -------------------------------------------------------------------------------- /app-apple/ci/dmg/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/ci/dmg/README.txt -------------------------------------------------------------------------------- /app-apple/ci/export/options.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/ci/export/options.plist -------------------------------------------------------------------------------- /app-apple/ci/export/options_dmg.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/ci/export/options_dmg.plist -------------------------------------------------------------------------------- /app-apple/ci/team-id.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/ci/team-id.sh -------------------------------------------------------------------------------- /app-apple/ci/version-number.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/ci/version-number.sh -------------------------------------------------------------------------------- /app-apple/ci/xcconfig-get.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/ci/xcconfig-get.sh -------------------------------------------------------------------------------- /app-apple/ci/xcconfig-set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/ci/xcconfig-set.sh -------------------------------------------------------------------------------- /app-apple/ci/xcode-archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/ci/xcode-archive.sh -------------------------------------------------------------------------------- /app-apple/ci/xcode-export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/ci/xcode-export.sh -------------------------------------------------------------------------------- /app-apple/screenshots/compose-device.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/screenshots/compose-device.sh -------------------------------------------------------------------------------- /app-apple/screenshots/compose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/screenshots/compose.sh -------------------------------------------------------------------------------- /app-apple/screenshots/export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/screenshots/export.sh -------------------------------------------------------------------------------- /app-apple/screenshots/html/appletv/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/screenshots/html/appletv/frame.png -------------------------------------------------------------------------------- /app-apple/screenshots/html/appletv/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/screenshots/html/appletv/style.css -------------------------------------------------------------------------------- /app-apple/screenshots/html/ipad/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/screenshots/html/ipad/frame.png -------------------------------------------------------------------------------- /app-apple/screenshots/html/ipad/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/screenshots/html/ipad/style.css -------------------------------------------------------------------------------- /app-apple/screenshots/html/iphone/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/screenshots/html/iphone/frame.png -------------------------------------------------------------------------------- /app-apple/screenshots/html/iphone/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/screenshots/html/iphone/style.css -------------------------------------------------------------------------------- /app-apple/screenshots/html/mac/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/screenshots/html/mac/style.css -------------------------------------------------------------------------------- /app-apple/screenshots/html/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/screenshots/html/main.html -------------------------------------------------------------------------------- /app-apple/screenshots/html/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/screenshots/html/script.js -------------------------------------------------------------------------------- /app-apple/screenshots/html/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/screenshots/html/style.css -------------------------------------------------------------------------------- /app-apple/screenshots/html/tv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/screenshots/html/tv.html -------------------------------------------------------------------------------- /app-apple/scripts/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/scripts/env.sh -------------------------------------------------------------------------------- /app-apple/scripts/export-certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/scripts/export-certs.sh -------------------------------------------------------------------------------- /app-apple/scripts/gen-notarized-dmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/scripts/gen-notarized-dmg.sh -------------------------------------------------------------------------------- /app-apple/scripts/gen-screenshots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-apple/scripts/gen-screenshots.sh -------------------------------------------------------------------------------- /app-cross/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-cross/.gitignore -------------------------------------------------------------------------------- /app-cross/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-cross/CMakeLists.txt -------------------------------------------------------------------------------- /app-cross/distribute.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-cross/distribute.cmake -------------------------------------------------------------------------------- /app-cross/include/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-cross/include/app.h -------------------------------------------------------------------------------- /app-cross/passepartout.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-cross/passepartout.cmake -------------------------------------------------------------------------------- /app-cross/src/app.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-cross/src/app.cc -------------------------------------------------------------------------------- /app-cross/src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-cross/src/main.cc -------------------------------------------------------------------------------- /app-cross/wx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-cross/wx.cmake -------------------------------------------------------------------------------- /app-shared/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .build 3 | .swiftpm 4 | -------------------------------------------------------------------------------- /app-shared/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/CMakeLists.txt -------------------------------------------------------------------------------- /app-shared/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Package.resolved -------------------------------------------------------------------------------- /app-shared/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Package.swift -------------------------------------------------------------------------------- /app-shared/Sources/ABI/Example.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/ABI/Example.swift -------------------------------------------------------------------------------- /app-shared/Sources/ABIExample_C/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/ABIExample_C/main.c -------------------------------------------------------------------------------- /app-shared/Sources/ABI_C/include/passepartout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/ABI_C/include/passepartout.h -------------------------------------------------------------------------------- /app-shared/Sources/ABI_C/passepartout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/ABI_C/passepartout.c -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibrary/CommonLibrary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibrary/CommonLibrary.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryApple/AppConfiguration+Apple.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryApple/AppConfiguration+Apple.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryApple/CoreDataPersistentStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryApple/CoreDataPersistentStore.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryApple/CoreDataRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryApple/CoreDataRepository.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryApple/IAPManager+Suggestions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryApple/IAPManager+Suggestions.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryApple/NEProfileRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryApple/NEProfileRepository.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryApple/StoreKitHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryApple/StoreKitHelper.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryApple/StoreKitReceiptReader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryApple/StoreKitReceiptReader.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Business/AppEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Business/AppEncoder.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Business/ConfigManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Business/ConfigManager.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Business/ExtendedTunnel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Business/ExtendedTunnel.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Business/IAPManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Business/IAPManager.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Business/KeyValueManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Business/KeyValueManager.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Business/ProfileManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Business/ProfileManager.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Business/VersionChecker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Business/VersionChecker.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Business/WebUploader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Business/WebUploader.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Domain/ABI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Domain/ABI.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Domain/AppConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Domain/AppConfiguration.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Domain/AppError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Domain/AppError.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Domain/AppFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Domain/AppFeature.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Domain/AppIdentifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Domain/AppIdentifier.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Domain/AppLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Domain/AppLog.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Domain/AppPreference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Domain/AppPreference.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Domain/AppProduct.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Domain/AppProduct.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Domain/AppProfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Domain/AppProfile.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Domain/AppProfileHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Domain/AppProfileHeader.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Domain/AppProfileStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Domain/AppProfileStatus.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Domain/AppUserLevel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Domain/AppUserLevel.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Domain/ChangelogEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Domain/ChangelogEntry.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Domain/ConfigFlag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Domain/ConfigFlag.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Domain/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Domain/Constants.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Domain/Credits.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Domain/Credits.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Domain/Issue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Domain/Issue.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Domain/ProfilePreview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Domain/ProfilePreview.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Domain/ProfileTransfer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Domain/ProfileTransfer.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Domain/SemanticVersion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Domain/SemanticVersion.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Domain/SystemInformation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Domain/SystemInformation.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Domain/UIPreference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Domain/UIPreference.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Domain/Web.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Domain/Web.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/IAP/AppFeatureProviding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/IAP/AppFeatureProviding.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/IAP/AppFeatureRequiring.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/IAP/AppFeatureRequiring.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/IAP/IAPManager+Verify.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/IAP/IAPManager+Verify.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Internal/AppRelease.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Internal/AppRelease.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Internal/ConfigBundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Internal/ConfigBundle.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Mappers/Partout+Profile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Mappers/Partout+Profile.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Mappers/Partout+Tunnel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Mappers/Partout+Tunnel.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Strategy/AppLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Strategy/AppLogger.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Strategy/Processors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Strategy/Processors.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Strategy/ProfileImporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Strategy/ProfileImporter.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Strategy/WebReceiver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Strategy/WebReceiver.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Utils/BetaChecker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Utils/BetaChecker.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Utils/BuildProducts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Utils/BuildProducts.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Utils/Bundle+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Utils/Bundle+Extensions.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Utils/Data+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Utils/Data+Extensions.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Utils/HTMLTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Utils/HTMLTemplate.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Utils/InApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Utils/InApp.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Utils/KeyValueStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Utils/KeyValueStore.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Utils/MainActor+Sync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Utils/MainActor+Sync.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Utils/Measure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Utils/Measure.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Utils/MultipartForm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Utils/MultipartForm.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Utils/OriginalPurchase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Utils/OriginalPurchase.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Utils/Repository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Utils/Repository.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Utils/Routable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Utils/Routable.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Utils/String+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Utils/String+Extensions.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Utils/TaskTimeout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Utils/TaskTimeout.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Utils/TestFlightChecker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Utils/TestFlightChecker.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Utils/URL+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Utils/URL+Extensions.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Utils/UserDefaultsStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Utils/UserDefaultsStore.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonLibraryCore/Web/NIOWebReceiver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonLibraryCore/Web/NIOWebReceiver.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProviders/API/DefaultAPIMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProviders/API/DefaultAPIMapper.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProviders/API/ProviderID+API.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProviders/API/ProviderID+API.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProviders/CommonProviders.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProviders/CommonProviders.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProviders/OpenVPN/OpenVPN+API.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProviders/OpenVPN/OpenVPN+API.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProviders/WireGuard/WireGuard+API.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProviders/WireGuard/WireGuard+API.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersAPI/API.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersAPI/API.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersAPI/APIManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersAPI/APIManager.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersAPI/APIMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersAPI/APIMapper.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersAPI/APIRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersAPI/APIRepository.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersAPI/InMemoryAPIRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersAPI/InMemoryAPIRepository.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersAPI/JSON/v7/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersAPI/JSON/v7/index.json -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersAPI/JSON/v7/providers/hideme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersAPI/JSON/v7/providers/hideme.js -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersAPI/JSON/v7/providers/ivpn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersAPI/JSON/v7/providers/ivpn.js -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersAPI/JSON/v7/providers/mullvad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersAPI/JSON/v7/providers/mullvad.js -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersAPI/JSON/v7/providers/nordvpn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersAPI/JSON/v7/providers/nordvpn.js -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersAPI/JSON/v7/providers/oeck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersAPI/JSON/v7/providers/oeck.js -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersAPI/JSON/v7/providers/pia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersAPI/JSON/v7/providers/pia.js -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersAPI/JSON/v7/providers/torguard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersAPI/JSON/v7/providers/torguard.js -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersAPI/JSON/v7/providers/vyprvpn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersAPI/JSON/v7/providers/vyprvpn.js -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersAPI/Provider+Metadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersAPI/Provider+Metadata.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersAPI/Provider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersAPI/Provider.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersAPI/ProviderInfrastructure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersAPI/ProviderInfrastructure.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersAPI/ProviderManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersAPI/ProviderManager.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersAPI/ProviderRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersAPI/ProviderRepository.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersAPI/REST/API+Bundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersAPI/REST/API+Bundle.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersAPI/REST/API+REST.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersAPI/REST/API+REST.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersAPI/REST/RESTIndex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersAPI/REST/RESTIndex.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersAPI/REST/RESTResource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersAPI/REST/RESTResource.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersCore/CommonProvidersCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersCore/CommonProvidersCore.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersCore/Partout+Providers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersCore/Partout+Providers.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersCore/ProfileType+Providers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersCore/ProfileType+Providers.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersCore/ProviderAuthentication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersCore/ProviderAuthentication.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersCore/ProviderCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersCore/ProviderCache.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersCore/ProviderEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersCore/ProviderEntity.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersCore/ProviderHeuristic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersCore/ProviderHeuristic.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersCore/ProviderID.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersCore/ProviderID.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersCore/ProviderModule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersCore/ProviderModule.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersCore/ProviderOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersCore/ProviderOptions.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersCore/ProviderPreset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersCore/ProviderPreset.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersCore/ProviderRegion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersCore/ProviderRegion.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersCore/ProviderScriptingAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersCore/ProviderScriptingAPI.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersCore/ProviderServer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersCore/ProviderServer.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersCore/Timestamp+Date.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersCore/Timestamp+Date.swift -------------------------------------------------------------------------------- /app-shared/Sources/CommonProvidersCore/Timestamp+RFC1123.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Sources/CommonProvidersCore/Timestamp+RFC1123.swift -------------------------------------------------------------------------------- /app-shared/Tests/CommonLibraryTests/Business/IAPManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Tests/CommonLibraryTests/Business/IAPManagerTests.swift -------------------------------------------------------------------------------- /app-shared/Tests/CommonLibraryTests/Domain/AppPreferenceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Tests/CommonLibraryTests/Domain/AppPreferenceTests.swift -------------------------------------------------------------------------------- /app-shared/Tests/CommonLibraryTests/Domain/ChangelogTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Tests/CommonLibraryTests/Domain/ChangelogTests.swift -------------------------------------------------------------------------------- /app-shared/Tests/CommonLibraryTests/Domain/ConfigBundleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Tests/CommonLibraryTests/Domain/ConfigBundleTests.swift -------------------------------------------------------------------------------- /app-shared/Tests/CommonLibraryTests/Domain/ModuleTypeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Tests/CommonLibraryTests/Domain/ModuleTypeTests.swift -------------------------------------------------------------------------------- /app-shared/Tests/CommonLibraryTests/Mock/MockBetaChecker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Tests/CommonLibraryTests/Mock/MockBetaChecker.swift -------------------------------------------------------------------------------- /app-shared/Tests/CommonLibraryTests/Mock/MockProfileProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Tests/CommonLibraryTests/Mock/MockProfileProcessor.swift -------------------------------------------------------------------------------- /app-shared/Tests/CommonLibraryTests/Mock/MockTunnelProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Tests/CommonLibraryTests/Mock/MockTunnelProcessor.swift -------------------------------------------------------------------------------- /app-shared/Tests/CommonLibraryTests/Shared.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Tests/CommonLibraryTests/Shared.swift -------------------------------------------------------------------------------- /app-shared/Tests/CommonLibraryTests/Web/HTMLTemplateTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Tests/CommonLibraryTests/Web/HTMLTemplateTests.swift -------------------------------------------------------------------------------- /app-shared/Tests/CommonLibraryTests/Web/MultipartFormTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Tests/CommonLibraryTests/Web/MultipartFormTests.swift -------------------------------------------------------------------------------- /app-shared/Tests/CommonProvidersAPITests/APIManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Tests/CommonProvidersAPITests/APIManagerTests.swift -------------------------------------------------------------------------------- /app-shared/Tests/CommonProvidersAPITests/Mock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Tests/CommonProvidersAPITests/Mock.swift -------------------------------------------------------------------------------- /app-shared/Tests/CommonProvidersAPITests/ProviderManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Tests/CommonProvidersAPITests/ProviderManagerTests.swift -------------------------------------------------------------------------------- /app-shared/Tests/CommonProvidersCoreTests/Resources/mapped.txt: -------------------------------------------------------------------------------- 1 | mapped content 2 | -------------------------------------------------------------------------------- /app-shared/Tests/CommonProvidersTests/API/APIMapperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Tests/CommonProvidersTests/API/APIMapperTests.swift -------------------------------------------------------------------------------- /app-shared/Tests/CommonProvidersTests/API/APITestSuite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Tests/CommonProvidersTests/API/APITestSuite.swift -------------------------------------------------------------------------------- /app-shared/Tests/CommonProvidersTests/API/Helpers/AuthInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Tests/CommonProvidersTests/API/Helpers/AuthInput.swift -------------------------------------------------------------------------------- /app-shared/Tests/CommonProvidersTests/API/Helpers/FetchInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Tests/CommonProvidersTests/API/Helpers/FetchInput.swift -------------------------------------------------------------------------------- /app-shared/Tests/CommonProvidersTests/API/HideMeProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Tests/CommonProvidersTests/API/HideMeProviderTests.swift -------------------------------------------------------------------------------- /app-shared/Tests/CommonProvidersTests/ProviderModulesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Tests/CommonProvidersTests/ProviderModulesTests.swift -------------------------------------------------------------------------------- /app-shared/Tests/CommonProvidersTests/RegistryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Tests/CommonProvidersTests/RegistryTests.swift -------------------------------------------------------------------------------- /app-shared/Tests/CommonProvidersTests/Resources/hideme/fetch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Tests/CommonProvidersTests/Resources/hideme/fetch.json -------------------------------------------------------------------------------- /app-shared/Tests/CommonProvidersTests/Resources/mullvad/fetch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Tests/CommonProvidersTests/Resources/mullvad/fetch.json -------------------------------------------------------------------------------- /app-shared/Tests/CommonProvidersTests/Resources/preset.openvpn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/app-shared/Tests/CommonProvidersTests/Resources/preset.openvpn.json -------------------------------------------------------------------------------- /app-shared/Tests/CommonProvidersTests/Resources/preset.wireguard.json: -------------------------------------------------------------------------------- 1 | { 2 | "ports": [12345] 3 | } 4 | -------------------------------------------------------------------------------- /ci/gpg-import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/ci/gpg-import.sh -------------------------------------------------------------------------------- /ci/gpg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/ci/gpg.txt -------------------------------------------------------------------------------- /ci/run-api-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/ci/run-api-tests.sh -------------------------------------------------------------------------------- /ci/run-apple-tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd app-apple && swift test 3 | -------------------------------------------------------------------------------- /ci/run-partout-tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd submodules/partout && swift test 3 | -------------------------------------------------------------------------------- /ci/run-shared-tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd app-shared && swift test 3 | -------------------------------------------------------------------------------- /fastlane/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/.env -------------------------------------------------------------------------------- /fastlane/.env.iOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/.env.iOS -------------------------------------------------------------------------------- /fastlane/.env.macOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/.env.macOS -------------------------------------------------------------------------------- /fastlane/.env.tvOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/.env.tvOS -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- 1 | app_identifier "com.algoritmico.ios.Passepartout" 2 | -------------------------------------------------------------------------------- /fastlane/Deliverfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/Deliverfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/Pluginfile -------------------------------------------------------------------------------- /fastlane/metadata/iOS/app_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/iOS/app_icon.jpg -------------------------------------------------------------------------------- /fastlane/metadata/iOS/copyright.txt: -------------------------------------------------------------------------------- 1 | 2025 Davide De Rosa 2 | -------------------------------------------------------------------------------- /fastlane/metadata/iOS/de-DE/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/iOS/de-DE/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/iOS/de-DE/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/iOS/de-DE/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/iOS/de-DE/name.txt: -------------------------------------------------------------------------------- 1 | Passepartout, VPN Client -------------------------------------------------------------------------------- /fastlane/metadata/iOS/de-DE/subtitle.txt: -------------------------------------------------------------------------------- 1 | Für WireGuard und OpenVPN -------------------------------------------------------------------------------- /fastlane/metadata/iOS/default/apple_tv_privacy_policy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/iOS/default/apple_tv_privacy_policy.txt -------------------------------------------------------------------------------- /fastlane/metadata/iOS/default/marketing_url.txt: -------------------------------------------------------------------------------- 1 | https://passepartoutvpn.app 2 | -------------------------------------------------------------------------------- /fastlane/metadata/iOS/default/privacy_url.txt: -------------------------------------------------------------------------------- 1 | https://passepartoutvpn.app/privacy/ 2 | -------------------------------------------------------------------------------- /fastlane/metadata/iOS/default/promotional_text.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/iOS/default/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/iOS/default/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/iOS/default/support_url.txt: -------------------------------------------------------------------------------- 1 | https://www.reddit.com/r/passepartout 2 | -------------------------------------------------------------------------------- /fastlane/metadata/iOS/el/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/iOS/el/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/iOS/el/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/iOS/el/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/iOS/el/name.txt: -------------------------------------------------------------------------------- 1 | Passepartout, VPN Client -------------------------------------------------------------------------------- /fastlane/metadata/iOS/el/subtitle.txt: -------------------------------------------------------------------------------- 1 | Για WireGuard και OpenVPN -------------------------------------------------------------------------------- /fastlane/metadata/iOS/en-US/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/iOS/en-US/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/iOS/en-US/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/iOS/en-US/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/iOS/en-US/name.txt: -------------------------------------------------------------------------------- 1 | Passepartout, VPN Client -------------------------------------------------------------------------------- /fastlane/metadata/iOS/en-US/subtitle.txt: -------------------------------------------------------------------------------- 1 | For WireGuard and OpenVPN -------------------------------------------------------------------------------- /fastlane/metadata/iOS/es-MX/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/iOS/es-MX/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/iOS/es-MX/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/iOS/es-MX/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/iOS/es-MX/name.txt: -------------------------------------------------------------------------------- 1 | Passepartout, Client VPN -------------------------------------------------------------------------------- /fastlane/metadata/iOS/es-MX/subtitle.txt: -------------------------------------------------------------------------------- 1 | Para WireGuard y OpenVPN -------------------------------------------------------------------------------- /fastlane/metadata/iOS/fr-FR/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/iOS/fr-FR/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/iOS/fr-FR/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/iOS/fr-FR/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/iOS/fr-FR/name.txt: -------------------------------------------------------------------------------- 1 | Passepartout, Client VPN -------------------------------------------------------------------------------- /fastlane/metadata/iOS/fr-FR/subtitle.txt: -------------------------------------------------------------------------------- 1 | Pour WireGuard et OpenVPN -------------------------------------------------------------------------------- /fastlane/metadata/iOS/it/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/iOS/it/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/iOS/it/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/iOS/it/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/iOS/it/name.txt: -------------------------------------------------------------------------------- 1 | Passepartout, Client VPN -------------------------------------------------------------------------------- /fastlane/metadata/iOS/it/subtitle.txt: -------------------------------------------------------------------------------- 1 | Per WireGuard ed OpenVPN -------------------------------------------------------------------------------- /fastlane/metadata/iOS/nl-NL/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/iOS/nl-NL/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/iOS/nl-NL/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/iOS/nl-NL/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/iOS/nl-NL/name.txt: -------------------------------------------------------------------------------- 1 | Passepartout, VPN Client -------------------------------------------------------------------------------- /fastlane/metadata/iOS/nl-NL/subtitle.txt: -------------------------------------------------------------------------------- 1 | Voor WireGuard en OpenVPN -------------------------------------------------------------------------------- /fastlane/metadata/iOS/pl/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/iOS/pl/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/iOS/pl/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/iOS/pl/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/iOS/pl/name.txt: -------------------------------------------------------------------------------- 1 | Passepartout, Klient VPN -------------------------------------------------------------------------------- /fastlane/metadata/iOS/pl/subtitle.txt: -------------------------------------------------------------------------------- 1 | Do WireGuard oraz OpenVPN -------------------------------------------------------------------------------- /fastlane/metadata/iOS/primary_category.txt: -------------------------------------------------------------------------------- 1 | UTILITIES 2 | -------------------------------------------------------------------------------- /fastlane/metadata/iOS/primary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/iOS/primary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/iOS/pt-BR/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/iOS/pt-BR/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/iOS/pt-BR/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/iOS/pt-BR/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/iOS/pt-BR/name.txt: -------------------------------------------------------------------------------- 1 | Passepartout, Client VPN -------------------------------------------------------------------------------- /fastlane/metadata/iOS/pt-BR/subtitle.txt: -------------------------------------------------------------------------------- 1 | Para WireGuard e OpenVPN -------------------------------------------------------------------------------- /fastlane/metadata/iOS/ru/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/iOS/ru/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/iOS/ru/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/iOS/ru/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/iOS/ru/name.txt: -------------------------------------------------------------------------------- 1 | Passepartout, VPN клиент -------------------------------------------------------------------------------- /fastlane/metadata/iOS/ru/subtitle.txt: -------------------------------------------------------------------------------- 1 | Для WireGuard и OpenVPN -------------------------------------------------------------------------------- /fastlane/metadata/iOS/secondary_category.txt: -------------------------------------------------------------------------------- 1 | PRODUCTIVITY 2 | -------------------------------------------------------------------------------- /fastlane/metadata/iOS/secondary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/iOS/secondary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/iOS/sv/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/iOS/sv/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/iOS/sv/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/iOS/sv/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/iOS/sv/name.txt: -------------------------------------------------------------------------------- 1 | Passepartout, VPN Klient -------------------------------------------------------------------------------- /fastlane/metadata/iOS/sv/subtitle.txt: -------------------------------------------------------------------------------- 1 | För WireGuard och OpenVPN -------------------------------------------------------------------------------- /fastlane/metadata/macOS/app_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/macOS/app_icon.jpg -------------------------------------------------------------------------------- /fastlane/metadata/macOS/copyright.txt: -------------------------------------------------------------------------------- 1 | ../iOS/copyright.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/de-DE/description.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/de-DE/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/de-DE/keywords.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/de-DE/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/de-DE/name.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/de-DE/name.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/de-DE/subtitle.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/de-DE/subtitle.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/default/apple_tv_privacy_policy.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/default/apple_tv_privacy_policy.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/default/marketing_url.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/default/marketing_url.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/default/privacy_url.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/default/privacy_url.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/default/promotional_text.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/default/promotional_text.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/default/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/macOS/default/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/default/support_url.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/default/support_url.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/el/description.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/el/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/el/keywords.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/el/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/el/name.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/el/name.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/el/subtitle.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/el/subtitle.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/en-US/description.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/en-US/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/en-US/keywords.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/en-US/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/en-US/name.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/en-US/name.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/en-US/subtitle.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/en-US/subtitle.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/es-MX/description.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/es-MX/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/es-MX/keywords.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/es-MX/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/es-MX/name.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/es-MX/name.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/es-MX/subtitle.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/es-MX/subtitle.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/fr-FR/description.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/fr-FR/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/fr-FR/keywords.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/fr-FR/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/fr-FR/name.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/fr-FR/name.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/fr-FR/subtitle.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/fr-FR/subtitle.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/it/description.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/it/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/it/keywords.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/it/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/it/name.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/it/name.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/it/subtitle.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/it/subtitle.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/nl-NL/description.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/nl-NL/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/nl-NL/keywords.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/nl-NL/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/nl-NL/name.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/nl-NL/name.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/nl-NL/subtitle.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/nl-NL/subtitle.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/pl/description.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/pl/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/pl/keywords.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/pl/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/pl/name.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/pl/name.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/pl/subtitle.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/pl/subtitle.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/primary_category.txt: -------------------------------------------------------------------------------- 1 | ../iOS/primary_category.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/primary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | ../iOS/primary_first_sub_category.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/primary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | ../iOS/primary_second_sub_category.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/pt-BR/description.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/pt-BR/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/pt-BR/keywords.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/pt-BR/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/pt-BR/name.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/pt-BR/name.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/pt-BR/subtitle.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/pt-BR/subtitle.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/review_information: -------------------------------------------------------------------------------- 1 | ../iOS/review_information -------------------------------------------------------------------------------- /fastlane/metadata/macOS/ru/description.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/ru/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/ru/keywords.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/ru/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/ru/name.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/ru/name.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/ru/subtitle.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/ru/subtitle.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/secondary_category.txt: -------------------------------------------------------------------------------- 1 | ../iOS/secondary_category.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/secondary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | ../iOS/secondary_first_sub_category.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/secondary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | ../iOS/secondary_second_sub_category.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/sv/description.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/sv/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/sv/keywords.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/sv/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/sv/name.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/sv/name.txt -------------------------------------------------------------------------------- /fastlane/metadata/macOS/sv/subtitle.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/sv/subtitle.txt -------------------------------------------------------------------------------- /fastlane/metadata/symlink-base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/symlink-base.sh -------------------------------------------------------------------------------- /fastlane/metadata/symlink-l10n.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/symlink-l10n.sh -------------------------------------------------------------------------------- /fastlane/metadata/symlink-release-notes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/symlink-release-notes.sh -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/copyright.txt: -------------------------------------------------------------------------------- 1 | ../iOS/copyright.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/de-DE/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/tvOS/de-DE/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/de-DE/keywords.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/de-DE/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/de-DE/name.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/de-DE/name.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/de-DE/subtitle.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/de-DE/subtitle.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/default/apple_tv_privacy_policy.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/default/apple_tv_privacy_policy.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/default/marketing_url.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/default/marketing_url.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/default/privacy_url.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/default/privacy_url.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/default/promotional_text.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/default/promotional_text.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/default/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/tvOS/default/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/default/support_url.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/default/support_url.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/el/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/tvOS/el/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/el/keywords.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/el/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/el/name.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/el/name.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/el/subtitle.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/el/subtitle.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/en-US/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/tvOS/en-US/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/en-US/keywords.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/en-US/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/en-US/name.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/en-US/name.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/en-US/subtitle.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/en-US/subtitle.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/es-MX/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/tvOS/es-MX/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/es-MX/keywords.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/es-MX/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/es-MX/name.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/es-MX/name.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/es-MX/subtitle.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/es-MX/subtitle.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/fr-FR/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/tvOS/fr-FR/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/fr-FR/keywords.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/fr-FR/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/fr-FR/name.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/fr-FR/name.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/fr-FR/subtitle.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/fr-FR/subtitle.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/it/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/tvOS/it/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/it/keywords.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/it/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/it/name.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/it/name.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/it/subtitle.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/it/subtitle.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/nl-NL/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/tvOS/nl-NL/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/nl-NL/keywords.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/nl-NL/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/nl-NL/name.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/nl-NL/name.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/nl-NL/subtitle.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/nl-NL/subtitle.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/pl/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/tvOS/pl/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/pl/keywords.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/pl/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/pl/name.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/pl/name.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/pl/subtitle.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/pl/subtitle.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/primary_category.txt: -------------------------------------------------------------------------------- 1 | ../iOS/primary_category.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/primary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | ../iOS/primary_first_sub_category.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/primary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | ../iOS/primary_second_sub_category.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/pt-BR/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/tvOS/pt-BR/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/pt-BR/keywords.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/pt-BR/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/pt-BR/name.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/pt-BR/name.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/pt-BR/subtitle.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/pt-BR/subtitle.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/review_information: -------------------------------------------------------------------------------- 1 | ../iOS/review_information -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/ru/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/tvOS/ru/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/ru/keywords.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/ru/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/ru/name.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/ru/name.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/ru/subtitle.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/ru/subtitle.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/secondary_category.txt: -------------------------------------------------------------------------------- 1 | ../iOS/secondary_category.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/secondary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | ../iOS/secondary_first_sub_category.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/secondary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | ../iOS/secondary_second_sub_category.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/sv/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/metadata/tvOS/sv/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/sv/keywords.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/sv/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/sv/name.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/sv/name.txt -------------------------------------------------------------------------------- /fastlane/metadata/tvOS/sv/subtitle.txt: -------------------------------------------------------------------------------- 1 | ../../iOS/sv/subtitle.txt -------------------------------------------------------------------------------- /fastlane/screenshots/iOS/en-US/ipadPro129-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/screenshots/iOS/en-US/ipadPro129-01.png -------------------------------------------------------------------------------- /fastlane/screenshots/iOS/en-US/ipadPro129-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/screenshots/iOS/en-US/ipadPro129-02.png -------------------------------------------------------------------------------- /fastlane/screenshots/iOS/en-US/ipadPro129-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/screenshots/iOS/en-US/ipadPro129-03.png -------------------------------------------------------------------------------- /fastlane/screenshots/iOS/en-US/ipadPro129-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/screenshots/iOS/en-US/ipadPro129-04.png -------------------------------------------------------------------------------- /fastlane/screenshots/iOS/en-US/ipadPro129-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/screenshots/iOS/en-US/ipadPro129-05.png -------------------------------------------------------------------------------- /fastlane/screenshots/iOS/en-US/iphone-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/screenshots/iOS/en-US/iphone-01.png -------------------------------------------------------------------------------- /fastlane/screenshots/iOS/en-US/iphone-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/screenshots/iOS/en-US/iphone-02.png -------------------------------------------------------------------------------- /fastlane/screenshots/iOS/en-US/iphone-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/screenshots/iOS/en-US/iphone-03.png -------------------------------------------------------------------------------- /fastlane/screenshots/iOS/en-US/iphone-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/screenshots/iOS/en-US/iphone-04.png -------------------------------------------------------------------------------- /fastlane/screenshots/iOS/en-US/iphone-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/screenshots/iOS/en-US/iphone-05.png -------------------------------------------------------------------------------- /fastlane/screenshots/macOS/en-US/mac-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/screenshots/macOS/en-US/mac-01.png -------------------------------------------------------------------------------- /fastlane/screenshots/macOS/en-US/mac-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/screenshots/macOS/en-US/mac-02.png -------------------------------------------------------------------------------- /fastlane/screenshots/macOS/en-US/mac-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/screenshots/macOS/en-US/mac-03.png -------------------------------------------------------------------------------- /fastlane/screenshots/macOS/en-US/mac-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/screenshots/macOS/en-US/mac-04.png -------------------------------------------------------------------------------- /fastlane/screenshots/macOS/en-US/mac-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/screenshots/macOS/en-US/mac-05.png -------------------------------------------------------------------------------- /fastlane/screenshots/tvOS/en-US/appletv-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/screenshots/tvOS/en-US/appletv-01.png -------------------------------------------------------------------------------- /fastlane/screenshots/tvOS/en-US/appletv-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/screenshots/tvOS/en-US/appletv-02.png -------------------------------------------------------------------------------- /fastlane/screenshots/tvOS/en-US/appletv-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/fastlane/screenshots/tvOS/en-US/appletv-03.png -------------------------------------------------------------------------------- /scripts/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/scripts/build.ps1 -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/bump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/scripts/bump.sh -------------------------------------------------------------------------------- /scripts/clean-translations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/scripts/clean-translations.sh -------------------------------------------------------------------------------- /scripts/copy-release-notes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/scripts/copy-release-notes.sh -------------------------------------------------------------------------------- /scripts/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/scripts/env.sh -------------------------------------------------------------------------------- /scripts/import-translations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/scripts/import-translations.sh -------------------------------------------------------------------------------- /scripts/import-translations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/scripts/import-translations.txt -------------------------------------------------------------------------------- /scripts/list-changes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/scripts/list-changes.sh -------------------------------------------------------------------------------- /scripts/pull-android-libraries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/scripts/pull-android-libraries.sh -------------------------------------------------------------------------------- /scripts/push-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/scripts/push-release.sh -------------------------------------------------------------------------------- /scripts/upload-metadata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/scripts/upload-metadata.sh -------------------------------------------------------------------------------- /scripts/upload-screenshots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/scripts/upload-screenshots.sh -------------------------------------------------------------------------------- /swiftgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partout-io/passepartout/HEAD/swiftgen.yml --------------------------------------------------------------------------------