Introducing In-App Announcements
Mar 30, 2026
We're excited to introduce In-App Announcements — now your users see new changelogs instantly, without needing extra clicks!
Highlights
- Instant Visibility: Updates appear the moment you publish.
- Engaging Design: A clean, eye-catching popup.
- Customizable: Match your brand with custom colors and positioning.
How It Works
When you publish a new changelog entry, a small notification badge appears in the bottom-right corner of your app. Clicking it reveals the full announcement in a sleek modal.
// Enable in-app announcements
import { Changelog } from "@autter/sdk";
const changelog = new Changelog({
projectId: "your-project-id",
position: "bottom-right",
theme: "dark",
});
changelog.init();Configuration Options
| Option | Type | Default | Description |
|---|---|---|---|
position | string | "bottom-right" | Widget position on screen |
theme | string | "auto" | Color theme: "light", "dark", or "auto" |
badge | boolean | true | Show unread count badge |
autoOpen | boolean | false | Auto-open on new entries |
This feature was the most requested item in our feedback survey. We're thrilled to finally ship it!
