diff --git a/docs/changelog.md b/docs/changelog.md
index 8a3bd6a..46d5334 100644
--- a/docs/changelog.md
+++ b/docs/changelog.md
@@ -5,7 +5,7 @@
## DVR-Scan 1.7
-### 1.7 (TBD)
+### 1.7 (February 28, 2025)
#### Release Notes
diff --git a/docs/index.md b/docs/index.md
index aabe669..fe460e5 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -11,7 +11,7 @@ hide:
------------------------------------------------------
-!!! success "Latest Version: 1.6.2 (December 17, 2024)"
+!!! success "Latest Version: 1.7 (February 28, 2025)"
[:fontawesome-solid-download: Download](download.md){ .md-button #download-button }[:fontawesome-solid-book: User Guide](guide.md){ .md-button #changelog-button }[:fontawesome-solid-bars: Documentation](docs.md){ .md-button #documentation-button }[:fontawesome-solid-gear: Resources](changelog.md){ .md-button #quickstart-button }
diff --git a/docs/index_docs.md b/docs/index_docs.md
index 5a8d496..7ced8d8 100644
--- a/docs/index_docs.md
+++ b/docs/index_docs.md
@@ -11,7 +11,7 @@ hide:
------------------------------------------------------
-!!! info "Version: 1.6.2 (December 17, 2024)"
+!!! success "Latest Version: 1.7 (February 28, 2025)"
[:fontawesome-solid-book: User Guide](guide.md){ .md-button #changelog-button }[:fontawesome-solid-bars: Documentation](docs.md){ .md-button #documentation-button }[:fontawesome-solid-gear: Resources](changelog.md){ .md-button #download-button }
@@ -19,7 +19,17 @@ hide:
DVR-Scan is a command-line application that **automatically detects motion events in video files** (e.g. security camera footage). DVR-Scan looks for areas in footage containing motion, and saves each event to a separate video clip. DVR-Scan is free and open-source software, and works on Windows, Linux, and Mac.
-## :fontawesome-solid-person-running:Quickstart
+## Quickstart :fontawesome-brands-windows::fontawesome-brands-apple::fontawesome-brands-linux:
+
+### UI
+
+Launch DVR-Scan from the shortcut or run the `dvr-scan-app` command. Press **Add** to add your input videos, and press **Start** to find and extract segments with motion:
+
+
+
+To limit detection to certain areas, press **Set Regions** and use [the **Region Editor**](guide.md#region-editor). Motion sensitivity can be adjusted under **Settings -> Motion**. See the [User Guide](guide.md) for more information.
+
+### CLI
Scan `video.mp4` (separate clips for each event):
diff --git a/dvr_scan/__init__.py b/dvr_scan/__init__.py
index f14a55b..eceae31 100644
--- a/dvr_scan/__init__.py
+++ b/dvr_scan/__init__.py
@@ -35,7 +35,7 @@
import sys
# Used for module/distribution identification.
-__version__ = "1.7-dev1"
+__version__ = "1.7"
# Handle loading OpenCV. This **MUST** be first before any other DVR-Scan or third-party
# packages are imported which might attempt to import the `cv2` module.