-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathchangelog.html
More file actions
36 lines (34 loc) · 1.98 KB
/
changelog.html
File metadata and controls
36 lines (34 loc) · 1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
layout: default
title: What's new in Plausible Analytics
description: This is the changelog for Plausible Analytics. It lists new and updated features so you can get a quick overview of what's new in your Plausible account.
---
<div class="container max-w-screen-sm mt-24">
<div class="text-center">
<h1 class="text-4xl font-black">What's new in Plausible Analytics</h1>
<p class="content-text text-lg mt-6">
Plausible is updated multiple times per week. Here we list the major new features and improvements.
Take a look at our <a href="https://feedback.plausible.io/roadmap" target="_blank" rel="noopener" class="text-indigo-600 hover:underline">feedback board</a> to see what's coming next.
Follow us on <a href="https://twitter.com/plausiblehq" target="_blank" rel="noopener" class="text-indigo-600 hover:underline">Twitter</a>,
<a href="https://bsky.app/profile/plausible.io" target="_blank" rel="noopener" class="text-indigo-600 hover:underline">Bluesky</a>,
<a href="https://fosstodon.org/@plausible" target="_blank" rel="noopener" class="text-indigo-600 hover:underline">Mastodon</a>
and <a href="https://www.linkedin.com/company/plausible-analytics/" target="_blank" rel="noopener" class="text-indigo-600 hover:underline">LinkedIn</a> for more updates.
</p>
</div>
</div>
<ul class="container mt-12">
<hr class="w-full bg-gray-100 my-12" style="height: 1px;">
{% assign sorted = site.changes | reverse %}
{%- for post in sorted -%}
<li class="mt-10 list-reset lg:flex items-start">
<time class="lg:mt-1 uppercase text-xs lg:text-sm lg:leading-9 text-gray-500 font-bold w-48 flex-shrink-0">{{ post.date | date: "%b %-d, %Y" }}</time>
<div>
<h2 class="text-2xl tracking-tight font-extrabold text-gray-900 md:text-3xl">
{{ post.title | escape }}
</h2>
<div class="mt-6 prose max-w-none">{{ post.content }}</div>
</div>
</li>
<hr class="w-full bg-gray-100 my-12" style="height: 1px;">
{%- endfor -%}
</ul>