├── .gitattributes ├── .github ├── CONTRIBUTING.md └── FUNDING.yml ├── .gitignore ├── CHANGELOG.md ├── DONATING.md ├── LICENSE.txt ├── README.md ├── Rakefile ├── SyncTrayzor.png ├── chocolatey ├── synctrayzor.nuspec └── tools │ ├── VERIFICATION.txt │ └── chocolateyinstall.ps1 ├── installer ├── certnotes.txt ├── common.iss ├── dotNet472Setup.exe ├── icon.bmp ├── x64 │ ├── installer-x64.iss │ ├── ucrt │ │ ├── api-ms-win-core-console-l1-1-0.dll │ │ ├── api-ms-win-core-console-l1-2-0.dll │ │ ├── api-ms-win-core-datetime-l1-1-0.dll │ │ ├── api-ms-win-core-debug-l1-1-0.dll │ │ ├── api-ms-win-core-errorhandling-l1-1-0.dll │ │ ├── api-ms-win-core-file-l1-1-0.dll │ │ ├── api-ms-win-core-file-l1-2-0.dll │ │ ├── api-ms-win-core-file-l2-1-0.dll │ │ ├── api-ms-win-core-handle-l1-1-0.dll │ │ ├── api-ms-win-core-heap-l1-1-0.dll │ │ ├── api-ms-win-core-interlocked-l1-1-0.dll │ │ ├── api-ms-win-core-libraryloader-l1-1-0.dll │ │ ├── api-ms-win-core-localization-l1-2-0.dll │ │ ├── api-ms-win-core-memory-l1-1-0.dll │ │ ├── api-ms-win-core-namedpipe-l1-1-0.dll │ │ ├── api-ms-win-core-processenvironment-l1-1-0.dll │ │ ├── api-ms-win-core-processthreads-l1-1-0.dll │ │ ├── api-ms-win-core-processthreads-l1-1-1.dll │ │ ├── api-ms-win-core-profile-l1-1-0.dll │ │ ├── api-ms-win-core-rtlsupport-l1-1-0.dll │ │ ├── api-ms-win-core-string-l1-1-0.dll │ │ ├── api-ms-win-core-synch-l1-1-0.dll │ │ ├── api-ms-win-core-synch-l1-2-0.dll │ │ ├── api-ms-win-core-sysinfo-l1-1-0.dll │ │ ├── api-ms-win-core-timezone-l1-1-0.dll │ │ ├── api-ms-win-core-util-l1-1-0.dll │ │ ├── api-ms-win-crt-conio-l1-1-0.dll │ │ ├── api-ms-win-crt-convert-l1-1-0.dll │ │ ├── api-ms-win-crt-environment-l1-1-0.dll │ │ ├── api-ms-win-crt-filesystem-l1-1-0.dll │ │ ├── api-ms-win-crt-heap-l1-1-0.dll │ │ ├── api-ms-win-crt-locale-l1-1-0.dll │ │ ├── api-ms-win-crt-math-l1-1-0.dll │ │ ├── api-ms-win-crt-multibyte-l1-1-0.dll │ │ ├── api-ms-win-crt-private-l1-1-0.dll │ │ ├── api-ms-win-crt-process-l1-1-0.dll │ │ ├── api-ms-win-crt-runtime-l1-1-0.dll │ │ ├── api-ms-win-crt-stdio-l1-1-0.dll │ │ ├── api-ms-win-crt-string-l1-1-0.dll │ │ ├── api-ms-win-crt-time-l1-1-0.dll │ │ ├── api-ms-win-crt-utility-l1-1-0.dll │ │ └── ucrtbase.dll │ └── vc++ │ │ ├── concrt140.dll │ │ ├── msvcp140.dll │ │ ├── vccorlib140.dll │ │ └── vcruntime140.dll └── x86 │ ├── installer-x86.iss │ ├── ucrt │ ├── API-MS-Win-core-xstate-l2-1-0.dll │ ├── api-ms-win-core-console-l1-1-0.dll │ ├── api-ms-win-core-console-l1-2-0.dll │ ├── api-ms-win-core-datetime-l1-1-0.dll │ ├── api-ms-win-core-debug-l1-1-0.dll │ ├── api-ms-win-core-errorhandling-l1-1-0.dll │ ├── api-ms-win-core-file-l1-1-0.dll │ ├── api-ms-win-core-file-l1-2-0.dll │ ├── api-ms-win-core-file-l2-1-0.dll │ ├── api-ms-win-core-handle-l1-1-0.dll │ ├── api-ms-win-core-heap-l1-1-0.dll │ ├── api-ms-win-core-interlocked-l1-1-0.dll │ ├── api-ms-win-core-libraryloader-l1-1-0.dll │ ├── api-ms-win-core-localization-l1-2-0.dll │ ├── api-ms-win-core-memory-l1-1-0.dll │ ├── api-ms-win-core-namedpipe-l1-1-0.dll │ ├── api-ms-win-core-processenvironment-l1-1-0.dll │ ├── api-ms-win-core-processthreads-l1-1-0.dll │ ├── api-ms-win-core-processthreads-l1-1-1.dll │ ├── api-ms-win-core-profile-l1-1-0.dll │ ├── api-ms-win-core-rtlsupport-l1-1-0.dll │ ├── api-ms-win-core-string-l1-1-0.dll │ ├── api-ms-win-core-synch-l1-1-0.dll │ ├── api-ms-win-core-synch-l1-2-0.dll │ ├── api-ms-win-core-sysinfo-l1-1-0.dll │ ├── api-ms-win-core-timezone-l1-1-0.dll │ ├── api-ms-win-core-util-l1-1-0.dll │ ├── api-ms-win-crt-conio-l1-1-0.dll │ ├── api-ms-win-crt-convert-l1-1-0.dll │ ├── api-ms-win-crt-environment-l1-1-0.dll │ ├── api-ms-win-crt-filesystem-l1-1-0.dll │ ├── api-ms-win-crt-heap-l1-1-0.dll │ ├── api-ms-win-crt-locale-l1-1-0.dll │ ├── api-ms-win-crt-math-l1-1-0.dll │ ├── api-ms-win-crt-multibyte-l1-1-0.dll │ ├── api-ms-win-crt-private-l1-1-0.dll │ ├── api-ms-win-crt-process-l1-1-0.dll │ ├── api-ms-win-crt-runtime-l1-1-0.dll │ ├── api-ms-win-crt-stdio-l1-1-0.dll │ ├── api-ms-win-crt-string-l1-1-0.dll │ ├── api-ms-win-crt-time-l1-1-0.dll │ ├── api-ms-win-crt-utility-l1-1-0.dll │ └── ucrtbase.dll │ └── vc++ │ ├── concrt140.dll │ ├── msvcp140.dll │ ├── vccorlib140.dll │ └── vcruntime140.dll ├── lib ├── Itenso.Windows.Controls.ListViewLayout.dll ├── Itenso.Windows.Controls.ListViewLayout.pdb ├── x64 │ └── Interop.NETWORKLIST.dll └── x86 │ └── Interop.NETWORKLIST.dll ├── readme └── screenshot.png ├── security ├── README.md ├── syncthing_releases_cert.asc └── synctrayzor_releases_cert.asc ├── server ├── survey.php └── version_check.php └── src ├── ChecksumUtil ├── App.config ├── ChecksumUtil.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── PortableInstaller ├── App.config ├── PortableInstaller.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── ProcessRunner ├── App.config ├── GlobalSuppressions.cs ├── Options.cs ├── ProcessRunner.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── SyncTrayzor.sln └── SyncTrayzor ├── App.Installer.config.xslt ├── App.config ├── App.xaml ├── App.xaml.cs ├── Bootstrapper.cs ├── Design ├── DummyFileTransfersTrayViewModel.cs └── ViewModelLocator.cs ├── FodyWeavers.xml ├── GlobalSuppressions.cs ├── Icons ├── alert_tray.ico ├── alert_tray.svg ├── default.ico ├── default.svg ├── default_tray.ico ├── paused_tray.ico ├── paused_tray.svg ├── stopped.ico ├── stopped.svg ├── syncing_2.ico ├── syncing_2.svg ├── syncing_3.ico ├── syncing_3.svg ├── syncing_4.ico └── syncing_4.svg ├── Localization ├── CustomPluralLocalizationFormatter.cs ├── LocExtension.cs ├── LocalizeConverters.cs └── Localizer.cs ├── NotifyIcon ├── BalloonConductor.cs ├── ConnectedEventDebouncer.cs ├── NotifyIconManager.cs ├── NotifyIconResolutionUtilities.cs ├── NotifyIconViewModel.cs └── TaskbarIconResources.xaml ├── Pages ├── AboutView.xaml ├── AboutViewModel.cs ├── BarAlerts │ ├── AlertSeverity.cs │ ├── AlertSeverityToBackgroundColorConverter.cs │ ├── BarAlertsView.xaml │ ├── BarAlertsViewModel.cs │ ├── ConflictsAlertView.xaml │ ├── ConflictsAlertViewModel.cs │ ├── FailedTransfersAlertView.xaml │ ├── FailedTransfersAlertViewModel.cs │ ├── IBarAlert.cs │ ├── IntelXeGraphicsAlertView.xaml │ ├── IntelXeGraphicsAlertViewModel.cs │ ├── PausedDevicesFromMeteringView.xaml │ ├── PausedDevicesFromMeteringView.xaml.cs │ └── PausedDevicesFromMeteringViewModel.cs ├── ConflictResolution │ ├── ConflictOptionViewModel.cs │ ├── ConflictResolutionView.xaml │ ├── ConflictResolutionViewModel.cs │ ├── ConflictViewModel.cs │ ├── MultipleConflictsResolutionView.xaml │ ├── MultipleConflictsResolutionViewModel.cs │ ├── SingleConflictResolutionView.xaml │ └── SingleConflictResolutionViewModel.cs ├── ConsoleView.xaml ├── ConsoleViewModel.cs ├── NewVersionAlertToastView.xaml ├── NewVersionAlertToastViewModel.cs ├── NewVersionAlertView.xaml ├── NewVersionAlertViewModel.cs ├── NewVersionInstalledToastView.xaml ├── NewVersionInstalledToastViewModel.cs ├── Settings │ ├── KeyValueStringParser.cs │ ├── SettingItem.cs │ ├── SettingsView.xaml │ ├── SettingsViewModel.cs │ ├── SyncthingAddressValidator.cs │ ├── SyncthingCommandLineFlagsValidator.cs │ └── SyncthingEnvironmentalVariablesValidator.cs ├── ShellView.xaml ├── ShellViewModel.cs ├── ThirdPartyComponentsView.xaml ├── ThirdPartyComponentsViewModel.cs ├── Tray │ ├── FileTransferViewModel.cs │ ├── FileTransfersTrayView.xaml │ ├── FileTransfersTrayViewModel.cs │ ├── NetworkGraphView.xaml │ └── NetworkGraphViewModel.cs ├── UnhandledExceptionView.xaml ├── UnhandledExceptionViewModel.cs ├── ViewerView.xaml └── ViewerViewModel.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs └── Resources.resx ├── Resources └── Licenses │ ├── BouncyCastle.txt │ ├── CEF.txt │ ├── CefSharp.txt │ ├── FluentValidation.txt │ ├── Fody.txt │ ├── Json.NET.txt │ ├── ListViewLayoutManager.txt │ ├── LongPath.txt │ ├── Mono.Options.txt │ ├── NLog.txt │ ├── NotifyIcon.txt │ ├── OxyPlot.txt │ ├── RestEase.txt │ ├── Rx.txt │ ├── SmartFormat.txt │ ├── Stylet.txt │ ├── Syncthing.txt │ └── WindowsAPICodePack.txt ├── Services ├── AlertsManager.cs ├── ApplicationState.cs ├── ApplicationWindowState.cs ├── AssemblyProvider.cs ├── AutostartProvider.cs ├── CommandLineOptionsParser.cs ├── Config │ ├── AppSettings.cs │ ├── ApplicationPathsProvider.cs │ ├── ConfigFolderCleaner.cs │ ├── Configuration.cs │ ├── ConfigurationProvider.cs │ ├── EnvironmentalVariableCollection.cs │ ├── FolderConfiguration.cs │ ├── IconAnimationMode.cs │ ├── LogLevel.cs │ ├── PathConfiguration.cs │ ├── SyncTrayzorVariant.cs │ ├── SyncthingPriorityLevel.cs │ └── WindowPlacement.cs ├── ConfigurationApplicator.cs ├── Conflicts │ ├── ConflictFileManager.cs │ └── ConflictFileWatcher.cs ├── DirectoryWatcher.cs ├── DonationManager.cs ├── FileWatcher.cs ├── FilesystemProvider.cs ├── FocusWindowProvider.cs ├── GraphicsCardDetector.cs ├── Ipc │ ├── IpcCommsClient.cs │ ├── IpcCommsClientFactory.cs │ └── IpcCommsServer.cs ├── MemoryUsageLogger.cs ├── Metering │ ├── MeteredNetworkManager.cs │ └── NetworkCostManager.cs ├── PathTransformer.cs ├── ProcessStartProvider.cs ├── UpdateManagement │ ├── IUpdateNotificationApi.cs │ ├── IUpdateVariantHandler.cs │ ├── InstalledUpdateVariantHandler.cs │ ├── InstallerCertificateVerifier.cs │ ├── PortableUpdateVariantHandler.cs │ ├── Release.cs │ ├── UpdateChecker.cs │ ├── UpdateCheckerFactory.cs │ ├── UpdateDownloader.cs │ ├── UpdateManager.cs │ ├── UpdateNotificationClient.cs │ ├── UpdateNotificationClientFactory.cs │ ├── UpdateNotificationResponse.cs │ └── UpdatePromptProvider.cs ├── UserActivityMonitor.cs └── WatchedFolderMonitor.cs ├── SyncTrayzor.csproj ├── SyncTrayzor.ruleset ├── Syncthing ├── ApiClient │ ├── Config.cs │ ├── ConfigSavedEvent.cs │ ├── Connections.cs │ ├── DebugFacilitiesSettings.cs │ ├── DefaultingStringEnumConverter.cs │ ├── DeviceConnectedEvent.cs │ ├── DeviceDisconnectedEvent.cs │ ├── DevicePausedEvent.cs │ ├── DeviceRejectedEvent.cs │ ├── DeviceResumedEvent.cs │ ├── DownloadProgressEvent.cs │ ├── Event.cs │ ├── EventConverter.cs │ ├── EventType.cs │ ├── FolderErrorsEvent.cs │ ├── FolderRejectedEvent.cs │ ├── FolderStatus.cs │ ├── FolderSummaryEvent.cs │ ├── GenericEvent.cs │ ├── IEventVisitor.cs │ ├── ISyncthingApi.cs │ ├── ISyncthingApiClient.cs │ ├── ItemChangedActionType.cs │ ├── ItemChangedItemType.cs │ ├── ItemFinishedEvent.cs │ ├── ItemStartedEvent.cs │ ├── JsonCreationConverter.cs │ ├── LocalIndexUpdatedEvent.cs │ ├── RemoteIndexUpdatedEvent.cs │ ├── StartupCompleteEvent.cs │ ├── StateChangedEvent.cs │ ├── SyncthingApiClient.cs │ ├── SyncthingApiClientFactory.cs │ ├── SyncthingHttpClientHandler.cs │ ├── SyncthingVersion.cs │ └── SystemInfo.cs ├── DeviceRejectedEventArgs.cs ├── Devices │ ├── Device.cs │ ├── DeviceConnectedEventArgs.cs │ ├── DeviceDisconnectedEventArgs.cs │ ├── DevicePausedEventArgs.cs │ ├── DeviceResumedEventArgs.cs │ ├── SyncthingAddressParser.cs │ └── SyncthingDeviceManager.cs ├── EventWatcher │ ├── ConfigSavedEventArgs.cs │ ├── DeviceConnectedEventArgs.cs │ ├── DeviceDisconnectedEventArgs.cs │ ├── DevicePausedEventArgs.cs │ ├── DeviceRejectedEventArgs.cs │ ├── DeviceResumedEventArgs.cs │ ├── FolderErrorsChangedEventArgs.cs │ ├── FolderRejectedEventArgs.cs │ ├── FolderStatusChangedEventArgs.cs │ ├── ItemDownloadProgressChangedEventArgs.cs │ ├── ItemFinishedEventArgs.cs │ ├── ItemStartedEventArgs.cs │ ├── ItemStateChangedEventArgs.cs │ ├── SyncStateChangedEventArgs.cs │ ├── SyncthingEventWatcher.cs │ └── SyncthingEventWatcherFactory.cs ├── FolderRejectedEventArgs.cs ├── Folders │ ├── Folder.cs │ ├── FolderError.cs │ ├── FolderErrorsChangedEventArgs.cs │ ├── FolderStateTransformer.cs │ ├── FolderStatusChangedEventArgs.cs │ ├── FolderSyncState.cs │ ├── FolderSyncStateChangedEventArgs.cs │ └── SyncthingFolderManager.cs ├── FreePortFinder.cs ├── MessageLoggedEventArgs.cs ├── SyncthingCapabilities.cs ├── SyncthingConnectionStats.cs ├── SyncthingConnectionsWatcher.cs ├── SyncthingConnectionsWatcherFactory.cs ├── SyncthingDidNotStartCorrectlyException.cs ├── SyncthingManager.cs ├── SyncthingPoller.cs ├── SyncthingProcessRunner.cs ├── SyncthingState.cs ├── SyncthingStateChangedEventArgs.cs ├── SyncthingVersionInformation.cs ├── TransferHistory │ ├── FailingTransfer.cs │ ├── FileTransfer.cs │ ├── FileTransferChangedEventArgs.cs │ ├── FileTransferStatus.cs │ ├── FolderSynchronizationFinishedEventArgs.cs │ └── SyncthingTransferHistory.cs └── TransientWrapper.cs ├── Utils ├── AtomicFileStream.cs ├── Buffer.cs ├── ChecksumFileUtilities.cs ├── DotNetVersionFinder.cs ├── EnumerableExtensions.cs ├── FluentModelValidator.cs ├── FormatUtils.cs ├── LimitedConcurrencyTaskScheduler.cs ├── ListExtensions.cs ├── ObservableQueue.cs ├── Options.cs ├── PathEx.cs ├── PgpClearsignUtilities.cs ├── RecycleBinDeleter.cs ├── SafeSyncthingExtensions.cs ├── SemaphoreSlimExtensions.cs ├── ShellTools.cs ├── StreamExtensions.cs ├── StringExtensions.cs ├── SynchronizedEventDispatcher.cs ├── SynchronizedEventSubscriber.cs └── UriExtensions.cs ├── Xaml ├── ActivateBehaviour.cs ├── BoringListView.xaml ├── CollapsingRowDefinitionBehaviour.cs ├── CultureAwareBinding.cs ├── DetachingBehaviour.cs ├── GridLengthToAbsoluteConverter.cs ├── GridViewSortByBehaviour.cs ├── LogMessageListToStringConverter.cs ├── MouseWheelGesture.cs ├── NoSizeBelowScreenBehaviour.cs ├── PassiveListView.xaml ├── PopupConductorBehaviour.cs ├── RemoveMnemonicsConverter.cs ├── Resources.xaml ├── ScrollToEndBehaviour.cs ├── TextBoxUtilities.cs ├── UacImageSource.cs └── WindowPlacementBehaviour.cs ├── app.manifest └── idle.ico /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ['https://github.com/canton7/synctrayzor/blob/develop/DONATING.md#donating'] -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DONATING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/DONATING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/Rakefile -------------------------------------------------------------------------------- /SyncTrayzor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/SyncTrayzor.png -------------------------------------------------------------------------------- /chocolatey/synctrayzor.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/chocolatey/synctrayzor.nuspec -------------------------------------------------------------------------------- /chocolatey/tools/VERIFICATION.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/chocolatey/tools/VERIFICATION.txt -------------------------------------------------------------------------------- /chocolatey/tools/chocolateyinstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/chocolatey/tools/chocolateyinstall.ps1 -------------------------------------------------------------------------------- /installer/certnotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/certnotes.txt -------------------------------------------------------------------------------- /installer/common.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/common.iss -------------------------------------------------------------------------------- /installer/dotNet472Setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/dotNet472Setup.exe -------------------------------------------------------------------------------- /installer/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/icon.bmp -------------------------------------------------------------------------------- /installer/x64/installer-x64.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/installer-x64.iss -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-core-console-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-core-console-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-core-console-l1-2-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-core-console-l1-2-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-core-datetime-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-core-datetime-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-core-debug-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-core-debug-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-core-errorhandling-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-core-errorhandling-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-core-file-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-core-file-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-core-file-l1-2-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-core-file-l1-2-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-core-file-l2-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-core-file-l2-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-core-handle-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-core-handle-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-core-heap-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-core-heap-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-core-interlocked-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-core-interlocked-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-core-libraryloader-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-core-libraryloader-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-core-localization-l1-2-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-core-localization-l1-2-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-core-memory-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-core-memory-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-core-namedpipe-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-core-namedpipe-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-core-processenvironment-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-core-processenvironment-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-core-processthreads-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-core-processthreads-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-core-processthreads-l1-1-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-core-processthreads-l1-1-1.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-core-profile-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-core-profile-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-core-rtlsupport-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-core-rtlsupport-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-core-string-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-core-string-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-core-synch-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-core-synch-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-core-synch-l1-2-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-core-synch-l1-2-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-core-sysinfo-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-core-sysinfo-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-core-timezone-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-core-timezone-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-core-util-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-core-util-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-crt-conio-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-crt-conio-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-crt-convert-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-crt-convert-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-crt-environment-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-crt-environment-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-crt-filesystem-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-crt-filesystem-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-crt-heap-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-crt-heap-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-crt-locale-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-crt-locale-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-crt-math-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-crt-math-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-crt-multibyte-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-crt-multibyte-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-crt-private-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-crt-private-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-crt-process-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-crt-process-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-crt-runtime-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-crt-runtime-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-crt-stdio-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-crt-stdio-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-crt-string-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-crt-string-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-crt-time-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-crt-time-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/api-ms-win-crt-utility-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/api-ms-win-crt-utility-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x64/ucrt/ucrtbase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/ucrt/ucrtbase.dll -------------------------------------------------------------------------------- /installer/x64/vc++/concrt140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/vc++/concrt140.dll -------------------------------------------------------------------------------- /installer/x64/vc++/msvcp140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/vc++/msvcp140.dll -------------------------------------------------------------------------------- /installer/x64/vc++/vccorlib140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/vc++/vccorlib140.dll -------------------------------------------------------------------------------- /installer/x64/vc++/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x64/vc++/vcruntime140.dll -------------------------------------------------------------------------------- /installer/x86/installer-x86.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/installer-x86.iss -------------------------------------------------------------------------------- /installer/x86/ucrt/API-MS-Win-core-xstate-l2-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/API-MS-Win-core-xstate-l2-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-core-console-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-core-console-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-core-console-l1-2-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-core-console-l1-2-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-core-datetime-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-core-datetime-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-core-debug-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-core-debug-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-core-errorhandling-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-core-errorhandling-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-core-file-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-core-file-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-core-file-l1-2-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-core-file-l1-2-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-core-file-l2-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-core-file-l2-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-core-handle-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-core-handle-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-core-heap-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-core-heap-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-core-interlocked-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-core-interlocked-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-core-libraryloader-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-core-libraryloader-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-core-localization-l1-2-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-core-localization-l1-2-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-core-memory-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-core-memory-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-core-namedpipe-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-core-namedpipe-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-core-processenvironment-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-core-processenvironment-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-core-processthreads-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-core-processthreads-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-core-processthreads-l1-1-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-core-processthreads-l1-1-1.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-core-profile-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-core-profile-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-core-rtlsupport-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-core-rtlsupport-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-core-string-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-core-string-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-core-synch-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-core-synch-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-core-synch-l1-2-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-core-synch-l1-2-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-core-sysinfo-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-core-sysinfo-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-core-timezone-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-core-timezone-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-core-util-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-core-util-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-crt-conio-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-crt-conio-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-crt-convert-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-crt-convert-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-crt-environment-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-crt-environment-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-crt-filesystem-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-crt-filesystem-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-crt-heap-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-crt-heap-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-crt-locale-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-crt-locale-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-crt-math-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-crt-math-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-crt-multibyte-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-crt-multibyte-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-crt-private-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-crt-private-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-crt-process-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-crt-process-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-crt-runtime-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-crt-runtime-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-crt-stdio-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-crt-stdio-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-crt-string-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-crt-string-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-crt-time-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-crt-time-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/api-ms-win-crt-utility-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/api-ms-win-crt-utility-l1-1-0.dll -------------------------------------------------------------------------------- /installer/x86/ucrt/ucrtbase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/ucrt/ucrtbase.dll -------------------------------------------------------------------------------- /installer/x86/vc++/concrt140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/vc++/concrt140.dll -------------------------------------------------------------------------------- /installer/x86/vc++/msvcp140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/vc++/msvcp140.dll -------------------------------------------------------------------------------- /installer/x86/vc++/vccorlib140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/vc++/vccorlib140.dll -------------------------------------------------------------------------------- /installer/x86/vc++/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/installer/x86/vc++/vcruntime140.dll -------------------------------------------------------------------------------- /lib/Itenso.Windows.Controls.ListViewLayout.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/lib/Itenso.Windows.Controls.ListViewLayout.dll -------------------------------------------------------------------------------- /lib/Itenso.Windows.Controls.ListViewLayout.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/lib/Itenso.Windows.Controls.ListViewLayout.pdb -------------------------------------------------------------------------------- /lib/x64/Interop.NETWORKLIST.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/lib/x64/Interop.NETWORKLIST.dll -------------------------------------------------------------------------------- /lib/x86/Interop.NETWORKLIST.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/lib/x86/Interop.NETWORKLIST.dll -------------------------------------------------------------------------------- /readme/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/readme/screenshot.png -------------------------------------------------------------------------------- /security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/security/README.md -------------------------------------------------------------------------------- /security/syncthing_releases_cert.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/security/syncthing_releases_cert.asc -------------------------------------------------------------------------------- /security/synctrayzor_releases_cert.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/security/synctrayzor_releases_cert.asc -------------------------------------------------------------------------------- /server/survey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/server/survey.php -------------------------------------------------------------------------------- /server/version_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/server/version_check.php -------------------------------------------------------------------------------- /src/ChecksumUtil/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/ChecksumUtil/App.config -------------------------------------------------------------------------------- /src/ChecksumUtil/ChecksumUtil.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/ChecksumUtil/ChecksumUtil.csproj -------------------------------------------------------------------------------- /src/ChecksumUtil/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/ChecksumUtil/Program.cs -------------------------------------------------------------------------------- /src/ChecksumUtil/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/ChecksumUtil/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/PortableInstaller/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/PortableInstaller/App.config -------------------------------------------------------------------------------- /src/PortableInstaller/PortableInstaller.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/PortableInstaller/PortableInstaller.csproj -------------------------------------------------------------------------------- /src/PortableInstaller/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/PortableInstaller/Program.cs -------------------------------------------------------------------------------- /src/PortableInstaller/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/PortableInstaller/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ProcessRunner/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/ProcessRunner/App.config -------------------------------------------------------------------------------- /src/ProcessRunner/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/ProcessRunner/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/ProcessRunner/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/ProcessRunner/Options.cs -------------------------------------------------------------------------------- /src/ProcessRunner/ProcessRunner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/ProcessRunner/ProcessRunner.csproj -------------------------------------------------------------------------------- /src/ProcessRunner/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/ProcessRunner/Program.cs -------------------------------------------------------------------------------- /src/ProcessRunner/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/ProcessRunner/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SyncTrayzor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor.sln -------------------------------------------------------------------------------- /src/SyncTrayzor/App.Installer.config.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/App.Installer.config.xslt -------------------------------------------------------------------------------- /src/SyncTrayzor/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/App.config -------------------------------------------------------------------------------- /src/SyncTrayzor/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/App.xaml -------------------------------------------------------------------------------- /src/SyncTrayzor/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/App.xaml.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Bootstrapper.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Design/DummyFileTransfersTrayViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Design/DummyFileTransfersTrayViewModel.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Design/ViewModelLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Design/ViewModelLocator.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/FodyWeavers.xml -------------------------------------------------------------------------------- /src/SyncTrayzor/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Icons/alert_tray.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Icons/alert_tray.ico -------------------------------------------------------------------------------- /src/SyncTrayzor/Icons/alert_tray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Icons/alert_tray.svg -------------------------------------------------------------------------------- /src/SyncTrayzor/Icons/default.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Icons/default.ico -------------------------------------------------------------------------------- /src/SyncTrayzor/Icons/default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Icons/default.svg -------------------------------------------------------------------------------- /src/SyncTrayzor/Icons/default_tray.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Icons/default_tray.ico -------------------------------------------------------------------------------- /src/SyncTrayzor/Icons/paused_tray.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Icons/paused_tray.ico -------------------------------------------------------------------------------- /src/SyncTrayzor/Icons/paused_tray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Icons/paused_tray.svg -------------------------------------------------------------------------------- /src/SyncTrayzor/Icons/stopped.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Icons/stopped.ico -------------------------------------------------------------------------------- /src/SyncTrayzor/Icons/stopped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Icons/stopped.svg -------------------------------------------------------------------------------- /src/SyncTrayzor/Icons/syncing_2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Icons/syncing_2.ico -------------------------------------------------------------------------------- /src/SyncTrayzor/Icons/syncing_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Icons/syncing_2.svg -------------------------------------------------------------------------------- /src/SyncTrayzor/Icons/syncing_3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Icons/syncing_3.ico -------------------------------------------------------------------------------- /src/SyncTrayzor/Icons/syncing_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Icons/syncing_3.svg -------------------------------------------------------------------------------- /src/SyncTrayzor/Icons/syncing_4.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Icons/syncing_4.ico -------------------------------------------------------------------------------- /src/SyncTrayzor/Icons/syncing_4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Icons/syncing_4.svg -------------------------------------------------------------------------------- /src/SyncTrayzor/Localization/CustomPluralLocalizationFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Localization/CustomPluralLocalizationFormatter.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Localization/LocExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Localization/LocExtension.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Localization/LocalizeConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Localization/LocalizeConverters.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Localization/Localizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Localization/Localizer.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/NotifyIcon/BalloonConductor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/NotifyIcon/BalloonConductor.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/NotifyIcon/ConnectedEventDebouncer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/NotifyIcon/ConnectedEventDebouncer.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/NotifyIcon/NotifyIconManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/NotifyIcon/NotifyIconManager.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/NotifyIcon/NotifyIconResolutionUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/NotifyIcon/NotifyIconResolutionUtilities.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/NotifyIcon/NotifyIconViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/NotifyIcon/NotifyIconViewModel.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/NotifyIcon/TaskbarIconResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/NotifyIcon/TaskbarIconResources.xaml -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/AboutView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/AboutView.xaml -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/AboutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/AboutViewModel.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/BarAlerts/AlertSeverity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/BarAlerts/AlertSeverity.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/BarAlerts/AlertSeverityToBackgroundColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/BarAlerts/AlertSeverityToBackgroundColorConverter.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/BarAlerts/BarAlertsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/BarAlerts/BarAlertsView.xaml -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/BarAlerts/BarAlertsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/BarAlerts/BarAlertsViewModel.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/BarAlerts/ConflictsAlertView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/BarAlerts/ConflictsAlertView.xaml -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/BarAlerts/ConflictsAlertViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/BarAlerts/ConflictsAlertViewModel.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/BarAlerts/FailedTransfersAlertView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/BarAlerts/FailedTransfersAlertView.xaml -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/BarAlerts/FailedTransfersAlertViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/BarAlerts/FailedTransfersAlertViewModel.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/BarAlerts/IBarAlert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/BarAlerts/IBarAlert.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/BarAlerts/IntelXeGraphicsAlertView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/BarAlerts/IntelXeGraphicsAlertView.xaml -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/BarAlerts/IntelXeGraphicsAlertViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/BarAlerts/IntelXeGraphicsAlertViewModel.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/BarAlerts/PausedDevicesFromMeteringView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/BarAlerts/PausedDevicesFromMeteringView.xaml -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/BarAlerts/PausedDevicesFromMeteringView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/BarAlerts/PausedDevicesFromMeteringView.xaml.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/BarAlerts/PausedDevicesFromMeteringViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/BarAlerts/PausedDevicesFromMeteringViewModel.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/ConflictResolution/ConflictOptionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/ConflictResolution/ConflictOptionViewModel.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/ConflictResolution/ConflictResolutionView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/ConflictResolution/ConflictResolutionView.xaml -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/ConflictResolution/ConflictResolutionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/ConflictResolution/ConflictResolutionViewModel.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/ConflictResolution/ConflictViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/ConflictResolution/ConflictViewModel.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/ConflictResolution/MultipleConflictsResolutionView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/ConflictResolution/MultipleConflictsResolutionView.xaml -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/ConflictResolution/MultipleConflictsResolutionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/ConflictResolution/MultipleConflictsResolutionViewModel.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/ConflictResolution/SingleConflictResolutionView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/ConflictResolution/SingleConflictResolutionView.xaml -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/ConflictResolution/SingleConflictResolutionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/ConflictResolution/SingleConflictResolutionViewModel.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/ConsoleView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/ConsoleView.xaml -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/ConsoleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/ConsoleViewModel.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/NewVersionAlertToastView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/NewVersionAlertToastView.xaml -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/NewVersionAlertToastViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/NewVersionAlertToastViewModel.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/NewVersionAlertView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/NewVersionAlertView.xaml -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/NewVersionAlertViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/NewVersionAlertViewModel.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/NewVersionInstalledToastView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/NewVersionInstalledToastView.xaml -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/NewVersionInstalledToastViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/NewVersionInstalledToastViewModel.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/Settings/KeyValueStringParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/Settings/KeyValueStringParser.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/Settings/SettingItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/Settings/SettingItem.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/Settings/SettingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/Settings/SettingsView.xaml -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/Settings/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/Settings/SettingsViewModel.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/Settings/SyncthingAddressValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/Settings/SyncthingAddressValidator.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/Settings/SyncthingCommandLineFlagsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/Settings/SyncthingCommandLineFlagsValidator.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/Settings/SyncthingEnvironmentalVariablesValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/Settings/SyncthingEnvironmentalVariablesValidator.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/ShellView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/ShellView.xaml -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/ShellViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/ShellViewModel.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/ThirdPartyComponentsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/ThirdPartyComponentsView.xaml -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/ThirdPartyComponentsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/ThirdPartyComponentsViewModel.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/Tray/FileTransferViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/Tray/FileTransferViewModel.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/Tray/FileTransfersTrayView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/Tray/FileTransfersTrayView.xaml -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/Tray/FileTransfersTrayViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/Tray/FileTransfersTrayViewModel.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/Tray/NetworkGraphView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/Tray/NetworkGraphView.xaml -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/Tray/NetworkGraphViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/Tray/NetworkGraphViewModel.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/UnhandledExceptionView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/UnhandledExceptionView.xaml -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/UnhandledExceptionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/UnhandledExceptionViewModel.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/ViewerView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/ViewerView.xaml -------------------------------------------------------------------------------- /src/SyncTrayzor/Pages/ViewerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Pages/ViewerViewModel.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Properties/Resources.resx -------------------------------------------------------------------------------- /src/SyncTrayzor/Resources/Licenses/BouncyCastle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Resources/Licenses/BouncyCastle.txt -------------------------------------------------------------------------------- /src/SyncTrayzor/Resources/Licenses/CEF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Resources/Licenses/CEF.txt -------------------------------------------------------------------------------- /src/SyncTrayzor/Resources/Licenses/CefSharp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Resources/Licenses/CefSharp.txt -------------------------------------------------------------------------------- /src/SyncTrayzor/Resources/Licenses/FluentValidation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Resources/Licenses/FluentValidation.txt -------------------------------------------------------------------------------- /src/SyncTrayzor/Resources/Licenses/Fody.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Resources/Licenses/Fody.txt -------------------------------------------------------------------------------- /src/SyncTrayzor/Resources/Licenses/Json.NET.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Resources/Licenses/Json.NET.txt -------------------------------------------------------------------------------- /src/SyncTrayzor/Resources/Licenses/ListViewLayoutManager.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Resources/Licenses/ListViewLayoutManager.txt -------------------------------------------------------------------------------- /src/SyncTrayzor/Resources/Licenses/LongPath.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Resources/Licenses/LongPath.txt -------------------------------------------------------------------------------- /src/SyncTrayzor/Resources/Licenses/Mono.Options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Resources/Licenses/Mono.Options.txt -------------------------------------------------------------------------------- /src/SyncTrayzor/Resources/Licenses/NLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Resources/Licenses/NLog.txt -------------------------------------------------------------------------------- /src/SyncTrayzor/Resources/Licenses/NotifyIcon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Resources/Licenses/NotifyIcon.txt -------------------------------------------------------------------------------- /src/SyncTrayzor/Resources/Licenses/OxyPlot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Resources/Licenses/OxyPlot.txt -------------------------------------------------------------------------------- /src/SyncTrayzor/Resources/Licenses/RestEase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Resources/Licenses/RestEase.txt -------------------------------------------------------------------------------- /src/SyncTrayzor/Resources/Licenses/Rx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Resources/Licenses/Rx.txt -------------------------------------------------------------------------------- /src/SyncTrayzor/Resources/Licenses/SmartFormat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Resources/Licenses/SmartFormat.txt -------------------------------------------------------------------------------- /src/SyncTrayzor/Resources/Licenses/Stylet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Resources/Licenses/Stylet.txt -------------------------------------------------------------------------------- /src/SyncTrayzor/Resources/Licenses/Syncthing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Resources/Licenses/Syncthing.txt -------------------------------------------------------------------------------- /src/SyncTrayzor/Resources/Licenses/WindowsAPICodePack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Resources/Licenses/WindowsAPICodePack.txt -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/AlertsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/AlertsManager.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/ApplicationState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/ApplicationState.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/ApplicationWindowState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/ApplicationWindowState.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/AssemblyProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/AssemblyProvider.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/AutostartProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/AutostartProvider.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/CommandLineOptionsParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/CommandLineOptionsParser.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/Config/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/Config/AppSettings.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/Config/ApplicationPathsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/Config/ApplicationPathsProvider.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/Config/ConfigFolderCleaner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/Config/ConfigFolderCleaner.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/Config/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/Config/Configuration.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/Config/ConfigurationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/Config/ConfigurationProvider.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/Config/EnvironmentalVariableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/Config/EnvironmentalVariableCollection.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/Config/FolderConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/Config/FolderConfiguration.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/Config/IconAnimationMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/Config/IconAnimationMode.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/Config/LogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/Config/LogLevel.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/Config/PathConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/Config/PathConfiguration.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/Config/SyncTrayzorVariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/Config/SyncTrayzorVariant.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/Config/SyncthingPriorityLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/Config/SyncthingPriorityLevel.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/Config/WindowPlacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/Config/WindowPlacement.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/ConfigurationApplicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/ConfigurationApplicator.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/Conflicts/ConflictFileManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/Conflicts/ConflictFileManager.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/Conflicts/ConflictFileWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/Conflicts/ConflictFileWatcher.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/DirectoryWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/DirectoryWatcher.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/DonationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/DonationManager.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/FileWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/FileWatcher.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/FilesystemProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/FilesystemProvider.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/FocusWindowProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/FocusWindowProvider.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/GraphicsCardDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/GraphicsCardDetector.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/Ipc/IpcCommsClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/Ipc/IpcCommsClient.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/Ipc/IpcCommsClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/Ipc/IpcCommsClientFactory.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/Ipc/IpcCommsServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/Ipc/IpcCommsServer.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/MemoryUsageLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/MemoryUsageLogger.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/Metering/MeteredNetworkManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/Metering/MeteredNetworkManager.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/Metering/NetworkCostManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/Metering/NetworkCostManager.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/PathTransformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/PathTransformer.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/ProcessStartProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/ProcessStartProvider.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/UpdateManagement/IUpdateNotificationApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/UpdateManagement/IUpdateNotificationApi.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/UpdateManagement/IUpdateVariantHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/UpdateManagement/IUpdateVariantHandler.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/UpdateManagement/InstalledUpdateVariantHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/UpdateManagement/InstalledUpdateVariantHandler.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/UpdateManagement/InstallerCertificateVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/UpdateManagement/InstallerCertificateVerifier.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/UpdateManagement/PortableUpdateVariantHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/UpdateManagement/PortableUpdateVariantHandler.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/UpdateManagement/Release.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/UpdateManagement/Release.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/UpdateManagement/UpdateChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/UpdateManagement/UpdateChecker.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/UpdateManagement/UpdateCheckerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/UpdateManagement/UpdateCheckerFactory.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/UpdateManagement/UpdateDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/UpdateManagement/UpdateDownloader.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/UpdateManagement/UpdateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/UpdateManagement/UpdateManager.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/UpdateManagement/UpdateNotificationClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/UpdateManagement/UpdateNotificationClient.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/UpdateManagement/UpdateNotificationClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/UpdateManagement/UpdateNotificationClientFactory.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/UpdateManagement/UpdateNotificationResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/UpdateManagement/UpdateNotificationResponse.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/UpdateManagement/UpdatePromptProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/UpdateManagement/UpdatePromptProvider.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/UserActivityMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/UserActivityMonitor.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Services/WatchedFolderMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Services/WatchedFolderMonitor.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/SyncTrayzor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/SyncTrayzor.csproj -------------------------------------------------------------------------------- /src/SyncTrayzor/SyncTrayzor.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/SyncTrayzor.ruleset -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/Config.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/ConfigSavedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/ConfigSavedEvent.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/Connections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/Connections.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/DebugFacilitiesSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/DebugFacilitiesSettings.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/DefaultingStringEnumConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/DefaultingStringEnumConverter.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/DeviceConnectedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/DeviceConnectedEvent.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/DeviceDisconnectedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/DeviceDisconnectedEvent.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/DevicePausedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/DevicePausedEvent.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/DeviceRejectedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/DeviceRejectedEvent.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/DeviceResumedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/DeviceResumedEvent.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/DownloadProgressEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/DownloadProgressEvent.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/Event.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/EventConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/EventConverter.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/EventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/EventType.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/FolderErrorsEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/FolderErrorsEvent.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/FolderRejectedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/FolderRejectedEvent.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/FolderStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/FolderStatus.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/FolderSummaryEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/FolderSummaryEvent.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/GenericEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/GenericEvent.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/IEventVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/IEventVisitor.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/ISyncthingApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/ISyncthingApi.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/ISyncthingApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/ISyncthingApiClient.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/ItemChangedActionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/ItemChangedActionType.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/ItemChangedItemType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/ItemChangedItemType.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/ItemFinishedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/ItemFinishedEvent.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/ItemStartedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/ItemStartedEvent.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/JsonCreationConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/JsonCreationConverter.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/LocalIndexUpdatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/LocalIndexUpdatedEvent.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/RemoteIndexUpdatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/RemoteIndexUpdatedEvent.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/StartupCompleteEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/StartupCompleteEvent.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/StateChangedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/StateChangedEvent.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/SyncthingApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/SyncthingApiClient.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/SyncthingApiClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/SyncthingApiClientFactory.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/SyncthingHttpClientHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/SyncthingHttpClientHandler.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/SyncthingVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/SyncthingVersion.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/ApiClient/SystemInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/ApiClient/SystemInfo.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/DeviceRejectedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/DeviceRejectedEventArgs.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/Devices/Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/Devices/Device.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/Devices/DeviceConnectedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/Devices/DeviceConnectedEventArgs.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/Devices/DeviceDisconnectedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/Devices/DeviceDisconnectedEventArgs.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/Devices/DevicePausedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/Devices/DevicePausedEventArgs.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/Devices/DeviceResumedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/Devices/DeviceResumedEventArgs.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/Devices/SyncthingAddressParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/Devices/SyncthingAddressParser.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/Devices/SyncthingDeviceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/Devices/SyncthingDeviceManager.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/EventWatcher/ConfigSavedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/EventWatcher/ConfigSavedEventArgs.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/EventWatcher/DeviceConnectedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/EventWatcher/DeviceConnectedEventArgs.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/EventWatcher/DeviceDisconnectedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/EventWatcher/DeviceDisconnectedEventArgs.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/EventWatcher/DevicePausedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/EventWatcher/DevicePausedEventArgs.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/EventWatcher/DeviceRejectedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/EventWatcher/DeviceRejectedEventArgs.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/EventWatcher/DeviceResumedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/EventWatcher/DeviceResumedEventArgs.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/EventWatcher/FolderErrorsChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/EventWatcher/FolderErrorsChangedEventArgs.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/EventWatcher/FolderRejectedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/EventWatcher/FolderRejectedEventArgs.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/EventWatcher/FolderStatusChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/EventWatcher/FolderStatusChangedEventArgs.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/EventWatcher/ItemDownloadProgressChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/EventWatcher/ItemDownloadProgressChangedEventArgs.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/EventWatcher/ItemFinishedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/EventWatcher/ItemFinishedEventArgs.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/EventWatcher/ItemStartedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/EventWatcher/ItemStartedEventArgs.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/EventWatcher/ItemStateChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/EventWatcher/ItemStateChangedEventArgs.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/EventWatcher/SyncStateChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/EventWatcher/SyncStateChangedEventArgs.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/EventWatcher/SyncthingEventWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/EventWatcher/SyncthingEventWatcher.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/EventWatcher/SyncthingEventWatcherFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/EventWatcher/SyncthingEventWatcherFactory.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/FolderRejectedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/FolderRejectedEventArgs.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/Folders/Folder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/Folders/Folder.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/Folders/FolderError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/Folders/FolderError.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/Folders/FolderErrorsChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/Folders/FolderErrorsChangedEventArgs.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/Folders/FolderStateTransformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/Folders/FolderStateTransformer.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/Folders/FolderStatusChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/Folders/FolderStatusChangedEventArgs.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/Folders/FolderSyncState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/Folders/FolderSyncState.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/Folders/FolderSyncStateChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/Folders/FolderSyncStateChangedEventArgs.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/Folders/SyncthingFolderManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/Folders/SyncthingFolderManager.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/FreePortFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/FreePortFinder.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/MessageLoggedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/MessageLoggedEventArgs.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/SyncthingCapabilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/SyncthingCapabilities.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/SyncthingConnectionStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/SyncthingConnectionStats.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/SyncthingConnectionsWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/SyncthingConnectionsWatcher.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/SyncthingConnectionsWatcherFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/SyncthingConnectionsWatcherFactory.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/SyncthingDidNotStartCorrectlyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/SyncthingDidNotStartCorrectlyException.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/SyncthingManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/SyncthingManager.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/SyncthingPoller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/SyncthingPoller.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/SyncthingProcessRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/SyncthingProcessRunner.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/SyncthingState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/SyncthingState.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/SyncthingStateChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/SyncthingStateChangedEventArgs.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/SyncthingVersionInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/SyncthingVersionInformation.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/TransferHistory/FailingTransfer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/TransferHistory/FailingTransfer.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/TransferHistory/FileTransfer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/TransferHistory/FileTransfer.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/TransferHistory/FileTransferChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/TransferHistory/FileTransferChangedEventArgs.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/TransferHistory/FileTransferStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/TransferHistory/FileTransferStatus.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/TransferHistory/FolderSynchronizationFinishedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/TransferHistory/FolderSynchronizationFinishedEventArgs.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/TransferHistory/SyncthingTransferHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/TransferHistory/SyncthingTransferHistory.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Syncthing/TransientWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Syncthing/TransientWrapper.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Utils/AtomicFileStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Utils/AtomicFileStream.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Utils/Buffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Utils/Buffer.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Utils/ChecksumFileUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Utils/ChecksumFileUtilities.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Utils/DotNetVersionFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Utils/DotNetVersionFinder.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Utils/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Utils/EnumerableExtensions.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Utils/FluentModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Utils/FluentModelValidator.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Utils/FormatUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Utils/FormatUtils.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Utils/LimitedConcurrencyTaskScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Utils/LimitedConcurrencyTaskScheduler.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Utils/ListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Utils/ListExtensions.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Utils/ObservableQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Utils/ObservableQueue.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Utils/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Utils/Options.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Utils/PathEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Utils/PathEx.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Utils/PgpClearsignUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Utils/PgpClearsignUtilities.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Utils/RecycleBinDeleter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Utils/RecycleBinDeleter.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Utils/SafeSyncthingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Utils/SafeSyncthingExtensions.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Utils/SemaphoreSlimExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Utils/SemaphoreSlimExtensions.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Utils/ShellTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Utils/ShellTools.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Utils/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Utils/StreamExtensions.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Utils/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Utils/StringExtensions.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Utils/SynchronizedEventDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Utils/SynchronizedEventDispatcher.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Utils/SynchronizedEventSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Utils/SynchronizedEventSubscriber.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Utils/UriExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Utils/UriExtensions.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Xaml/ActivateBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Xaml/ActivateBehaviour.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Xaml/BoringListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Xaml/BoringListView.xaml -------------------------------------------------------------------------------- /src/SyncTrayzor/Xaml/CollapsingRowDefinitionBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Xaml/CollapsingRowDefinitionBehaviour.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Xaml/CultureAwareBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Xaml/CultureAwareBinding.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Xaml/DetachingBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Xaml/DetachingBehaviour.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Xaml/GridLengthToAbsoluteConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Xaml/GridLengthToAbsoluteConverter.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Xaml/GridViewSortByBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Xaml/GridViewSortByBehaviour.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Xaml/LogMessageListToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Xaml/LogMessageListToStringConverter.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Xaml/MouseWheelGesture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Xaml/MouseWheelGesture.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Xaml/NoSizeBelowScreenBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Xaml/NoSizeBelowScreenBehaviour.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Xaml/PassiveListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Xaml/PassiveListView.xaml -------------------------------------------------------------------------------- /src/SyncTrayzor/Xaml/PopupConductorBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Xaml/PopupConductorBehaviour.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Xaml/RemoveMnemonicsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Xaml/RemoveMnemonicsConverter.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Xaml/Resources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Xaml/Resources.xaml -------------------------------------------------------------------------------- /src/SyncTrayzor/Xaml/ScrollToEndBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Xaml/ScrollToEndBehaviour.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Xaml/TextBoxUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Xaml/TextBoxUtilities.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Xaml/UacImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Xaml/UacImageSource.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/Xaml/WindowPlacementBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/Xaml/WindowPlacementBehaviour.cs -------------------------------------------------------------------------------- /src/SyncTrayzor/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/app.manifest -------------------------------------------------------------------------------- /src/SyncTrayzor/idle.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canton7/SyncTrayzor/HEAD/src/SyncTrayzor/idle.ico --------------------------------------------------------------------------------