MyNotebook
Fast, private, portable notebook for Windows 11. OCR-searchable screenshots, Myanmar-aware search, themes, export, voice reader. C# WinUI 3.
File Explorer
- 20260601_190600_669c2bc9.png
- 20260601_190700_8e8dbd29.png
- 20260601_190800_b78453c2.png
- 20260601_190900_6383076b.png
- 20260601_191000_974e81f4.png
- 20260601_180100_e696c196.png
- 20260601_180200_40e62df7.png
- 20260601_180300_03f2f008.png
- 20260601_180400_8938a184.png
- 20260601_180500_e5a64e88.png
- 001_initial_schema.sql
- 002_note_versions.sql
- 003_search_trigram.sql
- 004_timeline_index.sql
- 005_notebooks.sql
- 006_folder_color.sql
- build_seed_db.py
- notebook-seed.db
- README.md
- PLAN.md
- USER_GUIDE.md
- MyNotebook.iss
- 01-initial.png
- 02-new-note.png
- 03-new-thread.png
- 04-search.png
- 05-settings-light.png
- 06-settings-dark.png
- 06-settings.png
- dark-verify.png
- KaTeX_AMS-Regular.woff2
- KaTeX_Caligraphic-Bold.woff2
- KaTeX_Caligraphic-Regular.woff2
- KaTeX_Fraktur-Bold.woff2
- KaTeX_Fraktur-Regular.woff2
- KaTeX_Main-Bold.woff2
- KaTeX_Main-BoldItalic.woff2
- KaTeX_Main-Italic.woff2
- KaTeX_Main-Regular.woff2
- KaTeX_Math-BoldItalic.woff2
- KaTeX_Math-Italic.woff2
- KaTeX_SansSerif-Bold.woff2
- KaTeX_SansSerif-Italic.woff2
- KaTeX_SansSerif-Regular.woff2
- KaTeX_Script-Regular.woff2
- KaTeX_Size1-Regular.woff2
- KaTeX_Size2-Regular.woff2
- KaTeX_Size3-Regular.woff2
- KaTeX_Size4-Regular.woff2
- KaTeX_Typewriter-Regular.woff2
- auto-render.min.js
- katex-embed.css
- katex.min.css
- katex.min.js
- AppIcon.ico
- Loc.cs
- win-x64-portable.pubxml
- PdfExporter.cs
- WindowsOcrService.cs
- WordExporter.cs
- en.json
- pt.json
- AboutWindow.xaml
- AboutWindow.xaml.cs
- app.manifest
- App.xaml
- App.xaml.cs
- MainWindow.xaml
- MainWindow.xaml.cs
- MyNotebook.App.csproj
- SettingsWindow.xaml
- SettingsWindow.xaml.cs
- Timeline.cs
- Models.cs
- Interfaces.cs
- NoteService.cs
- PathService.cs
- SettingsService.cs
- StorageService.cs
- MyNotebook.Core.csproj
- BackupRestoreTests.cs
- FolderOpsTests.cs
- ImageOpsTests.cs
- MaintenanceTests.cs
- MyNotebook.Tests.csproj
- PasteIntegrationTests.cs
- SearchTests.cs
- ServiceTests.cs
- TagTests.cs
- TrashTests.cs
- VersionTests.cs
- MyNotebook.slnx
- PdfCheck.csproj
- Program.cs
- .gitignore
- LICENSE
- README.md
- ui-tests.ps1
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
dotnet build
View Details ▼
dotnet build
Builds a .NET application and its dependencies.
dotnet build
Compile the project or solution in the current directory:
dotnet build {{path/to/project_or_solution}}
Compile a .NET project or solution in debug mode:
dotnet build {{[-c|--configuration]}} {{Release}}
Compile in release mode:
dotnet test
View Details ▼
dotnet test
Execute tests for a .NET application.
Note: View <https://learn.microsoft.com/dotnet/core/testing/selective-unit-tests> for supported filter expressions.
dotnet test
Execute tests for a .NET project/solution in the current directory:
dotnet test {{path/to/project_or_solution}}
Execute tests for a .NET project/solution in a specific location:
dotnet test --filter {{Name~TestMethod1}}
Execute tests matching the given filter expression:
