├── .gitignore ├── CHANGELOG.en.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.en.md ├── README.md ├── SECURITY.md ├── analysis_options.yaml ├── analysis_options_strict.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── didichou │ │ │ │ └── inkroot │ │ │ │ ├── AlarmReceiver.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ └── ReminderActivity.kt │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_notification.png │ │ │ ├── drawable-mdpi │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_notification.png │ │ │ ├── drawable-night-v21 │ │ │ ├── background.png │ │ │ └── launch_background.xml │ │ │ ├── drawable-night │ │ │ ├── background.png │ │ │ └── launch_background.xml │ │ │ ├── drawable-v21 │ │ │ ├── background.png │ │ │ └── launch_background.xml │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_notification.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_notification.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_notification.png │ │ │ ├── drawable │ │ │ ├── background.png │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night-v31 │ │ │ └── styles.xml │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ ├── values-v31 │ │ │ └── styles.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ ├── file_paths.xml │ │ │ └── flutter_image_picker_file_paths.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── inkroot-new-cert.der └── settings.gradle ├── assets ├── fonts │ ├── SF-Mono-Regular.ttf │ ├── SF-Pro-Display-Bold.ttf │ ├── SF-Pro-Display-Light.ttf │ ├── SF-Pro-Display-Medium.ttf │ └── SF-Pro-Display-Regular.ttf └── images │ ├── black2logo.png │ └── logo.png ├── docs ├── README.md ├── api │ ├── README.md │ └── README.zh.md ├── architecture │ ├── README.md │ └── adr │ │ ├── 001-use-provider-for-state-management.md │ │ ├── README.md │ │ └── template.md ├── development │ ├── debugging.md │ └── troubleshooting.md └── user-guide │ ├── README.md │ └── getting-started.md ├── flutter_native_splash.yaml ├── ios ├── .gitignore ├── ExportOptions.plist ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchBackground.imageset │ │ │ ├── Contents.json │ │ │ ├── background.png │ │ │ └── darkbackground.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── PrivacyInfo.xcprivacy │ ├── Runner-Bridging-Header.h │ └── Runner.entitlements └── RunnerTests │ └── RunnerTests.swift ├── l10n.yaml ├── lib ├── config │ ├── app_config.dart │ └── asset_config.dart ├── l10n │ ├── app_en.arb │ ├── app_localizations.dart │ ├── app_localizations_en.dart │ ├── app_localizations_simple.dart │ ├── app_localizations_zh.dart │ ├── app_zh.arb │ └── translations.dart ├── main.dart ├── models │ ├── annotation_model.dart │ ├── announcement_model.dart │ ├── app_config_model.dart │ ├── cloud_verification_models.dart │ ├── load_more_state.dart │ ├── note_model.dart │ ├── notion_field_mapping.dart │ ├── reminder_notification_model.dart │ ├── sidebar_config.dart │ ├── sort_order.dart │ ├── tag_color_model.dart │ ├── user_model.dart │ └── webdav_config.dart ├── providers │ └── app_provider.dart ├── routes │ └── app_router.dart ├── screens │ ├── about_screen.dart │ ├── account_info_screen.dart │ ├── ai_settings_screen.dart │ ├── data_cleanup_screen.dart │ ├── feedback_screen.dart │ ├── flomo_import_screen.dart │ ├── forgot_password_screen.dart │ ├── help_screen.dart │ ├── home_screen.dart │ ├── import_export_main_screen.dart │ ├── knowledge_graph_screen_custom.dart │ ├── laboratory_screen.dart │ ├── local_backup_restore_screen.dart │ ├── login_screen.dart │ ├── note_detail_screen.dart │ ├── notifications_screen.dart │ ├── notion_settings_screen.dart │ ├── onboarding_screen.dart │ ├── performance_dashboard_screen.dart │ ├── preferences_screen.dart │ ├── privacy_policy_screen.dart │ ├── random_review_screen.dart │ ├── register_screen.dart │ ├── server_info_screen.dart │ ├── settings_screen.dart │ ├── sidebar_customization_screen.dart │ ├── tag_notes_screen.dart │ ├── tags_screen.dart │ ├── user_agreement_screen.dart │ ├── user_preferences_screen.dart │ ├── webdav_settings_screen.dart │ └── weread_import_screen.dart ├── services │ ├── ai_enhanced_service.dart │ ├── ai_insight_engine.dart │ ├── ai_related_notes_service.dart │ ├── alert_service.dart │ ├── announcement_service.dart │ ├── api_service.dart │ ├── api_service_factory.dart │ ├── baidu_realtime_speech_service.dart │ ├── baidu_speech_service.dart │ ├── cloud_verification_service.dart │ ├── database_service.dart │ ├── deepseek_api_service.dart │ ├── feature_flag_service.dart │ ├── graph_data_service.dart │ ├── incremental_sync_service.dart │ ├── intelligent_related_notes_service.dart │ ├── ios_permission_service.dart │ ├── ios_update_service.dart │ ├── local_reference_service.dart │ ├── logger_service.dart │ ├── memos_api_service_fixed.dart │ ├── memos_resource_service.dart │ ├── note_actions_service.dart │ ├── notification_service.dart │ ├── notion_api_service.dart │ ├── notion_sync_service.dart │ ├── observability_service.dart │ ├── performance_monitor_service.dart │ ├── permission_manager.dart │ ├── preferences_service.dart │ ├── reminder_notification_service.dart │ ├── sentry_monitoring_service.dart │ ├── simple_permission_service.dart │ ├── speech_service.dart │ ├── tag_ai_service.dart │ ├── umeng_analytics_service.dart │ ├── unified_reference_manager.dart │ ├── user_behavior_service.dart │ ├── webdav_service.dart │ ├── webdav_sync_engine.dart │ └── weread_parser.dart ├── themes │ ├── app_theme.dart │ ├── app_typography.dart │ └── typography.dart ├── utils │ ├── error_handler.dart │ ├── image_cache_manager.dart │ ├── image_utils.dart │ ├── logger.dart │ ├── memos_markdown_converter.dart │ ├── network_utils.dart │ ├── performance_tracker.dart │ ├── responsive_utils.dart │ ├── share_image_widget.dart │ ├── share_utils.dart │ ├── snackbar_utils.dart │ ├── tag_utils.dart │ ├── text_style_helper.dart │ ├── time_utils.dart │ └── todo_parser.dart └── widgets │ ├── animated_checkbox.dart │ ├── annotations_sidebar.dart │ ├── cached_avatar.dart │ ├── desktop_layout.dart │ ├── heatmap.dart │ ├── intelligent_related_notes_sheet.dart │ ├── interactive_markdown.dart │ ├── ios_datetime_picker.dart │ ├── note_card.dart │ ├── note_editor.dart │ ├── note_more_options_menu.dart │ ├── permission_dialog.dart │ ├── permission_guide_dialog.dart │ ├── privacy_policy_dialog.dart │ ├── progress_overlay.dart │ ├── references_sidebar.dart │ ├── related_notes_bottom_sheet.dart │ ├── saveable_image.dart │ ├── share_image_preview_screen.dart │ ├── sidebar.dart │ ├── simple_memo_content.dart │ ├── tag_color_picker.dart │ ├── tag_tree_item.dart │ └── update_dialog.dart ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon.icns │ │ │ ├── Contents.json │ │ │ ├── app_icon_1024.png │ │ │ ├── app_icon_128.png │ │ │ ├── app_icon_16.png │ │ │ ├── app_icon_256.png │ │ │ ├── app_icon_32.png │ │ │ ├── app_icon_512.png │ │ │ └── app_icon_64.png │ │ └── AppIcon.icns │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── Configs │ │ ├── AppInfo.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements └── RunnerTests │ └── RunnerTests.swift ├── pubspec.lock ├── pubspec.yaml ├── release └── v1.0.9 │ └── InkRoot-v1.0.9-macOS-Installer.dmg ├── scripts ├── IOS_UNSIGNED_BUILD.md ├── build_unsigned_ipa.sh ├── create_dmg.sh ├── create_release_dmg.sh ├── dmg │ ├── README.md │ ├── build_release.sh │ ├── create_ultimate_dmg.sh │ └── generate_icons.sh ├── generate_icns.sh ├── generate_macos_icon.py └── windows │ ├── README.md │ └── build_windows.bat ├── test └── widget_test.dart └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter ├── CMakeLists.txt ├── generated_plugin_registrant.cc ├── generated_plugin_registrant.h └── generated_plugins.cmake └── runner ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── resources └── app_icon.ico ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/CHANGELOG.en.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/README.en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/SECURITY.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /analysis_options_strict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/analysis_options_strict.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/didichou/inkroot/AlarmReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/kotlin/com/didichou/inkroot/AlarmReceiver.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/didichou/inkroot/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/kotlin/com/didichou/inkroot/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/didichou/inkroot/ReminderActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/kotlin/com/didichou/inkroot/ReminderActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/drawable-hdpi/ic_notification.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/drawable-mdpi/ic_notification.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-v21/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/drawable-night-v21/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/drawable-night-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/drawable-night/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/drawable-night/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/drawable-v21/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/drawable-xhdpi/ic_notification.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_notification.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/drawable-xxxhdpi/ic_notification.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/drawable/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/values-night-v31/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/values-v31/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/xml/file_paths.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/flutter_image_picker_file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/main/res/xml/flutter_image_picker_file_paths.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/inkroot-new-cert.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/inkroot-new-cert.der -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/fonts/SF-Mono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/assets/fonts/SF-Mono-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/SF-Pro-Display-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/assets/fonts/SF-Pro-Display-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/SF-Pro-Display-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/assets/fonts/SF-Pro-Display-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/SF-Pro-Display-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/assets/fonts/SF-Pro-Display-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/SF-Pro-Display-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/assets/fonts/SF-Pro-Display-Regular.ttf -------------------------------------------------------------------------------- /assets/images/black2logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/assets/images/black2logo.png -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/assets/images/logo.png -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/docs/api/README.md -------------------------------------------------------------------------------- /docs/api/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/docs/api/README.zh.md -------------------------------------------------------------------------------- /docs/architecture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/docs/architecture/README.md -------------------------------------------------------------------------------- /docs/architecture/adr/001-use-provider-for-state-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/docs/architecture/adr/001-use-provider-for-state-management.md -------------------------------------------------------------------------------- /docs/architecture/adr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/docs/architecture/adr/README.md -------------------------------------------------------------------------------- /docs/architecture/adr/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/docs/architecture/adr/template.md -------------------------------------------------------------------------------- /docs/development/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/docs/development/debugging.md -------------------------------------------------------------------------------- /docs/development/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/docs/development/troubleshooting.md -------------------------------------------------------------------------------- /docs/user-guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/docs/user-guide/README.md -------------------------------------------------------------------------------- /docs/user-guide/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/docs/user-guide/getting-started.md -------------------------------------------------------------------------------- /flutter_native_splash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/flutter_native_splash.yaml -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/ExportOptions.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/ExportOptions.plist -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner/Assets.xcassets/LaunchBackground.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchBackground.imageset/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner/Assets.xcassets/LaunchBackground.imageset/background.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchBackground.imageset/darkbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner/Assets.xcassets/LaunchBackground.imageset/darkbackground.png -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/Runner/Runner.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/Runner/Runner.entitlements -------------------------------------------------------------------------------- /ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /l10n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/l10n.yaml -------------------------------------------------------------------------------- /lib/config/app_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/config/app_config.dart -------------------------------------------------------------------------------- /lib/config/asset_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/config/asset_config.dart -------------------------------------------------------------------------------- /lib/l10n/app_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/l10n/app_en.arb -------------------------------------------------------------------------------- /lib/l10n/app_localizations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/l10n/app_localizations.dart -------------------------------------------------------------------------------- /lib/l10n/app_localizations_en.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/l10n/app_localizations_en.dart -------------------------------------------------------------------------------- /lib/l10n/app_localizations_simple.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/l10n/app_localizations_simple.dart -------------------------------------------------------------------------------- /lib/l10n/app_localizations_zh.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/l10n/app_localizations_zh.dart -------------------------------------------------------------------------------- /lib/l10n/app_zh.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/l10n/app_zh.arb -------------------------------------------------------------------------------- /lib/l10n/translations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/l10n/translations.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/models/annotation_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/models/annotation_model.dart -------------------------------------------------------------------------------- /lib/models/announcement_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/models/announcement_model.dart -------------------------------------------------------------------------------- /lib/models/app_config_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/models/app_config_model.dart -------------------------------------------------------------------------------- /lib/models/cloud_verification_models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/models/cloud_verification_models.dart -------------------------------------------------------------------------------- /lib/models/load_more_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/models/load_more_state.dart -------------------------------------------------------------------------------- /lib/models/note_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/models/note_model.dart -------------------------------------------------------------------------------- /lib/models/notion_field_mapping.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/models/notion_field_mapping.dart -------------------------------------------------------------------------------- /lib/models/reminder_notification_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/models/reminder_notification_model.dart -------------------------------------------------------------------------------- /lib/models/sidebar_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/models/sidebar_config.dart -------------------------------------------------------------------------------- /lib/models/sort_order.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/models/sort_order.dart -------------------------------------------------------------------------------- /lib/models/tag_color_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/models/tag_color_model.dart -------------------------------------------------------------------------------- /lib/models/user_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/models/user_model.dart -------------------------------------------------------------------------------- /lib/models/webdav_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/models/webdav_config.dart -------------------------------------------------------------------------------- /lib/providers/app_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/providers/app_provider.dart -------------------------------------------------------------------------------- /lib/routes/app_router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/routes/app_router.dart -------------------------------------------------------------------------------- /lib/screens/about_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/about_screen.dart -------------------------------------------------------------------------------- /lib/screens/account_info_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/account_info_screen.dart -------------------------------------------------------------------------------- /lib/screens/ai_settings_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/ai_settings_screen.dart -------------------------------------------------------------------------------- /lib/screens/data_cleanup_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/data_cleanup_screen.dart -------------------------------------------------------------------------------- /lib/screens/feedback_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/feedback_screen.dart -------------------------------------------------------------------------------- /lib/screens/flomo_import_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/flomo_import_screen.dart -------------------------------------------------------------------------------- /lib/screens/forgot_password_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/forgot_password_screen.dart -------------------------------------------------------------------------------- /lib/screens/help_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/help_screen.dart -------------------------------------------------------------------------------- /lib/screens/home_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/home_screen.dart -------------------------------------------------------------------------------- /lib/screens/import_export_main_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/import_export_main_screen.dart -------------------------------------------------------------------------------- /lib/screens/knowledge_graph_screen_custom.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/knowledge_graph_screen_custom.dart -------------------------------------------------------------------------------- /lib/screens/laboratory_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/laboratory_screen.dart -------------------------------------------------------------------------------- /lib/screens/local_backup_restore_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/local_backup_restore_screen.dart -------------------------------------------------------------------------------- /lib/screens/login_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/login_screen.dart -------------------------------------------------------------------------------- /lib/screens/note_detail_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/note_detail_screen.dart -------------------------------------------------------------------------------- /lib/screens/notifications_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/notifications_screen.dart -------------------------------------------------------------------------------- /lib/screens/notion_settings_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/notion_settings_screen.dart -------------------------------------------------------------------------------- /lib/screens/onboarding_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/onboarding_screen.dart -------------------------------------------------------------------------------- /lib/screens/performance_dashboard_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/performance_dashboard_screen.dart -------------------------------------------------------------------------------- /lib/screens/preferences_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/preferences_screen.dart -------------------------------------------------------------------------------- /lib/screens/privacy_policy_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/privacy_policy_screen.dart -------------------------------------------------------------------------------- /lib/screens/random_review_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/random_review_screen.dart -------------------------------------------------------------------------------- /lib/screens/register_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/register_screen.dart -------------------------------------------------------------------------------- /lib/screens/server_info_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/server_info_screen.dart -------------------------------------------------------------------------------- /lib/screens/settings_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/settings_screen.dart -------------------------------------------------------------------------------- /lib/screens/sidebar_customization_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/sidebar_customization_screen.dart -------------------------------------------------------------------------------- /lib/screens/tag_notes_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/tag_notes_screen.dart -------------------------------------------------------------------------------- /lib/screens/tags_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/tags_screen.dart -------------------------------------------------------------------------------- /lib/screens/user_agreement_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/user_agreement_screen.dart -------------------------------------------------------------------------------- /lib/screens/user_preferences_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/user_preferences_screen.dart -------------------------------------------------------------------------------- /lib/screens/webdav_settings_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/webdav_settings_screen.dart -------------------------------------------------------------------------------- /lib/screens/weread_import_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/screens/weread_import_screen.dart -------------------------------------------------------------------------------- /lib/services/ai_enhanced_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/ai_enhanced_service.dart -------------------------------------------------------------------------------- /lib/services/ai_insight_engine.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/ai_insight_engine.dart -------------------------------------------------------------------------------- /lib/services/ai_related_notes_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/ai_related_notes_service.dart -------------------------------------------------------------------------------- /lib/services/alert_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/alert_service.dart -------------------------------------------------------------------------------- /lib/services/announcement_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/announcement_service.dart -------------------------------------------------------------------------------- /lib/services/api_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/api_service.dart -------------------------------------------------------------------------------- /lib/services/api_service_factory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/api_service_factory.dart -------------------------------------------------------------------------------- /lib/services/baidu_realtime_speech_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/baidu_realtime_speech_service.dart -------------------------------------------------------------------------------- /lib/services/baidu_speech_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/baidu_speech_service.dart -------------------------------------------------------------------------------- /lib/services/cloud_verification_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/cloud_verification_service.dart -------------------------------------------------------------------------------- /lib/services/database_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/database_service.dart -------------------------------------------------------------------------------- /lib/services/deepseek_api_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/deepseek_api_service.dart -------------------------------------------------------------------------------- /lib/services/feature_flag_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/feature_flag_service.dart -------------------------------------------------------------------------------- /lib/services/graph_data_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/graph_data_service.dart -------------------------------------------------------------------------------- /lib/services/incremental_sync_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/incremental_sync_service.dart -------------------------------------------------------------------------------- /lib/services/intelligent_related_notes_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/intelligent_related_notes_service.dart -------------------------------------------------------------------------------- /lib/services/ios_permission_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/ios_permission_service.dart -------------------------------------------------------------------------------- /lib/services/ios_update_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/ios_update_service.dart -------------------------------------------------------------------------------- /lib/services/local_reference_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/local_reference_service.dart -------------------------------------------------------------------------------- /lib/services/logger_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/logger_service.dart -------------------------------------------------------------------------------- /lib/services/memos_api_service_fixed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/memos_api_service_fixed.dart -------------------------------------------------------------------------------- /lib/services/memos_resource_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/memos_resource_service.dart -------------------------------------------------------------------------------- /lib/services/note_actions_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/note_actions_service.dart -------------------------------------------------------------------------------- /lib/services/notification_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/notification_service.dart -------------------------------------------------------------------------------- /lib/services/notion_api_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/notion_api_service.dart -------------------------------------------------------------------------------- /lib/services/notion_sync_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/notion_sync_service.dart -------------------------------------------------------------------------------- /lib/services/observability_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/observability_service.dart -------------------------------------------------------------------------------- /lib/services/performance_monitor_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/performance_monitor_service.dart -------------------------------------------------------------------------------- /lib/services/permission_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/permission_manager.dart -------------------------------------------------------------------------------- /lib/services/preferences_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/preferences_service.dart -------------------------------------------------------------------------------- /lib/services/reminder_notification_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/reminder_notification_service.dart -------------------------------------------------------------------------------- /lib/services/sentry_monitoring_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/sentry_monitoring_service.dart -------------------------------------------------------------------------------- /lib/services/simple_permission_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/simple_permission_service.dart -------------------------------------------------------------------------------- /lib/services/speech_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/speech_service.dart -------------------------------------------------------------------------------- /lib/services/tag_ai_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/tag_ai_service.dart -------------------------------------------------------------------------------- /lib/services/umeng_analytics_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/umeng_analytics_service.dart -------------------------------------------------------------------------------- /lib/services/unified_reference_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/unified_reference_manager.dart -------------------------------------------------------------------------------- /lib/services/user_behavior_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/user_behavior_service.dart -------------------------------------------------------------------------------- /lib/services/webdav_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/webdav_service.dart -------------------------------------------------------------------------------- /lib/services/webdav_sync_engine.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/webdav_sync_engine.dart -------------------------------------------------------------------------------- /lib/services/weread_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/services/weread_parser.dart -------------------------------------------------------------------------------- /lib/themes/app_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/themes/app_theme.dart -------------------------------------------------------------------------------- /lib/themes/app_typography.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/themes/app_typography.dart -------------------------------------------------------------------------------- /lib/themes/typography.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/themes/typography.dart -------------------------------------------------------------------------------- /lib/utils/error_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/utils/error_handler.dart -------------------------------------------------------------------------------- /lib/utils/image_cache_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/utils/image_cache_manager.dart -------------------------------------------------------------------------------- /lib/utils/image_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/utils/image_utils.dart -------------------------------------------------------------------------------- /lib/utils/logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/utils/logger.dart -------------------------------------------------------------------------------- /lib/utils/memos_markdown_converter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/utils/memos_markdown_converter.dart -------------------------------------------------------------------------------- /lib/utils/network_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/utils/network_utils.dart -------------------------------------------------------------------------------- /lib/utils/performance_tracker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/utils/performance_tracker.dart -------------------------------------------------------------------------------- /lib/utils/responsive_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/utils/responsive_utils.dart -------------------------------------------------------------------------------- /lib/utils/share_image_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/utils/share_image_widget.dart -------------------------------------------------------------------------------- /lib/utils/share_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/utils/share_utils.dart -------------------------------------------------------------------------------- /lib/utils/snackbar_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/utils/snackbar_utils.dart -------------------------------------------------------------------------------- /lib/utils/tag_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/utils/tag_utils.dart -------------------------------------------------------------------------------- /lib/utils/text_style_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/utils/text_style_helper.dart -------------------------------------------------------------------------------- /lib/utils/time_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/utils/time_utils.dart -------------------------------------------------------------------------------- /lib/utils/todo_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/utils/todo_parser.dart -------------------------------------------------------------------------------- /lib/widgets/animated_checkbox.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/widgets/animated_checkbox.dart -------------------------------------------------------------------------------- /lib/widgets/annotations_sidebar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/widgets/annotations_sidebar.dart -------------------------------------------------------------------------------- /lib/widgets/cached_avatar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/widgets/cached_avatar.dart -------------------------------------------------------------------------------- /lib/widgets/desktop_layout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/widgets/desktop_layout.dart -------------------------------------------------------------------------------- /lib/widgets/heatmap.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/widgets/heatmap.dart -------------------------------------------------------------------------------- /lib/widgets/intelligent_related_notes_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/widgets/intelligent_related_notes_sheet.dart -------------------------------------------------------------------------------- /lib/widgets/interactive_markdown.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/widgets/interactive_markdown.dart -------------------------------------------------------------------------------- /lib/widgets/ios_datetime_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/widgets/ios_datetime_picker.dart -------------------------------------------------------------------------------- /lib/widgets/note_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/widgets/note_card.dart -------------------------------------------------------------------------------- /lib/widgets/note_editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/widgets/note_editor.dart -------------------------------------------------------------------------------- /lib/widgets/note_more_options_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/widgets/note_more_options_menu.dart -------------------------------------------------------------------------------- /lib/widgets/permission_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/widgets/permission_dialog.dart -------------------------------------------------------------------------------- /lib/widgets/permission_guide_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/widgets/permission_guide_dialog.dart -------------------------------------------------------------------------------- /lib/widgets/privacy_policy_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/widgets/privacy_policy_dialog.dart -------------------------------------------------------------------------------- /lib/widgets/progress_overlay.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/widgets/progress_overlay.dart -------------------------------------------------------------------------------- /lib/widgets/references_sidebar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/widgets/references_sidebar.dart -------------------------------------------------------------------------------- /lib/widgets/related_notes_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/widgets/related_notes_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/widgets/saveable_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/widgets/saveable_image.dart -------------------------------------------------------------------------------- /lib/widgets/share_image_preview_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/widgets/share_image_preview_screen.dart -------------------------------------------------------------------------------- /lib/widgets/sidebar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/widgets/sidebar.dart -------------------------------------------------------------------------------- /lib/widgets/simple_memo_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/widgets/simple_memo_content.dart -------------------------------------------------------------------------------- /lib/widgets/tag_color_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/widgets/tag_color_picker.dart -------------------------------------------------------------------------------- /lib/widgets/tag_tree_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/widgets/tag_tree_item.dart -------------------------------------------------------------------------------- /lib/widgets/update_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/lib/widgets/update_dialog.dart -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Podfile -------------------------------------------------------------------------------- /macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Podfile.lock -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon.icns -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Runner/Assets.xcassets/AppIcon.icns -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /release/v1.0.9/InkRoot-v1.0.9-macOS-Installer.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/release/v1.0.9/InkRoot-v1.0.9-macOS-Installer.dmg -------------------------------------------------------------------------------- /scripts/IOS_UNSIGNED_BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/scripts/IOS_UNSIGNED_BUILD.md -------------------------------------------------------------------------------- /scripts/build_unsigned_ipa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/scripts/build_unsigned_ipa.sh -------------------------------------------------------------------------------- /scripts/create_dmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/scripts/create_dmg.sh -------------------------------------------------------------------------------- /scripts/create_release_dmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/scripts/create_release_dmg.sh -------------------------------------------------------------------------------- /scripts/dmg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/scripts/dmg/README.md -------------------------------------------------------------------------------- /scripts/dmg/build_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/scripts/dmg/build_release.sh -------------------------------------------------------------------------------- /scripts/dmg/create_ultimate_dmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/scripts/dmg/create_ultimate_dmg.sh -------------------------------------------------------------------------------- /scripts/dmg/generate_icons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/scripts/dmg/generate_icons.sh -------------------------------------------------------------------------------- /scripts/generate_icns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/scripts/generate_icns.sh -------------------------------------------------------------------------------- /scripts/generate_macos_icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/scripts/generate_macos_icon.py -------------------------------------------------------------------------------- /scripts/windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/scripts/windows/README.md -------------------------------------------------------------------------------- /scripts/windows/build_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/scripts/windows/build_windows.bat -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/test/widget_test.dart -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyyyymmmmm/IntRoot/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------