├── .gitignore ├── .periphery.yml ├── .swiftlint.yml ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json └── Contents.json ├── Credits.rtf ├── Licence.MD ├── Makefile ├── README.md ├── RsyncUI.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ ├── WorkspaceSettings.xcsettings │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ └── RsyncUI.xcscheme ├── RsyncUI ├── Info.plist ├── Main │ ├── RsyncUIApp.swift │ └── RsyncUIView.swift ├── Model │ ├── Deeplink │ │ └── DeeplinkURL.swift │ ├── Execution │ │ ├── CreateHandlers │ │ │ ├── CreateCommandHandlers.swift │ │ │ └── CreateHandlers.swift │ │ ├── EstimateExecute │ │ │ ├── EstimateExecute.swift │ │ │ └── RemoteDataNumbers.swift │ │ └── ProgressDetails │ │ │ ├── NoEstProgressDetails.swift │ │ │ └── ProgressDetails.swift │ ├── FilesAndCatalogs │ │ ├── AttachedVolumesService.swift │ │ ├── CatalogForProfile.swift │ │ ├── HomeCatalogsService.swift │ │ └── Homepath.swift │ ├── Global │ │ ├── AlertError.swift │ │ ├── GlobalTimer.swift │ │ ├── ObservableAddConfigurations.swift │ │ ├── ObservableChartData.swift │ │ ├── ObservableGlobalchangeConfigurations.swift │ │ ├── ObservableLogSettings.swift │ │ ├── ObservableOutputfromrsync.swift │ │ ├── ObservableParametersRsync.swift │ │ ├── ObservableProfiles.swift │ │ ├── ObservableRestore.swift │ │ ├── ObservableRsyncPathSetting.swift │ │ ├── ObservableSSH.swift │ │ ├── ObservableSchedules.swift │ │ ├── ObservableSnapshotData.swift │ │ ├── ObservableVerifyRemotePushPull.swift │ │ ├── RsyncUIconfigurations.swift │ │ ├── SharedConstants.swift │ │ └── SharedReference.swift │ ├── Loggdata │ │ └── Logging.swift │ ├── Newversion │ │ ├── ActorGetversionofRsyncUI.swift │ │ └── CheckfornewversionofRsyncUI.swift │ ├── Output │ │ ├── ActorCreateOutputforView.swift │ │ ├── TrimOutputForRestore.swift │ │ └── TrimOutputFromRsync.swift │ ├── ParametersRsync │ │ ├── ArgumentsPullRemote.swift │ │ ├── ArgumentsRemoteFileList.swift │ │ ├── ArgumentsRestore.swift │ │ ├── ArgumentsSnapshotRemoteCatalogs.swift │ │ ├── ArgumentsSynchronize.swift │ │ ├── ArgumentsVerify.swift │ │ ├── Params.swift │ │ └── SSHParams.swift │ ├── Process │ │ ├── InterruptProcess.swift │ │ └── Rsyncversion.swift │ ├── ProcessArguments │ │ ├── ArgumentsSnapshotCreateCatalog.swift │ │ └── ArgumentsSnapshotDeleteCatalogs.swift │ ├── Schedules │ │ └── SchedulesConfigurations.swift │ ├── Snapshots │ │ ├── DeleteSnapshots.swift │ │ ├── LogRecordSnapshot.swift │ │ ├── RecordsSnapshot.swift │ │ ├── SnapshotRemoteCatalogs.swift │ │ ├── Snapshotlogsandcatalogs.swift │ │ └── TagSnapshots.swift │ ├── Ssh │ │ └── SshKeys.swift │ ├── Storage │ │ ├── Actors │ │ │ ├── ActorLogChartsData.swift │ │ │ ├── ActorLogToFile.swift │ │ │ ├── ActorReadLogRecordsJSON.swift │ │ │ ├── ActorReadSchedule.swift │ │ │ └── ActorReadSynchronizeConfigurationJSON.swift │ │ ├── Basic │ │ │ ├── JSON │ │ │ │ ├── DecodeLogRecords.swift │ │ │ │ ├── DecodeSynchronizeConfiguration.swift │ │ │ │ └── DecodeUserConfiguration.swift │ │ │ ├── LogRecords.swift │ │ │ ├── SynchronizeConfiguration.swift │ │ │ ├── UpdateConfigurations.swift │ │ │ ├── UserConfiguration.swift │ │ │ ├── VerifyConfiguration.swift │ │ │ └── WidgetURLstrings.swift │ │ ├── ExportImport │ │ │ ├── ReadImportConfigurationsJSON.swift │ │ │ └── WriteExportConfigurationsJSON.swift │ │ ├── ReadLogRecordsJSON.swift │ │ ├── Userconfiguration │ │ │ ├── ReadUserConfigurationJSON.swift │ │ │ └── WriteUserConfigurationJSON.swift │ │ ├── Widgets │ │ │ └── WriteWidgetsURLStringsJSON.swift │ │ ├── WriteLogRecordsJSON.swift │ │ ├── WriteSchedule.swift │ │ └── WriteSynchronizeConfigurationJSON.swift │ └── Utils │ │ ├── Backupconfigfiles.swift │ │ ├── FileSize.swift │ │ ├── GetfullpathforRsync.swift │ │ ├── Macserialnumber.swift │ │ ├── MyEnvironment.swift │ │ ├── OtherRsyncCommandtoDisplay.swift │ │ ├── PrepareOutputFromRsync.swift │ │ ├── PushPullCommandtoDisplay.swift │ │ ├── ReadAllTasks.swift │ │ ├── Resources.swift │ │ ├── RsyncCommandtoDisplay.swift │ │ ├── SetandValidatepathforrsync.swift │ │ ├── TCPconnections.swift │ │ ├── extensions.swift │ │ └── yudpsocket │ │ ├── ResultYTP.swift │ │ ├── RsyncSwiftUI-Bridging-Header.h │ │ ├── Socket.swift │ │ ├── ytcpsocket.c │ │ ├── ytcpsocket.swift │ │ └── yudpsocket.c ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── RsyncUI.entitlements └── Views │ ├── Add │ ├── AddTaskView.swift │ ├── GlobalChangeTaskView.swift │ ├── HomeCatalogsView.swift │ ├── OpencatalogView.swift │ └── VerifyDuplicates.swift │ ├── Configurations │ ├── ConfigurationsTableDataMainView.swift │ ├── ConfigurationsTableDataView.swift │ ├── ConfigurationsTableGlobalChanges.swift │ ├── ListofTasksAddView.swift │ └── ListofTasksMainView.swift │ ├── Detailsview │ ├── EstimateTableView.swift │ ├── EstimationInProgressView.swift │ ├── OneTaskDetailsView.swift │ ├── SummarizedDetailsView.swift │ └── TimerView.swift │ ├── ExportImport │ ├── ExportView.swift │ └── ImportView.swift │ ├── HelpView │ └── HelpView.swift │ ├── LogRecords │ └── LogsbyConfigurationView.swift │ ├── LogView │ └── LogfileView.swift │ ├── Modifiers │ ├── ButtonStyles.swift │ └── Viewmodifiers.swift │ ├── OutputViews │ ├── DetailsView.swift │ ├── DetailsViewHeading.swift │ ├── OutputRsyncView.swift │ ├── RsyncRealtimeView.swift │ └── URLExtensions.swift │ ├── Profiles │ ├── ProfileView.swift │ └── ProfilesToUpdateView.swift │ ├── ProgressView │ └── SynchronizeProgressView.swift │ ├── Quicktask │ ├── ObservableRsyncOutput.swift │ └── QuicktaskView.swift │ ├── Restore │ ├── RestoreFilesTableView.swift │ └── RestoreTableView.swift │ ├── RsyncParameters │ ├── ArgumentsView.swift │ ├── EditRsyncParameter.swift │ ├── OtherRsyncCommandsView.swift │ ├── RsyncCommandView.swift │ └── RsyncParametersView.swift │ ├── ScheduleView │ ├── AddSchedule.swift │ ├── CalendarDayView.swift │ ├── CalendarMonthView.swift │ ├── TableofNotExeSchedules.swift │ └── TableofSchedules.swift │ ├── Settings │ ├── AboutView.swift │ ├── Environmentsettings.swift │ ├── Logsettings.swift │ ├── RsyncandPathsettings.swift │ ├── SidebarSettingsView.swift │ └── Sshsettings.swift │ ├── Sidebar │ └── SidebarMainView.swift │ ├── Snapshots │ ├── SnapshotListView.swift │ └── SnapshotsView.swift │ ├── Tasks │ ├── CompletedView.swift │ ├── ExecuteEstTasksView.swift │ ├── ExecuteNoEstTasksView.swift │ ├── LogStatsChartView.swift │ ├── SidebarTasksView.swift │ └── TasksView.swift │ ├── TextValues │ ├── EditValueErrorScheme.swift │ └── EditValueScheme.swift │ ├── Tools │ └── Commands │ │ ├── ExecuteCommands.swift │ │ ├── ImportExportCommands.swift │ │ └── SnapshotCommands.swift │ ├── VerifyRemote │ ├── DetailsVerifyView.swift │ ├── ExecutePushPullView.swift │ ├── PushPullCommandView.swift │ ├── PushPullView.swift │ └── VerifyRemoteView.swift │ └── VerifyTasks │ └── VerifyTasks.swift ├── RsyncUIicon.icon ├── Assets │ ├── cloud.png │ └── icon_512x512@2x_1_numbers.png └── icon.json ├── WidgetEstimate ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── WidgetBackground.colorset │ │ └── Contents.json ├── Info.plist ├── WidgetEstimate.entitlements ├── WidgetEstimate.swift └── WidgetEstimateBundle.swift ├── XPC ├── Info.plist ├── XPC.entitlements ├── XPC.swift ├── XPCProtocol.swift └── main.swift ├── exportOptions.plist ├── images ├── background.png └── rsyncui.png └── versionRsyncUI ├── README.md └── versionRsyncUIsonoma.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/.gitignore -------------------------------------------------------------------------------- /.periphery.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/.periphery.yml -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/Credits.rtf -------------------------------------------------------------------------------- /Licence.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/Licence.MD -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/README.md -------------------------------------------------------------------------------- /RsyncUI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RsyncUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RsyncUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /RsyncUI.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /RsyncUI.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /RsyncUI.xcodeproj/xcshareddata/xcschemes/RsyncUI.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI.xcodeproj/xcshareddata/xcschemes/RsyncUI.xcscheme -------------------------------------------------------------------------------- /RsyncUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Info.plist -------------------------------------------------------------------------------- /RsyncUI/Main/RsyncUIApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Main/RsyncUIApp.swift -------------------------------------------------------------------------------- /RsyncUI/Main/RsyncUIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Main/RsyncUIView.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Deeplink/DeeplinkURL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Deeplink/DeeplinkURL.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Execution/CreateHandlers/CreateCommandHandlers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Execution/CreateHandlers/CreateCommandHandlers.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Execution/CreateHandlers/CreateHandlers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Execution/CreateHandlers/CreateHandlers.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Execution/EstimateExecute/EstimateExecute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Execution/EstimateExecute/EstimateExecute.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Execution/EstimateExecute/RemoteDataNumbers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Execution/EstimateExecute/RemoteDataNumbers.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Execution/ProgressDetails/NoEstProgressDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Execution/ProgressDetails/NoEstProgressDetails.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Execution/ProgressDetails/ProgressDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Execution/ProgressDetails/ProgressDetails.swift -------------------------------------------------------------------------------- /RsyncUI/Model/FilesAndCatalogs/AttachedVolumesService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/FilesAndCatalogs/AttachedVolumesService.swift -------------------------------------------------------------------------------- /RsyncUI/Model/FilesAndCatalogs/CatalogForProfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/FilesAndCatalogs/CatalogForProfile.swift -------------------------------------------------------------------------------- /RsyncUI/Model/FilesAndCatalogs/HomeCatalogsService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/FilesAndCatalogs/HomeCatalogsService.swift -------------------------------------------------------------------------------- /RsyncUI/Model/FilesAndCatalogs/Homepath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/FilesAndCatalogs/Homepath.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Global/AlertError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Global/AlertError.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Global/GlobalTimer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Global/GlobalTimer.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Global/ObservableAddConfigurations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Global/ObservableAddConfigurations.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Global/ObservableChartData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Global/ObservableChartData.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Global/ObservableGlobalchangeConfigurations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Global/ObservableGlobalchangeConfigurations.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Global/ObservableLogSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Global/ObservableLogSettings.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Global/ObservableOutputfromrsync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Global/ObservableOutputfromrsync.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Global/ObservableParametersRsync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Global/ObservableParametersRsync.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Global/ObservableProfiles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Global/ObservableProfiles.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Global/ObservableRestore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Global/ObservableRestore.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Global/ObservableRsyncPathSetting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Global/ObservableRsyncPathSetting.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Global/ObservableSSH.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Global/ObservableSSH.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Global/ObservableSchedules.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Global/ObservableSchedules.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Global/ObservableSnapshotData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Global/ObservableSnapshotData.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Global/ObservableVerifyRemotePushPull.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Global/ObservableVerifyRemotePushPull.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Global/RsyncUIconfigurations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Global/RsyncUIconfigurations.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Global/SharedConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Global/SharedConstants.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Global/SharedReference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Global/SharedReference.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Loggdata/Logging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Loggdata/Logging.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Newversion/ActorGetversionofRsyncUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Newversion/ActorGetversionofRsyncUI.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Newversion/CheckfornewversionofRsyncUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Newversion/CheckfornewversionofRsyncUI.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Output/ActorCreateOutputforView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Output/ActorCreateOutputforView.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Output/TrimOutputForRestore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Output/TrimOutputForRestore.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Output/TrimOutputFromRsync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Output/TrimOutputFromRsync.swift -------------------------------------------------------------------------------- /RsyncUI/Model/ParametersRsync/ArgumentsPullRemote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/ParametersRsync/ArgumentsPullRemote.swift -------------------------------------------------------------------------------- /RsyncUI/Model/ParametersRsync/ArgumentsRemoteFileList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/ParametersRsync/ArgumentsRemoteFileList.swift -------------------------------------------------------------------------------- /RsyncUI/Model/ParametersRsync/ArgumentsRestore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/ParametersRsync/ArgumentsRestore.swift -------------------------------------------------------------------------------- /RsyncUI/Model/ParametersRsync/ArgumentsSnapshotRemoteCatalogs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/ParametersRsync/ArgumentsSnapshotRemoteCatalogs.swift -------------------------------------------------------------------------------- /RsyncUI/Model/ParametersRsync/ArgumentsSynchronize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/ParametersRsync/ArgumentsSynchronize.swift -------------------------------------------------------------------------------- /RsyncUI/Model/ParametersRsync/ArgumentsVerify.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/ParametersRsync/ArgumentsVerify.swift -------------------------------------------------------------------------------- /RsyncUI/Model/ParametersRsync/Params.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/ParametersRsync/Params.swift -------------------------------------------------------------------------------- /RsyncUI/Model/ParametersRsync/SSHParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/ParametersRsync/SSHParams.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Process/InterruptProcess.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Process/InterruptProcess.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Process/Rsyncversion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Process/Rsyncversion.swift -------------------------------------------------------------------------------- /RsyncUI/Model/ProcessArguments/ArgumentsSnapshotCreateCatalog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/ProcessArguments/ArgumentsSnapshotCreateCatalog.swift -------------------------------------------------------------------------------- /RsyncUI/Model/ProcessArguments/ArgumentsSnapshotDeleteCatalogs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/ProcessArguments/ArgumentsSnapshotDeleteCatalogs.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Schedules/SchedulesConfigurations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Schedules/SchedulesConfigurations.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Snapshots/DeleteSnapshots.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Snapshots/DeleteSnapshots.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Snapshots/LogRecordSnapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Snapshots/LogRecordSnapshot.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Snapshots/RecordsSnapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Snapshots/RecordsSnapshot.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Snapshots/SnapshotRemoteCatalogs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Snapshots/SnapshotRemoteCatalogs.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Snapshots/Snapshotlogsandcatalogs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Snapshots/Snapshotlogsandcatalogs.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Snapshots/TagSnapshots.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Snapshots/TagSnapshots.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Ssh/SshKeys.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Ssh/SshKeys.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Storage/Actors/ActorLogChartsData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Storage/Actors/ActorLogChartsData.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Storage/Actors/ActorLogToFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Storage/Actors/ActorLogToFile.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Storage/Actors/ActorReadLogRecordsJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Storage/Actors/ActorReadLogRecordsJSON.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Storage/Actors/ActorReadSchedule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Storage/Actors/ActorReadSchedule.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Storage/Actors/ActorReadSynchronizeConfigurationJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Storage/Actors/ActorReadSynchronizeConfigurationJSON.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Storage/Basic/JSON/DecodeLogRecords.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Storage/Basic/JSON/DecodeLogRecords.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Storage/Basic/JSON/DecodeSynchronizeConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Storage/Basic/JSON/DecodeSynchronizeConfiguration.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Storage/Basic/JSON/DecodeUserConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Storage/Basic/JSON/DecodeUserConfiguration.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Storage/Basic/LogRecords.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Storage/Basic/LogRecords.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Storage/Basic/SynchronizeConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Storage/Basic/SynchronizeConfiguration.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Storage/Basic/UpdateConfigurations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Storage/Basic/UpdateConfigurations.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Storage/Basic/UserConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Storage/Basic/UserConfiguration.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Storage/Basic/VerifyConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Storage/Basic/VerifyConfiguration.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Storage/Basic/WidgetURLstrings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Storage/Basic/WidgetURLstrings.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Storage/ExportImport/ReadImportConfigurationsJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Storage/ExportImport/ReadImportConfigurationsJSON.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Storage/ExportImport/WriteExportConfigurationsJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Storage/ExportImport/WriteExportConfigurationsJSON.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Storage/ReadLogRecordsJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Storage/ReadLogRecordsJSON.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Storage/Userconfiguration/ReadUserConfigurationJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Storage/Userconfiguration/ReadUserConfigurationJSON.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Storage/Userconfiguration/WriteUserConfigurationJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Storage/Userconfiguration/WriteUserConfigurationJSON.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Storage/Widgets/WriteWidgetsURLStringsJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Storage/Widgets/WriteWidgetsURLStringsJSON.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Storage/WriteLogRecordsJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Storage/WriteLogRecordsJSON.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Storage/WriteSchedule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Storage/WriteSchedule.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Storage/WriteSynchronizeConfigurationJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Storage/WriteSynchronizeConfigurationJSON.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Utils/Backupconfigfiles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Utils/Backupconfigfiles.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Utils/FileSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Utils/FileSize.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Utils/GetfullpathforRsync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Utils/GetfullpathforRsync.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Utils/Macserialnumber.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Utils/Macserialnumber.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Utils/MyEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Utils/MyEnvironment.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Utils/OtherRsyncCommandtoDisplay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Utils/OtherRsyncCommandtoDisplay.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Utils/PrepareOutputFromRsync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Utils/PrepareOutputFromRsync.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Utils/PushPullCommandtoDisplay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Utils/PushPullCommandtoDisplay.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Utils/ReadAllTasks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Utils/ReadAllTasks.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Utils/Resources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Utils/Resources.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Utils/RsyncCommandtoDisplay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Utils/RsyncCommandtoDisplay.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Utils/SetandValidatepathforrsync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Utils/SetandValidatepathforrsync.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Utils/TCPconnections.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Utils/TCPconnections.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Utils/extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Utils/extensions.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Utils/yudpsocket/ResultYTP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Utils/yudpsocket/ResultYTP.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Utils/yudpsocket/RsyncSwiftUI-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Utils/yudpsocket/RsyncSwiftUI-Bridging-Header.h -------------------------------------------------------------------------------- /RsyncUI/Model/Utils/yudpsocket/Socket.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Utils/yudpsocket/Socket.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Utils/yudpsocket/ytcpsocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Utils/yudpsocket/ytcpsocket.c -------------------------------------------------------------------------------- /RsyncUI/Model/Utils/yudpsocket/ytcpsocket.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Utils/yudpsocket/ytcpsocket.swift -------------------------------------------------------------------------------- /RsyncUI/Model/Utils/yudpsocket/yudpsocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Model/Utils/yudpsocket/yudpsocket.c -------------------------------------------------------------------------------- /RsyncUI/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /RsyncUI/RsyncUI.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/RsyncUI.entitlements -------------------------------------------------------------------------------- /RsyncUI/Views/Add/AddTaskView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Add/AddTaskView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Add/GlobalChangeTaskView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Add/GlobalChangeTaskView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Add/HomeCatalogsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Add/HomeCatalogsView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Add/OpencatalogView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Add/OpencatalogView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Add/VerifyDuplicates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Add/VerifyDuplicates.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Configurations/ConfigurationsTableDataMainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Configurations/ConfigurationsTableDataMainView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Configurations/ConfigurationsTableDataView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Configurations/ConfigurationsTableDataView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Configurations/ConfigurationsTableGlobalChanges.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Configurations/ConfigurationsTableGlobalChanges.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Configurations/ListofTasksAddView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Configurations/ListofTasksAddView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Configurations/ListofTasksMainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Configurations/ListofTasksMainView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Detailsview/EstimateTableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Detailsview/EstimateTableView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Detailsview/EstimationInProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Detailsview/EstimationInProgressView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Detailsview/OneTaskDetailsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Detailsview/OneTaskDetailsView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Detailsview/SummarizedDetailsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Detailsview/SummarizedDetailsView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Detailsview/TimerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Detailsview/TimerView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/ExportImport/ExportView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/ExportImport/ExportView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/ExportImport/ImportView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/ExportImport/ImportView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/HelpView/HelpView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/HelpView/HelpView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/LogRecords/LogsbyConfigurationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/LogRecords/LogsbyConfigurationView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/LogView/LogfileView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/LogView/LogfileView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Modifiers/ButtonStyles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Modifiers/ButtonStyles.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Modifiers/Viewmodifiers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Modifiers/Viewmodifiers.swift -------------------------------------------------------------------------------- /RsyncUI/Views/OutputViews/DetailsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/OutputViews/DetailsView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/OutputViews/DetailsViewHeading.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/OutputViews/DetailsViewHeading.swift -------------------------------------------------------------------------------- /RsyncUI/Views/OutputViews/OutputRsyncView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/OutputViews/OutputRsyncView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/OutputViews/RsyncRealtimeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/OutputViews/RsyncRealtimeView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/OutputViews/URLExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/OutputViews/URLExtensions.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Profiles/ProfileView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Profiles/ProfileView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Profiles/ProfilesToUpdateView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Profiles/ProfilesToUpdateView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/ProgressView/SynchronizeProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/ProgressView/SynchronizeProgressView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Quicktask/ObservableRsyncOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Quicktask/ObservableRsyncOutput.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Quicktask/QuicktaskView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Quicktask/QuicktaskView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Restore/RestoreFilesTableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Restore/RestoreFilesTableView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Restore/RestoreTableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Restore/RestoreTableView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/RsyncParameters/ArgumentsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/RsyncParameters/ArgumentsView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/RsyncParameters/EditRsyncParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/RsyncParameters/EditRsyncParameter.swift -------------------------------------------------------------------------------- /RsyncUI/Views/RsyncParameters/OtherRsyncCommandsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/RsyncParameters/OtherRsyncCommandsView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/RsyncParameters/RsyncCommandView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/RsyncParameters/RsyncCommandView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/RsyncParameters/RsyncParametersView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/RsyncParameters/RsyncParametersView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/ScheduleView/AddSchedule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/ScheduleView/AddSchedule.swift -------------------------------------------------------------------------------- /RsyncUI/Views/ScheduleView/CalendarDayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/ScheduleView/CalendarDayView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/ScheduleView/CalendarMonthView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/ScheduleView/CalendarMonthView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/ScheduleView/TableofNotExeSchedules.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/ScheduleView/TableofNotExeSchedules.swift -------------------------------------------------------------------------------- /RsyncUI/Views/ScheduleView/TableofSchedules.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/ScheduleView/TableofSchedules.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Settings/AboutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Settings/AboutView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Settings/Environmentsettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Settings/Environmentsettings.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Settings/Logsettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Settings/Logsettings.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Settings/RsyncandPathsettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Settings/RsyncandPathsettings.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Settings/SidebarSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Settings/SidebarSettingsView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Settings/Sshsettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Settings/Sshsettings.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Sidebar/SidebarMainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Sidebar/SidebarMainView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Snapshots/SnapshotListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Snapshots/SnapshotListView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Snapshots/SnapshotsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Snapshots/SnapshotsView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Tasks/CompletedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Tasks/CompletedView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Tasks/ExecuteEstTasksView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Tasks/ExecuteEstTasksView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Tasks/ExecuteNoEstTasksView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Tasks/ExecuteNoEstTasksView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Tasks/LogStatsChartView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Tasks/LogStatsChartView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Tasks/SidebarTasksView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Tasks/SidebarTasksView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Tasks/TasksView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Tasks/TasksView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/TextValues/EditValueErrorScheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/TextValues/EditValueErrorScheme.swift -------------------------------------------------------------------------------- /RsyncUI/Views/TextValues/EditValueScheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/TextValues/EditValueScheme.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Tools/Commands/ExecuteCommands.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Tools/Commands/ExecuteCommands.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Tools/Commands/ImportExportCommands.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Tools/Commands/ImportExportCommands.swift -------------------------------------------------------------------------------- /RsyncUI/Views/Tools/Commands/SnapshotCommands.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/Tools/Commands/SnapshotCommands.swift -------------------------------------------------------------------------------- /RsyncUI/Views/VerifyRemote/DetailsVerifyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/VerifyRemote/DetailsVerifyView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/VerifyRemote/ExecutePushPullView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/VerifyRemote/ExecutePushPullView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/VerifyRemote/PushPullCommandView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/VerifyRemote/PushPullCommandView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/VerifyRemote/PushPullView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/VerifyRemote/PushPullView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/VerifyRemote/VerifyRemoteView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/VerifyRemote/VerifyRemoteView.swift -------------------------------------------------------------------------------- /RsyncUI/Views/VerifyTasks/VerifyTasks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUI/Views/VerifyTasks/VerifyTasks.swift -------------------------------------------------------------------------------- /RsyncUIicon.icon/Assets/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUIicon.icon/Assets/cloud.png -------------------------------------------------------------------------------- /RsyncUIicon.icon/Assets/icon_512x512@2x_1_numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUIicon.icon/Assets/icon_512x512@2x_1_numbers.png -------------------------------------------------------------------------------- /RsyncUIicon.icon/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/RsyncUIicon.icon/icon.json -------------------------------------------------------------------------------- /WidgetEstimate/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/WidgetEstimate/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /WidgetEstimate/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/WidgetEstimate/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /WidgetEstimate/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/WidgetEstimate/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /WidgetEstimate/Assets.xcassets/WidgetBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/WidgetEstimate/Assets.xcassets/WidgetBackground.colorset/Contents.json -------------------------------------------------------------------------------- /WidgetEstimate/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/WidgetEstimate/Info.plist -------------------------------------------------------------------------------- /WidgetEstimate/WidgetEstimate.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/WidgetEstimate/WidgetEstimate.entitlements -------------------------------------------------------------------------------- /WidgetEstimate/WidgetEstimate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/WidgetEstimate/WidgetEstimate.swift -------------------------------------------------------------------------------- /WidgetEstimate/WidgetEstimateBundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/WidgetEstimate/WidgetEstimateBundle.swift -------------------------------------------------------------------------------- /XPC/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/XPC/Info.plist -------------------------------------------------------------------------------- /XPC/XPC.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/XPC/XPC.entitlements -------------------------------------------------------------------------------- /XPC/XPC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/XPC/XPC.swift -------------------------------------------------------------------------------- /XPC/XPCProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/XPC/XPCProtocol.swift -------------------------------------------------------------------------------- /XPC/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/XPC/main.swift -------------------------------------------------------------------------------- /exportOptions.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/exportOptions.plist -------------------------------------------------------------------------------- /images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/images/background.png -------------------------------------------------------------------------------- /images/rsyncui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/images/rsyncui.png -------------------------------------------------------------------------------- /versionRsyncUI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/versionRsyncUI/README.md -------------------------------------------------------------------------------- /versionRsyncUI/versionRsyncUIsonoma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsyncOSX/RsyncUI/HEAD/versionRsyncUI/versionRsyncUIsonoma.json --------------------------------------------------------------------------------