├── .gitignore ├── LICENSE ├── PPTests └── PPTests.swift ├── PPUITests ├── PPUITests.swift └── PPUITestsLaunchTests.swift ├── Productivity Pro.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ ├── WorkspaceSettings.xcsettings │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcuserdata │ │ └── till.xcuserdatad │ │ ├── Bookmarks │ │ └── bookmarks.plist │ │ ├── IDEFindNavigatorScopes.plist │ │ └── WorkspaceSettings.xcsettings ├── xcshareddata │ └── xcschemes │ │ └── Productivity Pro.xcscheme └── xcuserdata │ └── till.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── Productivity Pro ├── Analytics │ └── Analytics.swift ├── App.swift ├── AppDelegate.swift ├── AppIcon.icon │ ├── Assets │ │ └── graduationcap.fill@2x.png │ └── icon.json ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── Contents.json │ ├── Images │ │ ├── Contents.json │ │ ├── draumling.imageset │ │ │ ├── Contents.json │ │ │ └── draumling.png │ │ ├── erwachen.imageset │ │ │ ├── Contents.json │ │ │ └── erwachen.png │ │ ├── galotti.imageset │ │ │ ├── Contents.json │ │ │ └── galotti.png │ │ ├── kabale.imageset │ │ │ ├── Contents.json │ │ │ └── kabale.png │ │ ├── kranke.imageset │ │ │ ├── Contents.json │ │ │ └── kranke.png │ │ ├── latin.imageset │ │ │ ├── Contents.json │ │ │ └── latin.png │ │ ├── prozess.imageset │ │ │ ├── Contents.json │ │ │ └── prozess.png │ │ ├── reiter.imageset │ │ │ ├── Contents.json │ │ │ └── reiter.png │ │ └── werther.imageset │ │ │ ├── Contents.json │ │ │ └── werther.png │ └── colors │ │ ├── Contents.json │ │ ├── codecolor.colorset │ │ └── Contents.json │ │ ├── darkBlue.colorset │ │ └── Contents.json │ │ ├── darkGreen.colorset │ │ └── Contents.json │ │ ├── lightBlue.colorset │ │ └── Contents.json │ │ ├── main.colorset │ │ └── Contents.json │ │ ├── pageblack.colorset │ │ └── Contents.json │ │ ├── pagegray.colorset │ │ └── Contents.json │ │ ├── pagewhite.colorset │ │ └── Contents.json │ │ ├── pageyellow.colorset │ │ └── Contents.json │ │ ├── salmon.colorset │ │ └── Contents.json │ │ └── shadow.colorset │ │ └── Contents.json ├── Helper │ ├── FileTypes.swift │ ├── ObjectPicker │ │ ├── ObjectPicker.swift │ │ └── ObjectPickerList.swift │ ├── PPAnglePicker │ │ └── PPAnglePicker.swift │ ├── PPDoubleKeyboard │ │ ├── DKButton.swift │ │ ├── DKModifier.swift │ │ ├── DKView.swift │ │ └── ShortcutModifier.swift │ ├── TemplateView │ │ ├── TemplatePreviewProvider.swift │ │ ├── TemplateView.swift │ │ └── TemplateViewHelper.swift │ ├── Types │ │ ├── Array.swift │ │ ├── BorderStrokeStyle.swift │ │ ├── BundleExtension.swift │ │ ├── Calendar.swift │ │ ├── CodableWrapper.swift │ │ ├── Color.swift │ │ ├── CopyPastePasser.swift │ │ ├── CoreGraphics.swift │ │ ├── Date.swift │ │ ├── Double.swift │ │ ├── DragType.swift │ │ ├── FolderSortingValue.swift │ │ ├── ImageUIImage.swift │ │ ├── MediaType.swift │ │ ├── NSAttributedString.swift │ │ ├── NoteSize.swift │ │ ├── Orientation.swift │ │ ├── OrientationUpdater.swift │ │ ├── OverviewDropDelegate.swift │ │ ├── PDFAnnotation.swift │ │ ├── RuntimeError.swift │ │ ├── SFSymbol.swift │ │ ├── ScrollViewOffset.swift │ │ ├── SidebarPosition.swift │ │ ├── String.swift │ │ ├── TouchType.swift │ │ └── iPhoneInteraction.swift │ └── Views │ │ ├── AdaptiveView.swift │ │ ├── BottomOffset.swift │ │ ├── CameraView.swift │ │ ├── ColorPickerHelper.swift │ │ ├── DragHelper.swift │ │ ├── FormSpacer.swift │ │ ├── GoogleView.swift │ │ ├── Hexagon.swift │ │ ├── ImportTip.swift │ │ ├── IndicatorText.swift │ │ ├── LoadingView.swift │ │ ├── OpenURL.swift │ │ ├── PagingModifier.swift │ │ ├── PrinterHelper.swift │ │ ├── ScannerHelper.swift │ │ ├── Triangle.swift │ │ └── View.swift ├── Info.plist ├── InfoPlist.xcstrings ├── LibraryViews │ ├── BookView │ │ ├── BookView.swift │ │ ├── PDFBookView.swift │ │ └── PDFBookViewClass.swift │ └── VocabularyView │ │ ├── VCardView.swift │ │ ├── VFlipModifier.swift │ │ ├── VocabularyList.swift │ │ ├── VocabularyView.swift │ │ └── VocabularyViewContainer.swift ├── Localizable.xcstrings ├── Models │ ├── Document (Deprecated) │ │ ├── Document.swift │ │ ├── NoteModels │ │ │ ├── ItemModels │ │ │ │ ├── ItemModel.swift │ │ │ │ ├── MediaModel.swift │ │ │ │ ├── ShapeModel.swift │ │ │ │ └── TextFieldModel.swift │ │ │ ├── NoteModel.swift │ │ │ └── PageModel.swift │ │ ├── PPDrawing │ │ │ └── PPLineModel.swift │ │ └── RealityNoteModels │ │ │ └── RealityNoteModel.swift │ ├── ExportableModels │ │ ├── Backup │ │ │ ├── ExportableBackupModel.swift │ │ │ └── ExportableContentObjectModel.swift │ │ └── Note │ │ │ ├── ExportableItemModel.swift │ │ │ ├── ExportableMediaModel.swift │ │ │ ├── ExportableNoteModel.swift │ │ │ ├── ExportablePageModel.swift │ │ │ ├── ExportableShapeModel.swift │ │ │ └── ExportableTextFieldModel.swift │ ├── NoteModels │ │ ├── ContentObject.swift │ │ ├── PPBook │ │ │ └── PPBookModel.swift │ │ ├── PPNote │ │ │ ├── PPItemModel.swift │ │ │ ├── PPItemModels │ │ │ │ ├── PPChartModel.swift │ │ │ │ ├── PPImmersiveObjectModel.swift │ │ │ │ ├── PPLinkModel.swift │ │ │ │ ├── PPMediaModel.swift │ │ │ │ ├── PPMindmapModel.swift │ │ │ │ ├── PPShapeModel.swift │ │ │ │ ├── PPTableModel.swift │ │ │ │ └── PPTextFieldModel.swift │ │ │ ├── PPNoteModel.swift │ │ │ ├── PPPageModel.swift │ │ │ └── Types │ │ │ │ ├── PPCanvasType.swift │ │ │ │ ├── PPItemType.swift │ │ │ │ ├── PPLinkType.swift │ │ │ │ ├── PPPageType.swift │ │ │ │ ├── PPShapeType.swift │ │ │ │ └── PPStrokeType.swift │ │ └── PPVocabulary │ │ │ ├── PPVocabularyItem.swift │ │ │ └── PPVocabularyModel.swift │ └── OrganizationModels │ │ ├── Homework.swift │ │ ├── Role.swift │ │ ├── ScheduleDayModel.swift │ │ ├── ScheduleSubjectView.swift │ │ └── SubjectModel.swift ├── NoteViews │ ├── Calculator │ │ ├── CalculatorButtonView.swift │ │ └── CalculatorView.swift │ ├── ClipboardControl │ │ ├── ClipboardControl.swift │ │ └── ClipboardMethods.swift │ ├── DrawingView │ │ ├── DrawingView │ │ │ ├── DrawingView.swift │ │ │ └── DrawingViewMethods.swift │ │ └── PencilKit │ │ │ ├── PKCoordinator.swift │ │ │ ├── PKObjectRecognition.swift │ │ │ └── PKRepresentable.swift │ ├── InspectorView │ │ ├── ArrangeViews │ │ │ ├── ArrangeGeneralView.swift │ │ │ ├── ArrangeRotationView.swift │ │ │ ├── ArrangeStackingView.swift │ │ │ └── ArrangeView.swift │ │ ├── ContainerViews │ │ │ ├── ArrangeContainerView.swift │ │ │ └── StyleContainerView.swift │ │ ├── InspectorView.swift │ │ └── StyleViews │ │ │ ├── MediaStyleView.swift │ │ │ ├── ShapeStyleView.swift │ │ │ └── TextFieldStyleView.swift │ ├── Item │ │ ├── ItemView.swift │ │ ├── Media │ │ │ ├── MediaItemVContainer.swift │ │ │ └── MediaItemView.swift │ │ ├── PageItemView.swift │ │ ├── Shape │ │ │ ├── ShapeItemVContainer.swift │ │ │ └── ShapeItemView.swift │ │ ├── TextField │ │ │ ├── TextfieldItemVContainer.swift │ │ │ ├── TextfieldItemView.swift │ │ │ ├── UITFCoordinator.swift │ │ │ ├── UITFHelper.swift │ │ │ ├── UITFRepresentable.swift │ │ │ └── UITFUpdate.swift │ │ └── ToolViews │ │ │ ├── DragAnchor.swift │ │ │ ├── DragItemModifier.swift │ │ │ ├── SnapItemView.swift │ │ │ ├── ToolView.swift │ │ │ └── ToolViewMethods.swift │ ├── Note │ │ ├── MediaImport │ │ │ └── MediaImport.swift │ │ ├── NoteView.swift │ │ ├── NoteViewModifier.swift │ │ └── NoteViewModifier │ │ │ ├── NoteViewModalMethods.swift │ │ │ ├── NoteViewModals.swift │ │ │ └── NoteViewToolbar.swift │ ├── Overview │ │ ├── OverviewContainerView.swift │ │ ├── OverviewRow.swift │ │ ├── OverviewRowMethods.swift │ │ ├── OverviewView.swift │ │ └── OverviewViewMethods.swift │ ├── Page │ │ ├── BackgroundViews │ │ │ ├── BackgroundTemplateView.swift │ │ │ ├── DottedView.swift │ │ │ ├── MusicView.swift │ │ │ ├── RenderedPDF.swift │ │ │ ├── RuledLargeView.swift │ │ │ ├── RuledView.swift │ │ │ └── SquaredView.swift │ │ ├── PageBackgroundPDF.swift │ │ ├── PageBackgroundScan.swift │ │ ├── PageBackgroundView.swift │ │ ├── PageView.swift │ │ └── PageViewMethods.swift │ ├── PagingView │ │ ├── PVCCoordinator.swift │ │ ├── PVCUpdate.swift │ │ ├── PagingViewController.swift │ │ └── PagingViewModel.swift │ ├── ScrollViewContainer │ │ ├── PPScrollView.swift │ │ ├── PPScrollViewCoordinator.swift │ │ ├── PPScrollViewUpdate.swift │ │ └── ScrollViewContainer.swift │ ├── ShareViews │ │ ├── SharePDFView.swift │ │ ├── ShareProView.swift │ │ └── ShareQRPDFView │ │ │ ├── ShareQRPDFMethods.swift │ │ │ ├── ShareQRPDFModels.swift │ │ │ └── ShareQRPDFView.swift │ └── Toolbar │ │ ├── InsertAction.swift │ │ ├── InspectorAction.swift │ │ ├── MediaButton.swift │ │ ├── NoteToolbar.swift │ │ ├── PageActions.swift │ │ ├── PencilAction.swift │ │ ├── ShapesButton.swift │ │ ├── TextFieldButton.swift │ │ ├── ToolbarMethods.swift │ │ └── UndoActions.swift ├── Premium.storekit ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── PrivacyInfo.xcprivacy ├── Productivity Pro.entitlements ├── Resources │ ├── dräumling_raabe.pdf │ ├── emiliagalotti_lessing.pdf │ ├── fruehling_wedekind.pdf │ ├── kabaleundliebe_schiller.pdf │ ├── kranker_moliere.pdf │ ├── latinvocabulary.json │ ├── prozess_kafka.pdf │ ├── schimmelreiter_storm.pdf │ └── werther_goethe.pdf ├── URExtensions │ ├── PPPageRedo.swift │ ├── PPPageStore.swift │ └── PPPageUndo.swift ├── VUModels │ ├── VUModel.swift │ └── VUModifier.swift ├── ViewModels │ ├── CalculatorModel.swift │ ├── ExportManager.swift │ ├── ImportManager.swift │ ├── MDConverter.swift │ ├── NavigationManager.swift │ ├── NotificationManager.swift │ ├── PDFManager.swift │ ├── PositionManager.swift │ ├── StackingManager.swift │ ├── SubviewManager.swift │ └── ToolManager.swift └── Views │ ├── ContentView.swift │ ├── FileSystemView │ ├── ContentObjectLink.swift │ ├── FileSystemView.swift │ ├── FolderView │ │ └── AddFolderView.swift │ ├── ObjectView │ │ ├── ObjectView.swift │ │ ├── ObjectViewBookLink.swift │ │ ├── ObjectViewFileLink.swift │ │ ├── ObjectViewFolderLink.swift │ │ ├── ObjectViewMethods │ │ │ ├── ImportPro.swift │ │ │ ├── ImportProNote.swift │ │ │ └── ObjectViewMethods.swift │ │ ├── ObjectViewToolbar.swift │ │ ├── ObjectViewVocabularyLink.swift │ │ └── RenameContentObject.swift │ └── TrashView │ │ ├── TrashView.swift │ │ └── TrashViewItem.swift │ ├── HomeworkView │ ├── HAdditView.swift │ ├── HAdditViewMethods.swift │ ├── HomeworkItem.swift │ ├── HomeworkList.swift │ ├── HomeworkListMethods.swift │ └── HomeworkView.swift │ ├── LIAPView │ ├── LIAPBookCard.swift │ ├── LIAPBooks.swift │ ├── LIAPMethods.swift │ ├── LIAPView.swift │ └── LIAPVocabularyCard.swift │ ├── NoteMenu │ ├── CreateNoteView.swift │ └── CreateViewMethods.swift │ ├── ScheduleView │ ├── ScheduleAddSubject.swift │ ├── ScheduleColumn.swift │ ├── ScheduleView.swift │ └── ScheduleViewContainer.swift │ ├── SettingsView │ ├── BackupMethods.swift │ ├── BackupSettings.swift │ ├── PPSettingsView.swift │ └── PPSettingsViewHelper.swift │ ├── ShareMenu │ └── ShareMenu.swift │ └── Subjects │ ├── AddSubject.swift │ ├── SubjectSettings.swift │ └── SubjectSettingsRow.swift ├── README.md └── preview.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/LICENSE -------------------------------------------------------------------------------- /PPTests/PPTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/PPTests/PPTests.swift -------------------------------------------------------------------------------- /PPUITests/PPUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/PPUITests/PPUITests.swift -------------------------------------------------------------------------------- /PPUITests/PPUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/PPUITests/PPUITestsLaunchTests.swift -------------------------------------------------------------------------------- /Productivity Pro.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Productivity Pro.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Productivity Pro.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Productivity Pro.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Productivity Pro.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Productivity Pro.xcodeproj/project.xcworkspace/xcuserdata/till.xcuserdatad/Bookmarks/bookmarks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro.xcodeproj/project.xcworkspace/xcuserdata/till.xcuserdatad/Bookmarks/bookmarks.plist -------------------------------------------------------------------------------- /Productivity Pro.xcodeproj/project.xcworkspace/xcuserdata/till.xcuserdatad/IDEFindNavigatorScopes.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro.xcodeproj/project.xcworkspace/xcuserdata/till.xcuserdatad/IDEFindNavigatorScopes.plist -------------------------------------------------------------------------------- /Productivity Pro.xcodeproj/project.xcworkspace/xcuserdata/till.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro.xcodeproj/project.xcworkspace/xcuserdata/till.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Productivity Pro.xcodeproj/xcshareddata/xcschemes/Productivity Pro.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro.xcodeproj/xcshareddata/xcschemes/Productivity Pro.xcscheme -------------------------------------------------------------------------------- /Productivity Pro.xcodeproj/xcuserdata/till.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro.xcodeproj/xcuserdata/till.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Productivity Pro.xcodeproj/xcuserdata/till.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro.xcodeproj/xcuserdata/till.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Productivity Pro/Analytics/Analytics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Analytics/Analytics.swift -------------------------------------------------------------------------------- /Productivity Pro/App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/App.swift -------------------------------------------------------------------------------- /Productivity Pro/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/AppDelegate.swift -------------------------------------------------------------------------------- /Productivity Pro/AppIcon.icon/Assets/graduationcap.fill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/AppIcon.icon/Assets/graduationcap.fill@2x.png -------------------------------------------------------------------------------- /Productivity Pro/AppIcon.icon/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/AppIcon.icon/icon.json -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/Images/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/Images/Contents.json -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/Images/draumling.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/Images/draumling.imageset/Contents.json -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/Images/draumling.imageset/draumling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/Images/draumling.imageset/draumling.png -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/Images/erwachen.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/Images/erwachen.imageset/Contents.json -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/Images/erwachen.imageset/erwachen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/Images/erwachen.imageset/erwachen.png -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/Images/galotti.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/Images/galotti.imageset/Contents.json -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/Images/galotti.imageset/galotti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/Images/galotti.imageset/galotti.png -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/Images/kabale.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/Images/kabale.imageset/Contents.json -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/Images/kabale.imageset/kabale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/Images/kabale.imageset/kabale.png -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/Images/kranke.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/Images/kranke.imageset/Contents.json -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/Images/kranke.imageset/kranke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/Images/kranke.imageset/kranke.png -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/Images/latin.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/Images/latin.imageset/Contents.json -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/Images/latin.imageset/latin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/Images/latin.imageset/latin.png -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/Images/prozess.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/Images/prozess.imageset/Contents.json -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/Images/prozess.imageset/prozess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/Images/prozess.imageset/prozess.png -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/Images/reiter.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/Images/reiter.imageset/Contents.json -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/Images/reiter.imageset/reiter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/Images/reiter.imageset/reiter.png -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/Images/werther.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/Images/werther.imageset/Contents.json -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/Images/werther.imageset/werther.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/Images/werther.imageset/werther.png -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/colors/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/colors/Contents.json -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/colors/codecolor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/colors/codecolor.colorset/Contents.json -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/colors/darkBlue.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/colors/darkBlue.colorset/Contents.json -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/colors/darkGreen.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/colors/darkGreen.colorset/Contents.json -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/colors/lightBlue.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/colors/lightBlue.colorset/Contents.json -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/colors/main.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/colors/main.colorset/Contents.json -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/colors/pageblack.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/colors/pageblack.colorset/Contents.json -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/colors/pagegray.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/colors/pagegray.colorset/Contents.json -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/colors/pagewhite.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/colors/pagewhite.colorset/Contents.json -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/colors/pageyellow.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/colors/pageyellow.colorset/Contents.json -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/colors/salmon.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/colors/salmon.colorset/Contents.json -------------------------------------------------------------------------------- /Productivity Pro/Assets.xcassets/colors/shadow.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Assets.xcassets/colors/shadow.colorset/Contents.json -------------------------------------------------------------------------------- /Productivity Pro/Helper/FileTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/FileTypes.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/ObjectPicker/ObjectPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/ObjectPicker/ObjectPicker.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/ObjectPicker/ObjectPickerList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/ObjectPicker/ObjectPickerList.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/PPAnglePicker/PPAnglePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/PPAnglePicker/PPAnglePicker.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/PPDoubleKeyboard/DKButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/PPDoubleKeyboard/DKButton.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/PPDoubleKeyboard/DKModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/PPDoubleKeyboard/DKModifier.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/PPDoubleKeyboard/DKView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/PPDoubleKeyboard/DKView.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/PPDoubleKeyboard/ShortcutModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/PPDoubleKeyboard/ShortcutModifier.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/TemplateView/TemplatePreviewProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/TemplateView/TemplatePreviewProvider.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/TemplateView/TemplateView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/TemplateView/TemplateView.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/TemplateView/TemplateViewHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/TemplateView/TemplateViewHelper.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Types/Array.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Types/Array.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Types/BorderStrokeStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Types/BorderStrokeStyle.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Types/BundleExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Types/BundleExtension.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Types/Calendar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Types/Calendar.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Types/CodableWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Types/CodableWrapper.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Types/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Types/Color.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Types/CopyPastePasser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Types/CopyPastePasser.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Types/CoreGraphics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Types/CoreGraphics.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Types/Date.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Types/Date.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Types/Double.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Types/Double.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Types/DragType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Types/DragType.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Types/FolderSortingValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Types/FolderSortingValue.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Types/ImageUIImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Types/ImageUIImage.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Types/MediaType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Types/MediaType.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Types/NSAttributedString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Types/NSAttributedString.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Types/NoteSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Types/NoteSize.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Types/Orientation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Types/Orientation.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Types/OrientationUpdater.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Types/OrientationUpdater.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Types/OverviewDropDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Types/OverviewDropDelegate.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Types/PDFAnnotation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Types/PDFAnnotation.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Types/RuntimeError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Types/RuntimeError.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Types/SFSymbol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Types/SFSymbol.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Types/ScrollViewOffset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Types/ScrollViewOffset.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Types/SidebarPosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Types/SidebarPosition.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Types/String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Types/String.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Types/TouchType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Types/TouchType.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Types/iPhoneInteraction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Types/iPhoneInteraction.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Views/AdaptiveView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Views/AdaptiveView.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Views/BottomOffset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Views/BottomOffset.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Views/CameraView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Views/CameraView.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Views/ColorPickerHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Views/ColorPickerHelper.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Views/DragHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Views/DragHelper.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Views/FormSpacer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Views/FormSpacer.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Views/GoogleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Views/GoogleView.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Views/Hexagon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Views/Hexagon.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Views/ImportTip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Views/ImportTip.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Views/IndicatorText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Views/IndicatorText.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Views/LoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Views/LoadingView.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Views/OpenURL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Views/OpenURL.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Views/PagingModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Views/PagingModifier.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Views/PrinterHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Views/PrinterHelper.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Views/ScannerHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Views/ScannerHelper.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Views/Triangle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Views/Triangle.swift -------------------------------------------------------------------------------- /Productivity Pro/Helper/Views/View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Helper/Views/View.swift -------------------------------------------------------------------------------- /Productivity Pro/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Info.plist -------------------------------------------------------------------------------- /Productivity Pro/InfoPlist.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/InfoPlist.xcstrings -------------------------------------------------------------------------------- /Productivity Pro/LibraryViews/BookView/BookView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/LibraryViews/BookView/BookView.swift -------------------------------------------------------------------------------- /Productivity Pro/LibraryViews/BookView/PDFBookView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/LibraryViews/BookView/PDFBookView.swift -------------------------------------------------------------------------------- /Productivity Pro/LibraryViews/BookView/PDFBookViewClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/LibraryViews/BookView/PDFBookViewClass.swift -------------------------------------------------------------------------------- /Productivity Pro/LibraryViews/VocabularyView/VCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/LibraryViews/VocabularyView/VCardView.swift -------------------------------------------------------------------------------- /Productivity Pro/LibraryViews/VocabularyView/VFlipModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/LibraryViews/VocabularyView/VFlipModifier.swift -------------------------------------------------------------------------------- /Productivity Pro/LibraryViews/VocabularyView/VocabularyList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/LibraryViews/VocabularyView/VocabularyList.swift -------------------------------------------------------------------------------- /Productivity Pro/LibraryViews/VocabularyView/VocabularyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/LibraryViews/VocabularyView/VocabularyView.swift -------------------------------------------------------------------------------- /Productivity Pro/LibraryViews/VocabularyView/VocabularyViewContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/LibraryViews/VocabularyView/VocabularyViewContainer.swift -------------------------------------------------------------------------------- /Productivity Pro/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Localizable.xcstrings -------------------------------------------------------------------------------- /Productivity Pro/Models/Document (Deprecated)/Document.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/Document (Deprecated)/Document.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/Document (Deprecated)/NoteModels/ItemModels/ItemModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/Document (Deprecated)/NoteModels/ItemModels/ItemModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/Document (Deprecated)/NoteModels/ItemModels/MediaModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/Document (Deprecated)/NoteModels/ItemModels/MediaModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/Document (Deprecated)/NoteModels/ItemModels/ShapeModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/Document (Deprecated)/NoteModels/ItemModels/ShapeModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/Document (Deprecated)/NoteModels/ItemModels/TextFieldModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/Document (Deprecated)/NoteModels/ItemModels/TextFieldModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/Document (Deprecated)/NoteModels/NoteModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/Document (Deprecated)/NoteModels/NoteModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/Document (Deprecated)/NoteModels/PageModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/Document (Deprecated)/NoteModels/PageModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/Document (Deprecated)/PPDrawing/PPLineModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/Document (Deprecated)/PPDrawing/PPLineModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/Document (Deprecated)/RealityNoteModels/RealityNoteModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/Document (Deprecated)/RealityNoteModels/RealityNoteModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/ExportableModels/Backup/ExportableBackupModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/ExportableModels/Backup/ExportableBackupModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/ExportableModels/Backup/ExportableContentObjectModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/ExportableModels/Backup/ExportableContentObjectModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/ExportableModels/Note/ExportableItemModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/ExportableModels/Note/ExportableItemModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/ExportableModels/Note/ExportableMediaModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/ExportableModels/Note/ExportableMediaModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/ExportableModels/Note/ExportableNoteModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/ExportableModels/Note/ExportableNoteModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/ExportableModels/Note/ExportablePageModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/ExportableModels/Note/ExportablePageModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/ExportableModels/Note/ExportableShapeModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/ExportableModels/Note/ExportableShapeModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/ExportableModels/Note/ExportableTextFieldModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/ExportableModels/Note/ExportableTextFieldModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/NoteModels/ContentObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/NoteModels/ContentObject.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/NoteModels/PPBook/PPBookModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/NoteModels/PPBook/PPBookModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/NoteModels/PPNote/PPItemModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/NoteModels/PPNote/PPItemModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/NoteModels/PPNote/PPItemModels/PPChartModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/NoteModels/PPNote/PPItemModels/PPChartModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/NoteModels/PPNote/PPItemModels/PPImmersiveObjectModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/NoteModels/PPNote/PPItemModels/PPImmersiveObjectModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/NoteModels/PPNote/PPItemModels/PPLinkModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/NoteModels/PPNote/PPItemModels/PPLinkModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/NoteModels/PPNote/PPItemModels/PPMediaModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/NoteModels/PPNote/PPItemModels/PPMediaModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/NoteModels/PPNote/PPItemModels/PPMindmapModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/NoteModels/PPNote/PPItemModels/PPMindmapModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/NoteModels/PPNote/PPItemModels/PPShapeModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/NoteModels/PPNote/PPItemModels/PPShapeModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/NoteModels/PPNote/PPItemModels/PPTableModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/NoteModels/PPNote/PPItemModels/PPTableModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/NoteModels/PPNote/PPItemModels/PPTextFieldModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/NoteModels/PPNote/PPItemModels/PPTextFieldModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/NoteModels/PPNote/PPNoteModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/NoteModels/PPNote/PPNoteModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/NoteModels/PPNote/PPPageModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/NoteModels/PPNote/PPPageModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/NoteModels/PPNote/Types/PPCanvasType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/NoteModels/PPNote/Types/PPCanvasType.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/NoteModels/PPNote/Types/PPItemType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/NoteModels/PPNote/Types/PPItemType.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/NoteModels/PPNote/Types/PPLinkType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/NoteModels/PPNote/Types/PPLinkType.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/NoteModels/PPNote/Types/PPPageType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/NoteModels/PPNote/Types/PPPageType.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/NoteModels/PPNote/Types/PPShapeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/NoteModels/PPNote/Types/PPShapeType.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/NoteModels/PPNote/Types/PPStrokeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/NoteModels/PPNote/Types/PPStrokeType.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/NoteModels/PPVocabulary/PPVocabularyItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/NoteModels/PPVocabulary/PPVocabularyItem.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/NoteModels/PPVocabulary/PPVocabularyModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/NoteModels/PPVocabulary/PPVocabularyModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/OrganizationModels/Homework.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/OrganizationModels/Homework.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/OrganizationModels/Role.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/OrganizationModels/Role.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/OrganizationModels/ScheduleDayModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/OrganizationModels/ScheduleDayModel.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/OrganizationModels/ScheduleSubjectView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/OrganizationModels/ScheduleSubjectView.swift -------------------------------------------------------------------------------- /Productivity Pro/Models/OrganizationModels/SubjectModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Models/OrganizationModels/SubjectModel.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Calculator/CalculatorButtonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Calculator/CalculatorButtonView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Calculator/CalculatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Calculator/CalculatorView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/ClipboardControl/ClipboardControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/ClipboardControl/ClipboardControl.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/ClipboardControl/ClipboardMethods.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/ClipboardControl/ClipboardMethods.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/DrawingView/DrawingView/DrawingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/DrawingView/DrawingView/DrawingView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/DrawingView/DrawingView/DrawingViewMethods.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/DrawingView/DrawingView/DrawingViewMethods.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/DrawingView/PencilKit/PKCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/DrawingView/PencilKit/PKCoordinator.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/DrawingView/PencilKit/PKObjectRecognition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/DrawingView/PencilKit/PKObjectRecognition.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/DrawingView/PencilKit/PKRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/DrawingView/PencilKit/PKRepresentable.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/InspectorView/ArrangeViews/ArrangeGeneralView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/InspectorView/ArrangeViews/ArrangeGeneralView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/InspectorView/ArrangeViews/ArrangeRotationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/InspectorView/ArrangeViews/ArrangeRotationView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/InspectorView/ArrangeViews/ArrangeStackingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/InspectorView/ArrangeViews/ArrangeStackingView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/InspectorView/ArrangeViews/ArrangeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/InspectorView/ArrangeViews/ArrangeView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/InspectorView/ContainerViews/ArrangeContainerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/InspectorView/ContainerViews/ArrangeContainerView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/InspectorView/ContainerViews/StyleContainerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/InspectorView/ContainerViews/StyleContainerView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/InspectorView/InspectorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/InspectorView/InspectorView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/InspectorView/StyleViews/MediaStyleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/InspectorView/StyleViews/MediaStyleView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/InspectorView/StyleViews/ShapeStyleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/InspectorView/StyleViews/ShapeStyleView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/InspectorView/StyleViews/TextFieldStyleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/InspectorView/StyleViews/TextFieldStyleView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Item/ItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Item/ItemView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Item/Media/MediaItemVContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Item/Media/MediaItemVContainer.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Item/Media/MediaItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Item/Media/MediaItemView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Item/PageItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Item/PageItemView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Item/Shape/ShapeItemVContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Item/Shape/ShapeItemVContainer.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Item/Shape/ShapeItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Item/Shape/ShapeItemView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Item/TextField/TextfieldItemVContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Item/TextField/TextfieldItemVContainer.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Item/TextField/TextfieldItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Item/TextField/TextfieldItemView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Item/TextField/UITFCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Item/TextField/UITFCoordinator.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Item/TextField/UITFHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Item/TextField/UITFHelper.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Item/TextField/UITFRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Item/TextField/UITFRepresentable.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Item/TextField/UITFUpdate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Item/TextField/UITFUpdate.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Item/ToolViews/DragAnchor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Item/ToolViews/DragAnchor.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Item/ToolViews/DragItemModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Item/ToolViews/DragItemModifier.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Item/ToolViews/SnapItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Item/ToolViews/SnapItemView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Item/ToolViews/ToolView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Item/ToolViews/ToolView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Item/ToolViews/ToolViewMethods.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Item/ToolViews/ToolViewMethods.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Note/MediaImport/MediaImport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Note/MediaImport/MediaImport.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Note/NoteView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Note/NoteView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Note/NoteViewModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Note/NoteViewModifier.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Note/NoteViewModifier/NoteViewModalMethods.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Note/NoteViewModifier/NoteViewModalMethods.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Note/NoteViewModifier/NoteViewModals.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Note/NoteViewModifier/NoteViewModals.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Note/NoteViewModifier/NoteViewToolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Note/NoteViewModifier/NoteViewToolbar.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Overview/OverviewContainerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Overview/OverviewContainerView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Overview/OverviewRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Overview/OverviewRow.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Overview/OverviewRowMethods.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Overview/OverviewRowMethods.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Overview/OverviewView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Overview/OverviewView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Overview/OverviewViewMethods.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Overview/OverviewViewMethods.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Page/BackgroundViews/BackgroundTemplateView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Page/BackgroundViews/BackgroundTemplateView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Page/BackgroundViews/DottedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Page/BackgroundViews/DottedView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Page/BackgroundViews/MusicView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Page/BackgroundViews/MusicView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Page/BackgroundViews/RenderedPDF.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Page/BackgroundViews/RenderedPDF.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Page/BackgroundViews/RuledLargeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Page/BackgroundViews/RuledLargeView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Page/BackgroundViews/RuledView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Page/BackgroundViews/RuledView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Page/BackgroundViews/SquaredView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Page/BackgroundViews/SquaredView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Page/PageBackgroundPDF.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Page/PageBackgroundPDF.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Page/PageBackgroundScan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Page/PageBackgroundScan.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Page/PageBackgroundView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Page/PageBackgroundView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Page/PageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Page/PageView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Page/PageViewMethods.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Page/PageViewMethods.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/PagingView/PVCCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/PagingView/PVCCoordinator.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/PagingView/PVCUpdate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/PagingView/PVCUpdate.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/PagingView/PagingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/PagingView/PagingViewController.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/PagingView/PagingViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/PagingView/PagingViewModel.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/ScrollViewContainer/PPScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/ScrollViewContainer/PPScrollView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/ScrollViewContainer/PPScrollViewCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/ScrollViewContainer/PPScrollViewCoordinator.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/ScrollViewContainer/PPScrollViewUpdate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/ScrollViewContainer/PPScrollViewUpdate.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/ScrollViewContainer/ScrollViewContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/ScrollViewContainer/ScrollViewContainer.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/ShareViews/SharePDFView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/ShareViews/SharePDFView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/ShareViews/ShareProView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/ShareViews/ShareProView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/ShareViews/ShareQRPDFView/ShareQRPDFMethods.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/ShareViews/ShareQRPDFView/ShareQRPDFMethods.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/ShareViews/ShareQRPDFView/ShareQRPDFModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/ShareViews/ShareQRPDFView/ShareQRPDFModels.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/ShareViews/ShareQRPDFView/ShareQRPDFView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/ShareViews/ShareQRPDFView/ShareQRPDFView.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Toolbar/InsertAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Toolbar/InsertAction.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Toolbar/InspectorAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Toolbar/InspectorAction.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Toolbar/MediaButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Toolbar/MediaButton.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Toolbar/NoteToolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Toolbar/NoteToolbar.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Toolbar/PageActions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Toolbar/PageActions.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Toolbar/PencilAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Toolbar/PencilAction.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Toolbar/ShapesButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Toolbar/ShapesButton.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Toolbar/TextFieldButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Toolbar/TextFieldButton.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Toolbar/ToolbarMethods.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Toolbar/ToolbarMethods.swift -------------------------------------------------------------------------------- /Productivity Pro/NoteViews/Toolbar/UndoActions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/NoteViews/Toolbar/UndoActions.swift -------------------------------------------------------------------------------- /Productivity Pro/Premium.storekit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Premium.storekit -------------------------------------------------------------------------------- /Productivity Pro/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Productivity Pro/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /Productivity Pro/Productivity Pro.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Productivity Pro.entitlements -------------------------------------------------------------------------------- /Productivity Pro/Resources/dräumling_raabe.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Resources/dräumling_raabe.pdf -------------------------------------------------------------------------------- /Productivity Pro/Resources/emiliagalotti_lessing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Resources/emiliagalotti_lessing.pdf -------------------------------------------------------------------------------- /Productivity Pro/Resources/fruehling_wedekind.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Resources/fruehling_wedekind.pdf -------------------------------------------------------------------------------- /Productivity Pro/Resources/kabaleundliebe_schiller.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Resources/kabaleundliebe_schiller.pdf -------------------------------------------------------------------------------- /Productivity Pro/Resources/kranker_moliere.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Resources/kranker_moliere.pdf -------------------------------------------------------------------------------- /Productivity Pro/Resources/latinvocabulary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Resources/latinvocabulary.json -------------------------------------------------------------------------------- /Productivity Pro/Resources/prozess_kafka.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Resources/prozess_kafka.pdf -------------------------------------------------------------------------------- /Productivity Pro/Resources/schimmelreiter_storm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Resources/schimmelreiter_storm.pdf -------------------------------------------------------------------------------- /Productivity Pro/Resources/werther_goethe.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Resources/werther_goethe.pdf -------------------------------------------------------------------------------- /Productivity Pro/URExtensions/PPPageRedo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/URExtensions/PPPageRedo.swift -------------------------------------------------------------------------------- /Productivity Pro/URExtensions/PPPageStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/URExtensions/PPPageStore.swift -------------------------------------------------------------------------------- /Productivity Pro/URExtensions/PPPageUndo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/URExtensions/PPPageUndo.swift -------------------------------------------------------------------------------- /Productivity Pro/VUModels/VUModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/VUModels/VUModel.swift -------------------------------------------------------------------------------- /Productivity Pro/VUModels/VUModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/VUModels/VUModifier.swift -------------------------------------------------------------------------------- /Productivity Pro/ViewModels/CalculatorModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/ViewModels/CalculatorModel.swift -------------------------------------------------------------------------------- /Productivity Pro/ViewModels/ExportManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/ViewModels/ExportManager.swift -------------------------------------------------------------------------------- /Productivity Pro/ViewModels/ImportManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/ViewModels/ImportManager.swift -------------------------------------------------------------------------------- /Productivity Pro/ViewModels/MDConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/ViewModels/MDConverter.swift -------------------------------------------------------------------------------- /Productivity Pro/ViewModels/NavigationManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/ViewModels/NavigationManager.swift -------------------------------------------------------------------------------- /Productivity Pro/ViewModels/NotificationManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/ViewModels/NotificationManager.swift -------------------------------------------------------------------------------- /Productivity Pro/ViewModels/PDFManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/ViewModels/PDFManager.swift -------------------------------------------------------------------------------- /Productivity Pro/ViewModels/PositionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/ViewModels/PositionManager.swift -------------------------------------------------------------------------------- /Productivity Pro/ViewModels/StackingManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/ViewModels/StackingManager.swift -------------------------------------------------------------------------------- /Productivity Pro/ViewModels/SubviewManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/ViewModels/SubviewManager.swift -------------------------------------------------------------------------------- /Productivity Pro/ViewModels/ToolManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/ViewModels/ToolManager.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/ContentView.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/FileSystemView/ContentObjectLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/FileSystemView/ContentObjectLink.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/FileSystemView/FileSystemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/FileSystemView/FileSystemView.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/FileSystemView/FolderView/AddFolderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/FileSystemView/FolderView/AddFolderView.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/FileSystemView/ObjectView/ObjectView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/FileSystemView/ObjectView/ObjectView.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/FileSystemView/ObjectView/ObjectViewBookLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/FileSystemView/ObjectView/ObjectViewBookLink.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/FileSystemView/ObjectView/ObjectViewFileLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/FileSystemView/ObjectView/ObjectViewFileLink.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/FileSystemView/ObjectView/ObjectViewFolderLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/FileSystemView/ObjectView/ObjectViewFolderLink.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/FileSystemView/ObjectView/ObjectViewMethods/ImportPro.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/FileSystemView/ObjectView/ObjectViewMethods/ImportPro.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/FileSystemView/ObjectView/ObjectViewMethods/ImportProNote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/FileSystemView/ObjectView/ObjectViewMethods/ImportProNote.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/FileSystemView/ObjectView/ObjectViewMethods/ObjectViewMethods.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/FileSystemView/ObjectView/ObjectViewMethods/ObjectViewMethods.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/FileSystemView/ObjectView/ObjectViewToolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/FileSystemView/ObjectView/ObjectViewToolbar.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/FileSystemView/ObjectView/ObjectViewVocabularyLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/FileSystemView/ObjectView/ObjectViewVocabularyLink.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/FileSystemView/ObjectView/RenameContentObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/FileSystemView/ObjectView/RenameContentObject.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/FileSystemView/TrashView/TrashView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/FileSystemView/TrashView/TrashView.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/FileSystemView/TrashView/TrashViewItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/FileSystemView/TrashView/TrashViewItem.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/HomeworkView/HAdditView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/HomeworkView/HAdditView.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/HomeworkView/HAdditViewMethods.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/HomeworkView/HAdditViewMethods.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/HomeworkView/HomeworkItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/HomeworkView/HomeworkItem.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/HomeworkView/HomeworkList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/HomeworkView/HomeworkList.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/HomeworkView/HomeworkListMethods.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/HomeworkView/HomeworkListMethods.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/HomeworkView/HomeworkView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/HomeworkView/HomeworkView.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/LIAPView/LIAPBookCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/LIAPView/LIAPBookCard.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/LIAPView/LIAPBooks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/LIAPView/LIAPBooks.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/LIAPView/LIAPMethods.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/LIAPView/LIAPMethods.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/LIAPView/LIAPView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/LIAPView/LIAPView.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/LIAPView/LIAPVocabularyCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/LIAPView/LIAPVocabularyCard.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/NoteMenu/CreateNoteView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/NoteMenu/CreateNoteView.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/NoteMenu/CreateViewMethods.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/NoteMenu/CreateViewMethods.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/ScheduleView/ScheduleAddSubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/ScheduleView/ScheduleAddSubject.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/ScheduleView/ScheduleColumn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/ScheduleView/ScheduleColumn.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/ScheduleView/ScheduleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/ScheduleView/ScheduleView.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/ScheduleView/ScheduleViewContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/ScheduleView/ScheduleViewContainer.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/SettingsView/BackupMethods.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/SettingsView/BackupMethods.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/SettingsView/BackupSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/SettingsView/BackupSettings.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/SettingsView/PPSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/SettingsView/PPSettingsView.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/SettingsView/PPSettingsViewHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/SettingsView/PPSettingsViewHelper.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/ShareMenu/ShareMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/ShareMenu/ShareMenu.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/Subjects/AddSubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/Subjects/AddSubject.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/Subjects/SubjectSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/Subjects/SubjectSettings.swift -------------------------------------------------------------------------------- /Productivity Pro/Views/Subjects/SubjectSettingsRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/Productivity Pro/Views/Subjects/SubjectSettingsRow.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/README.md -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoobit/Productivity-Pro/HEAD/preview.png --------------------------------------------------------------------------------