Pointframe
Pointframe
A free Windows screenshot and recording tool built for fast bug reports, walkthroughs, and support replies.
Capture a region, a window, or a whole monitor â annotate, blur, record to MP4/GIF, and extract text with OCR.
Drive it from the tray app, the standalone CLI, or an AI agent over MCP.
đ Visit the Official Website
â If Pointframe saves you time, consider buying me a beer:
đ Quick Start
Install in seconds with the Windows Package Manager:
Starting with the 5.0 release line, the winget package ID is DimitarRadenkov.Pointframe.
winget install DimitarRadenkov.Pointframe
Prefer a manual install? Download the latest installer from the Releases page.
- Install Pointframe with
winget install DimitarRadenkov.Pointframe or download the latest installer from Releases.
- Press
Print Screen to capture a region.
- Add arrows, text, or blur and then copy, save, pin, or record.
You can complete your first capture workflow in under a minute.
For the standalone command-line workflow, installation, artifact verification,
exit codes, and troubleshooting, see the dedicated
Pointframe CLI README.
Pointframe CLI
Each GitHub Release includes Pointframe.Cli--win-x64.zip, a self-contained
Windows CLI for monitor and window discovery, PNG screenshots of a monitor, a
sub-region, or a single window, on-screen text extraction via OCR, and whole-monitor
MP4 recordings. Extract the ZIP and run Pointframe.Cli.exe; the Pointframe desktop
app, the .NET runtime, and the .NET SDK are not required.
The CLI requires an interactive Windows desktop session. It cannot capture a user's
desktop from a Windows service (session 0).
.\Pointframe.Cli.exe displays
.\Pointframe.Cli.exe windows
.\Pointframe.Cli.exe capture --monitor '\\.\DISPLAY1' --output .\shot.png
.\Pointframe.Cli.exe capture --monitor '\\.\DISPLAY1' --region 100,100,800,600
.\Pointframe.Cli.exe capture-window --window-id 12345678
.\Pointframe.Cli.exe ocr --monitor '\\.\DISPLAY1'
.\Pointframe.Cli.exe ocr-window --window-id 12345678
.\Pointframe.Cli.exe record --monitor '\\.\DISPLAY1' --seconds 10 --output .\take1.mp4
Use the exact monitorName emitted by displays, or a window handle emitted by
windows. Every command other than --help/--version writes a single-line JSON
response to standard output on both the success and the failure path, so a script can
parse it the same way either way: success exits 0, a runtime failure exits 1 and
carries an Error.Code (target_not_found, target_not_capturable, invalid_region,
invalid_output_path, canceled, or capture_failed), and invalid arguments exit 2
with usage text on standard error.
Pass --output (-o) to any command that produces a file to choose the exact
path to write; parent directories are created for you. Without it, screenshots and their
metadata sidecars are saved under %LOCALAPPDATA%\Pointframe\Screenshots and recordings
under %LOCALAPPDATA%\Pointframe\Recordings, each with a generated timestamped name.
ocr captures the monitor the same way capture does, then runs Windows OCR against
the captured image and adds a RecognizedText field to the JSON output (null when no
text is found or no OCR language pack is installed). capture-window and ocr-window do
the same for a single window by handle, using visible screen-rectangle semantics: an
occluding window may appear in the capture, and minimized, zero-size, off-screen, and
multi-monitor-spanning windows are rejected. record starts a direct MP4 recording, waits
for the requested --seconds (or an earlier Ctrl+C for a graceful early stop that still
finalizes and reports the artifact), then writes the combined session/artifact JSON;
recordings require ffmpeg.exe on PATH, via POINTFRAME_FFMPEG_PATH, or bundled next
to the executable.
Pointframe MCP Server
Pointframe also ships a standalone MCP server for agents that need to inspect the Windows desktop and produce verifiable screenshot or recording artifacts. The MCP server uses Pointframe.Engine directly; it does not start the Pointframe tray application, create a WPF overlay, or require the full Pointframe installer.
The standalone host requires an interactive Windows desktop session. It is a local stdio server intended to be launched by VS Code, Copilot, or another MCP client.
MCP capabilities
The server exposes:
- đ
search_captures â search the local catalog of saved screenshots by filename or indexed OCR text. Results may be incomplete while newly discovered images are indexed.
- đī¸
get_capture â retrieve a catalog artifact by its opaque ID, including metadata and an optional downscaled inline preview. It never accepts arbitrary local paths.
- đĨī¸
list_displays â return monitor identifiers, physical pixel bounds, and DPI scales.
- đĒ
list_windows â return visible top-level windows with handles, titles, process names, bounds, and containing monitor names. Window handles are session-local and temporary.
- đ¸
capture_monitor â capture a named monitor, or an optional monitor-local sub-region of it, and return a PNG artifact plus metadata. The captured image is also returned inline as an image block (downscaled to at most 1600 px on its longest edge) so the calling model can see it directly; pass includeImage: false to get metadata only.
- đ¸
capture_window â capture the visible screen rectangle of a window by its handle from list_windows. Occluding windows may appear; minimized, off-screen, and multi-monitor-spanning windows are rejected. Returns the image inline like capture_monitor unless includeImage: false.
- đ¤
read_text_from_monitor â capture a named monitor (optionally a sub-region) and run OCR against it, returning the PNG artifact plus recognized text (null when no text is found or no OCR language pack is installed). The captured image is also returned inline unless includeImage: false.
- đ¤
read_text_from_window â capture a window by handle and run OCR against it. Same screen-rectangle capture semantics as capture_window, and the same inline-image behavior.
- đĨ
start_recording â start a whole-monitor MP4 recording. redactionRegionsCaptureLocalPixels is optional; omit it to record without redaction.
- âšī¸
stop_recording â stop the active recording and return the finalized MP4 artifact, metadata, and event sidecar references.
- âąī¸
get_recording_status â report whether a recording is currently active and, if so, its session details and elapsed duration; returns no session when nothing is recording.
The server also exposes MCP resources:
pointframe://commands â the exact list of registered tool identifiers (varies depending on whether desktop testing is enabled).
pointframe://server-info â server version, whether desktop testing tools are enabled, and whether ffmpeg (required for recording) was found, along with where it was found (EnvironmentVariable, Bundled, or Path). Useful for a health check before calling start_recording.
The normal workflow is:
- Call
list_displays and select a returned monitorName.
- Call
capture_monitor with that exact monitor name, call read_text_from_monitor to also extract on-screen text, or call start_recording. Pass an optional region ({x, y, width, height} in monitor-local physical pixels) to capture_monitor/read_text_from_monitor to limit the capture to a sub-rectangle instead of the whole monitor; a region outside the monitor's bounds is rejected rather than clipped.
- For recording, pass redaction rectangles in capture-local physical pixels. Omit the argument entirely when no redaction is required.
- Call
get_recording_status at any time to check whether a recording is active before calling stop_recording.
- Call
stop_recording to finalize the MP4 and retrieve its metadata.
Example tool arguments:
{
"monitorName": "\\\\.\\DISPLAY1"
}
{
"monitorName": "\\\\.\\DISPLAY1",
"redactionRegionsCaptureLocalPixels": [
{ "x": 120, "y": 80, "width": 240, "height": 48 }
],
"framesPerSecond": 20
}
Responses contain structured JSON with Success, operation identifiers, artifact paths,
byte lengths, SHA-256 hashes, monitor geometry, DPI information, and sidecar paths.
Artifact paths are local filesystem paths on the machine running the MCP server. The
four capture and OCR tools additionally return the captured image itself as an inline
image content block â downscaled to at most 1600 px on its longest edge, while the
full-resolution PNG is always saved to disk â so a client that cannot reach the server's
filesystem can still see the screenshot. Pass includeImage: false to suppress it.
MCP use cases
The MCP server is useful when an agent needs a local, verifiable visual artifact
rather than a text-only description of the Windows desktop:
- Bug report capture: call
list_displays, select the affected monitor, then
call capture_monitor to produce a PNG and metadata sidecar that can be attached
to a report.
- Reading on-screen text: call
read_text_from_monitor to extract error dialogs,
logs, or terminal output as plain text alongside the screenshot, without a separate
OCR step.
- Privacy-safe support recording: call
start_recording with capture-local
rectangles covering credentials, tokens, customer data, or other sensitive areas,
then call stop_recording when the reproduction is complete. Redaction is applied
before frames are passed to ffmpeg.
- UI regression evidence: capture the relevant monitor before and after an
interaction and use the returned artifact paths and SHA-256 values to identify
exactly which files were produced.
- Multi-monitor troubleshooting: discover displays first and target the exact
monitorName returned by list_displays instead of relying on screen order or
desktop coordinates.
- Reproducible automation artifacts: use the structured response metadata to
record the operation ID, monitor, DPI, physical bounds, file size, timestamp, and
checksum alongside test or support results.
The server is intentionally local: it is not a remote desktop service and does not
start the Pointframe WPF application. Recording does not include microphone audio.
Event sidecars contain lifecycle and declared-redaction events, but do not contain
bitmap data, OCR text, clipboard contents, or prompts.
Artifacts are written beneath %LOCALAPPDATA%\Pointframe:
Screenshots\*.png
Screenshots\*.png.metadata.json
Recordings\*.mp4
Recordings\*.mp4.metadata.json
Recordings\*.mp4.events.jsonl
Metadata includes the artifact path, byte length, SHA-256, timestamp, monitor, DPI, and physical capture bounds. Recording event sidecars contain lifecycle and declared-redaction events without bitmap data, OCR text, clipboard contents, or prompts.
Install a published MCP server
The standard release artifact is a versioned .mcpb bundle. It contains the
self-contained win-x64 server, ffmpeg.exe, and an MCPB manifest.json.
For the opt-in black-box desktop-testing driver, including policy validation,
worker behavior, gate procedures, and evidence limits, see the dedicated
desktop-testing MCP README. Detailed
operator notes remain in MCP desktop testing.
Download the matching Pointframe.Mcp-*-win-x64.mcpb asset from the
latest release
and install it in an MCPB-compatible host. Verify the adjacent .sha256 file
before installation when the host does not verify the bundle automatically.
For clients that use the MCP Registry, each release also publishes a matching
*.server.json file. It uses the io.github.dimitar-radenkov/pointframe-mcp
server name, pins the MCPB URL, and includes the bundle SHA-256.
To build the same artifacts locally:
dotnet restore Pointframe.Mcp/Pointframe.Mcp.csproj
./packaging/build-mcp-package.ps1 `
-Version "1.0.0" `
-FfmpegPath "C:\path\to\ffmpeg.exe"
Use the current release version instead of 1.0.0 when producing a release package.
The script also emits a legacy ZIP, the MCPB bundle, a SHA-256 checksum, and
release-ready server.json metadata under packaging/output.
Get-FileHash packaging/output/Pointframe.Mcp-*-win-x64.mcpb -Algorithm SHA256
The legacy ZIP remains useful for manual installation. Extract it to a
directory such as C:\Program Files\Pointframe.Mcp; it contains the standalone
MCP executable and ffmpeg.exe, not the WPF Pointframe application.
Configure VS Code
For a manually extracted ZIP, point VS Code at the published executable in
.vscode/mcp.json or the user MCP configuration:
{
"servers": {
"pointframe": {
"type": "stdio",
"command": "C:\\Program Files\\Pointframe.Mcp\\Pointframe.Mcp.exe"
}
}
}
After changing the command or executable path, reload the VS Code window or restart
the MCP server from the MCP server controls. For local development, the workspace
configuration can point at the Debug executable instead. Rebuild Pointframe.Mcp
after code changes before restarting the MCP server.
Test the MCP server locally
Build the server and run the repository's protocol smoke test:
dotnet build Pointframe.Mcp/Pointframe.Mcp.csproj
./packaging/test-mcp-stdio.ps1 `
-ExecutablePath ".\Pointframe.Mcp\bin\Debug\net10.0-windows10.0.18362.0\Pointframe.Mcp.exe"
The smoke test verifies the MCP initialize handshake and confirms that all five
tools are advertised. To test an actual capture, configure the executable in VS
Code, call list_displays, then call capture_monitor (or read_text_from_monitor)
with one of the returned monitor names. A successful capture should have a matching
.metadata.json sidecar whose SHA-256 and byte length agree with the image.
Recording currently captures a whole monitor without microphone audio. Redaction regions are capture-local physical pixels and are applied before ffmpeg receives the frame. The process must run in the logged-in interactive Windows session; Windows services running in session 0 cannot capture the user desktop.
Troubleshooting
- No displays are returned or capture fails: run the MCP server in the same
logged-in interactive Windows session as the desktop you want to capture.
Windows services and session-0 processes cannot capture the user desktop.
capture_monitor rejects the monitor: use the exact monitorName returned
by list_displays; do not substitute a friendly display label.
- Recording cannot start: confirm that no other Pointframe recording is active,
the requested monitor still exists, and
framesPerSecond is between 1 and 60.
- Recording finalization fails: make sure
ffmpeg.exe is next to
Pointframe.Mcp.exe in the extracted package, or rebuild the package with
-FfmpegPath pointing to a valid Windows ffmpeg executable.
- The MCP client reports invalid protocol output: stdout is reserved for
MCP JSON-RPC messages. Run the published executable through the configured MCP
client rather than wrapping it in a shell that writes additional output.
- Artifacts cannot be opened: artifact paths refer to the MCP server's
machine and user profile. The client must have access to that filesystem.
If you find Pointframe useful, a â on GitHub helps others discover it â thank you!
⨠Key highlights
- Live Video Annotations: Draw, highlight, and redact while recording. No need for post-production video editing.
- Privacy First (Live Blur): Drag over sensitive content (passwords, emails, API keys) to apply a live Gaussian blur that stays hidden in the final export.
- Built-in OCR: Lasso any text on your screen (even in images or videos) to instantly copy it to your clipboard.
- Pin to Screen: Pin captured screenshots as floating, always-on-top windows for quick reference while coding or writing.
đ What shipped in recent releases
Jul 2026
- Tray menu UX refresh â Improved command grouping, clearer labels, and iconized top-level actions.
- Capture Library OCR hardening â Better reliability and scale for OCR-backed library search.
- Capture + recording hot-path optimizations â Smoother performance in frequent capture/recording flows.
Jun 2026
- Clean Window Snip â Capture cleaner active-window results via tray action and hotkey.
- Video watermark support â Configurable watermark overlays for recorded MP4 output.
- Video trim workflow â Trim recordings directly in-app from recent recordings actions.
- Auto-update tray notification improvements â Better update signaling and install flow behavior from tray.
May 2026
- Capture delay customization â Adjustable delay presets to capture menus and transient UI states.
- Screenshot watermark support â Add configurable watermarking for screenshots.
- Library and tray workflow upgrades â Open folders submenu, richer recents actions, and improved tray ergonomics.
- Expanded auto-update intervals â Additional cadence options including short intervals and disable mode.
Apr-Mar 2026 (foundation releases)
- Whole-screen snip mode and whole-screen record hotkey.
- Recording HUD improvements including compact mode and better in-recording controls.
- GIF export, cursor highlight, and click ripple for clearer instructional recordings.
- Open existing image, callout tool, color picker, pixel ruler, and style presets.
- Telemetry and usage reporting foundation for anonymous feature adoption metrics.
For full detail by version, see the Releases page.
Why people use it
- Show the problem, not just describe it â Bugs and UI issues are easier to understand when the screenshot or recording already contains the important highlights.
- Make tutorials easier to follow â Arrows, text, and numbered steps keep people focused on what matters.
- Hide private details before sharing â Blur emails, passwords, tokens, and anything else you do not want on screen.
- Work from one place â Capture, annotate, copy, save, pin, and record without bouncing between tools.
Features
- Region capture â Press the configured hotkey (default:
Print Screen) to draw a selection on screen
- Whole-screen snip â Instantly capture the entire screen from the tray icon or a dedicated hotkey
- Clean window snip â Capture a cleaner active-window result directly from tray and dedicated hotkey
- Frozen screen snapshot â The screen is captured instantly when the hotkey is pressed, freezing menus, tooltips, and popups exactly as they appear
- Selection magnifier â A zoomed loupe follows your cursor while drawing the capture region for pixel-accurate selection
- Configurable capture hotkeys â Change the region-capture hotkey and the whole-screen record hotkey independently from Settings
- Annotation tools â Arrow, line, rectangle, circle, pen, highlighter, text, numbered labels, blur/pixelate, callout (speech bubble), color picker, pixel ruler
- Style presets â Up to 5 named color-and-thickness shortcuts shown as quick-access dots in the annotation toolbar; fully configurable in Settings
- Color picker tool â Sample any pixel color from the frozen screenshot; the loupe zooms in with a hex preview and sets the active annotation color
- Pixel ruler tool â Draw a ruler across the screenshot to measure distances in pixels
- Blur tool â Drag over sensitive content (faces, emails, passwords) to apply a Gaussian blur before sharing
- OCR â Copy Text â Draw a lasso around text in the screenshot to extract it via OCR and copy to clipboard (uses Windows.Media.Ocr, no external dependencies)
- Capture Library â Browse your saved captures, filter by date range, and search by filename or OCR text from the tray Library entry
- Open existing image â Load a PNG, JPG/JPEG, or BMP from the tray menu and annotate it without taking a new screenshot
- Pin screenshot â Pin the captured screenshot as a floating, always-on-top, resizable window for quick reference while you work
- Screenshot Beautifier â Frame a capture on a gradient or solid background (seven presets) for a presentation-ready image
- Screenshot watermark â Optionally stamp a configurable text watermark on captured screenshots
- Undo / redo â Full undo/redo stack during annotation
- Copy & auto-save â Copy to clipboard; optional auto-save to a configurable folder
- Screen recording â Record a selected region to MP4 (H.264 via ffmpeg) or start a whole-screen recording instantly with
Ctrl+Shift+R (default); optional microphone audio from a selected Windows input device
- Recording-time annotations â Add shapes and text directly on top of a recording while it is in progress; switch between draw mode and interact mode from the floating HUD
- Video watermark â Optionally burn a configurable watermark into MP4 recordings
- Video trim â Trim the start and end of a recent recording from the tray's Recent recordings menu (requires ffmpeg)
- Tray menu icons â Core tray actions now include consistent glyph icons for faster scanning
- Cursor highlight â Configurable glowing ring around the cursor during recording so viewers never lose track of your pointer
- Click ripple â Visual ripple effect on mouse clicks during recording to make interactions obvious
- GIF export â Export any recent recording to GIF directly from the tray's Recent recordings menu (requires ffmpeg)
- Recording transcripts â Automatically transcribe narrated recordings to
.txt and .srt sidecar files. Runs entirely on your machine with Whisper â no cloud, no API key, nothing uploaded. English only; transcribes microphone narration, not system audio
- Capture delay â Configurable countdown (0 / 3 / 5 / 10 s) before the selection overlay appears, useful for capturing menus and hover states
- Auto-updates â A background service checks GitHub Releases on launch and on a configurable schedule (every 2 hours / 6 hours / 12 hours / day / 2 days / 3 days / never). When a new version is found a tray balloon appears; click it to confirm and install without opening the browser
- System tray â Runs silently in the background; all actions accessible from the tray icon
- Theme support â Choose Light, Dark, or follow the system theme from Settings
Use cases
- Bug reports â Capture a precise region, annotate it, and copy or save the result for issue tracking and support requests
- Documentation â Create quick step-by-step screenshots with arrows, numbered steps, and text callouts for guides and tutorials
- Live workflow capture â Record a selected region while drawing annotations on top of the recording as you work
- Sensitive content redaction â Blur passwords, emails, and other private details before sharing screenshots or recordings
- Text extraction â Select text in a screenshot with OCR and copy it directly to the clipboard
System tray menu
Right-click the tray icon to access all actions:
| Item | Description |
|---|
| New Snip | Open the region-capture overlay (same as the capture hotkey) |
| Whole Screen Snip | Instantly capture the entire screen |
| Clean Window Snip | Capture the active window with a cleaner result |
| Open Image... | Load a PNG / JPG / BMP file and open it in the annotation overlay |
| Recent Captures | Submenu listing the last 5 saved screenshots; each has Open and Open folder actions |
| Recent Recordings | Submenu listing the last 5 recordings; each has Open, Trim, Export to GIF, and Open folder actions |
| Library | Open the capture library window |
| Open Folders | Quick access to Snips Folder, Videos Folder, and Logs Folder |
| Settings | Open the Settings window |
| Check for Updates / Install Update | Manually check for updates or install a pending update directly from tray |
| About | Show version information |
| Quit Pointframe | Quit the application |
Left-clicking the tray icon triggers New Snip directly.
Settings
Open Settings from the tray icon to configure:
Capture
| Setting | Description |
|---|
| Screenshot save folder | Where auto-saved screenshots are written |
| Auto-save on copy | Automatically save every screenshot when copied |
| Capture delay | Countdown (sec) before the selection overlay opens: 0 / 3 / 5 / 10 |
| Capture hotkey | The key that triggers the region-capture overlay (default: Print Screen); supports modifier keys (Ctrl, Shift, Alt) |
Recording
| Setting | Description |
|---|
| Recording output folder | Where recorded MP4 files are saved |
| Record hotkey | The key combination that starts a whole-screen recording (default: Ctrl+Shift+R) |
| Video watermark | Optional watermark overlay in MP4 recordings |
| Cursor highlight | Show a glowing ring around the cursor during recording; configurable size |
| Click ripple | Show a ripple effect on mouse clicks during recording |
| Microphone (advanced) | Include microphone audio when recording starts |
| Microphone device (advanced) | Which Windows audio input device to use |
| Transcript (advanced) | Generate a .txt and .srt transcript after a recording is saved (on by default). Requires microphone audio and the English speech model; the row shows which one is missing and offers to download it |
| GIF export FPS (advanced) | Frame rate for GIF exports: 5 / 8 / 10 / 15 / 20 |
Annotation
| Setting | Description |
|---|
| Default annotation color | Pre-selected color when the overlay opens |
| Stroke thickness | Default pen/shape width |
| Style presets | Up to 5 named color-and-thickness shortcuts shown in the annotation toolbar |
Shortcuts
| Setting | Description |
|---|
| Region capture hotkey | Opens the region capture overlay (default: Print Screen) |
| Whole-screen record hotkey | Starts whole-screen recording (default: Ctrl+Shift+R) |
| Clean window snip hotkey | Starts clean-window capture (default: Ctrl+Shift+W) |
| Overlay shortcuts | Configure copy, save-as, undo, redo, show-shortcuts, and close keys for the overlay |
App
| Setting | Description |
|---|
| Theme | App appearance: Light, Dark, or System (follows Windows) |
| Auto-update check interval | How often to check for new releases: Every 2 hours / Every 6 hours / Every 12 hours / Every day / Every 2 days / Every 3 days / Never |
Keyboard shortcuts
| Shortcut | Action |
|---|
Print Screen (default, configurable) | Open region-capture overlay |
Ctrl+Shift+R (default, configurable) | Start whole-screen recording |
Ctrl+Shift+W (default, configurable) | Start clean-window snip |
Ctrl+Z | Undo last annotation |
Ctrl+Y | Redo annotation |
Ctrl+C | Copy screenshot to clipboard |
Escape | Close the overlay / cancel current action |
Requirements
- Windows 10 or later
- .NET 10 Desktop Runtime
- ffmpeg â for MP4 recording and GIF export. The installer offers to download it; it can also be placed next to the app or on
PATH
- English speech model (~141 MB) â only for recording transcripts. Tick the optional component during setup, or download it later from Settings ⸠Recording
- Standalone MCP recording additionally requires
ffmpeg.exe; the published MCP package builder places it next to Pointframe.Mcp.exe
Installation
Via Scoop
scoop install pointframe
Via winget (recommended)
winget install DimitarRadenkov.Pointframe
Manual installer
Download the latest installer from the Releases page and run it. During setup you can choose to download ffmpeg.exe, which is required for MP4 recording and GIF export.
Troubleshooting
- Recording or GIF export does not start â Pointframe requires
ffmpeg.exe for MP4 recording and GIF export. If you skipped the ffmpeg download during setup, install ffmpeg.exe next to the app, under Assets\ffmpeg, or on PATH.
- OCR is unavailable â OCR uses Windows.Media.Ocr and requires a supported Windows build.
- Hotkey seems ignored â Make sure another app is not already using the same key and try changing the capture hotkey in Settings.
- App is running but not visible â Pointframe lives in the system tray after launch.
Building from source
git clone https://github.com/dimitar-radenkov/Pointframe.git
cd Pointframe
dotnet build Pointframe/Pointframe.csproj
dotnet run --project Pointframe/Pointframe.csproj
# Build the standalone MCP host
dotnet build Pointframe.Mcp/Pointframe.Mcp.csproj
Running tests
dotnet test Pointframe.Tests/Pointframe.Tests.csproj
Project structure
Pointframe/ Main WPF application
App.xaml.cs DI setup, tray icon, global hotkeys
AnnotationTool.cs Enum of all annotation tool types
CountdownWindow Fullscreen countdown overlay
OverlayWindow Region-selection and annotation UI
RecordingOverlayWindow Live annotation surface during recording
ViewModels/ MVVM view models
Services/ Screen capture, recording, geometry, update check
Models/ Immutable data records and settings
Pointframe.Tests/ xUnit test project
Services/ Service unit tests
ViewModels/ ViewModel unit tests
Versioning
Versions are managed automatically by Nerdbank.GitVersioning.
- The base version (
major.minor) is declared in version.json.
- The patch number is derived from the commit height â it increments automatically with every commit, so you never need to touch it manually.
- On a tagged release (
v*) the version has no pre-release suffix (e.g. 1.2.5). On non-release builds a short commit hash is appended (e.g. 1.2.5-g1a2b3c4).
To bump the version:
| Goal | Action |
|---|
| Bug-fix / patch | Nothing â commit height auto-increments |
| New feature (minor) | Edit version.json â "version": "1.3" |
| Breaking change (major) | Edit version.json â "version": "2.0" |
Tech stack
- WPF / .NET 10
- CommunityToolkit.Mvvm â
[ObservableProperty], [RelayCommand]
- Microsoft.Extensions.DependencyInjection â constructor injection throughout
- Serilog â file + debug logging (
%LOCALAPPDATA%\Pointframe\logs\)
- ffmpeg â external encoder used for MP4 recording and GIF export
- Microsoft.Extensions.Hosting â Generic Host +
BackgroundService for the auto-update background loop
- Windows.Media.Ocr â built-in Windows OCR for text extraction
- Hardcodet.Wpf.TaskbarNotification â system tray icon
- Nerdbank.GitVersioning â automatic semantic versioning from git history
- xUnit â unit tests
- Azure Monitor / OpenTelemetry â anonymous usage telemetry (disabled when connection string is absent)
đ¤ Contributing
We welcome contributions! Whether it's reporting a bug, suggesting a feature, or submitting a pull request.
Pointframe is built on a very clean, modern stack (.NET 10, WPF, CommunityToolkit.Mvvm) making it a great jumping-off point for developers.
- Check out our Developer Guide and Architecture Knowledge Base.
- Browse the open issues or look for ones tagged
good first issue.
- Open a Pull Request!
Privacy & Telemetry
Pointframe collects anonymous, privacy-safe usage telemetry in official builds to help understand how the app is used and catch errors early. Screenshots, recordings, OCR output, file names, file paths, exception messages, and stack traces are not sent as telemetry.
What is collected
Every event below is defined in TelemetryEventCatalog.cs, which is the single source of truth. A unit test fails the build if this table and the catalog ever disagree.
App lifecycle
| Event | Properties |
|---|
app_started | os_build, screen_count |
startup_completed | duration_ms |
app_heartbeat | uptime_minutes (sent every 4 hours while the tray app remains open) |
app_closed | session_minutes |
Capture
| Event | Properties |
|---|
snip_started | type (region / whole_screen), source (tray / hotkey) |
snip_cancelled | type (region / whole_screen) |
capture_delay_used | delay_seconds |
capture_completed | action (copy / save / save_as / auto_save) |
capture_pinned | â |
first_capture_completed | capture_type, first_action, time_from_install_minutes when available |
open_image_used | â |
annotation_committed | tool, count (one event per tool, sent once when the annotation surface closes) |
Recording
| Event | Properties |
|---|
recording_started | type (region / whole_screen) |
recording_completed | duration_seconds when available |
transcript_completed | success, duration_seconds, plus segment_count on success or skip_reason when skipped |
transcript_failed | exception_type |
first_recording_completed | with_audio, duration_seconds and time_from_install_minutes when available |
recording_hud_pause_toggled | state |
recording_hud_stopped | duration_seconds |
recording_hud_microphone_toggled | state |
recording_hud_display_mode_changed | display_mode |
recording_hud_annotation_input_toggled | annotation_input_state |
recording_hud_tool_selected | annotation_tool |
recording_hud_undo_annotations | â |
recording_hud_clear_annotations | â |
ffmpeg_missing | â |
microphone_unavailable | â |
Export and editing
| Event | Properties |
|---|
gif_export_started | â |
gif_export_completed | success, duration_seconds |
video_trim_opened | â |
video_trim_started | â |
video_trim_completed | success, canceled |
beautify_opened | â |
screenshot_beautified | â |
screenshot_beautified_copied | â |
OCR and library
| Event | Properties |
|---|
ocr_attempted | selection_width_px, selection_height_px |
ocr_no_text | selection_width_px, selection_height_px |
ocr_used | selection_width_px, selection_height_px |
library_open_used | â |
library_ocr_search_used | â |
Settings and About
| Event | Properties |
|---|
settings_opened | app_section |
settings_section_changed | app_section |
settings_saved | app_section |
settings_section_reset | app_section |
settings_defaults_restored | â |
settings_canceled | â |
about_opened | â |
about_closed | â |
about_url_opened | url_host (host name only, never a full URL) |
Updates and diagnostics
| Event | Properties |
|---|
update_check_manual | â |
update_available | version |
update_confirmed | version |
update_dismissed | version |
unhandled_exception | exception_type, context, last_action when available |
Every event includes an app version, a per-run session_id, a telemetry_channel (product or diagnostic), a telemetry_schema_version, and an install_id when one is available. The install ID is a random GUID generated once on first launch and stored locally. It is used only to count unique installs; it is not tied to an account or identity.
Properties are allow-listed per event in the catalog: anything a caller passes that the event does not declare is reported as a schema violation, and every value is truncated to 200 characters. Both measures exist to keep paths, file names, and recognised text out of telemetry by construction rather than by convention.
The last_action value attached to unhandled_exception is the name of the most recent product event â background diagnostic events such as app_heartbeat never overwrite it.
Nothing leaves your machine except these anonymised events. Screenshots, recordings, OCR output, file names, and file paths are never transmitted. Local diagnostic logs are stored under %LOCALAPPDATA%\Pointframe\logs\ and may include local paths to help troubleshoot issues; they are not uploaded automatically.
Source builds
Telemetry is disabled automatically when the ApplicationInsights:ConnectionString value in appsettings.json is empty (which is the default in the source repository). Only official builds distributed via the installer include the real connection string.
For contributors
To enable telemetry locally during development, create Pointframe/appsettings.Local.json (gitignored):
{
"ApplicationInsights": {
"ConnectionString": ""
}
}
To set up your own Azure Application Insights resource, follow the Azure Monitor setup guide.
Feature usage report
Use the ready-to-run KQL report pack in docs/appinsights-feature-usage-queries.kql to track:
- Weekly active installs and sessions
- Per-feature adoption (% installs that used each feature)
- Feature funnel conversion (snip -> annotate -> pin/ocr)
- Power-user and stickiness indicators
- Version split and regression spotting after releases