diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0ee846e..5d09274 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,7 @@
* Display host and database statistics generated by the corresponding diagnostic MongoDB commands in addition to collection stats (#15).
* Added version number of the running Rolens instance in the about dialog (#25, #28).
* Fixed host/database selection bug in grid.
+* Added meaningful window titles, and actually show these in the title bar (macOS).
## [v0.2.0]
diff --git a/frontend/src/app.svelte b/frontend/src/app.svelte
index 700b4d3..1e82bd4 100644
--- a/frontend/src/app.svelte
+++ b/frontend/src/app.svelte
@@ -6,6 +6,7 @@
import environment from '$lib/stores/environment';
import hosts from '$lib/stores/hosts';
import applicationInited from '$lib/stores/inited';
+ import windowTitle from '$lib/stores/windowtitle';
import About from '$organisms/about.svelte';
import Connection from '$organisms/connection/index.svelte';
import Settings from '$organisms/settings/index.svelte';
@@ -42,7 +43,7 @@