Skip to content

Releases: umami-software/umami

v0.54.0

26 Sep 06:55
85f791e
Compare
Choose a tag to compare

New features

Page filters

You can now display statistics for a single page url.

page-filters

New language: Faroese! 🙌

v0.48.0

22 Sep 04:59
418a24d
Compare
Choose a tag to compare

New features

Dark mode! 🌔 🌞

darkmode

New languages: Greek and Swedish! 😄

Other changes

  • Responsive CSS fixes for mobile
  • Refactored some components

v0.42.0

19 Sep 18:09
4d2a51c
Compare
Choose a tag to compare

New features

New language: Danish! 💯 🕺

Timezone configuration

You can now set your timezone to something other than your system default

image

Account dashboard

Changed account dashboard from a button into a link so you can now open it in a new tab

image

Tracker updates

Reduced the size of the tracker from 6KB to 2KB!

Added new configuration options for the tracker, see https://umami.is/docs/tracker-config
You can now set your own event type for events, see https://umami.is/docs/tracker-functions

Other changes

  • Additional API security
  • You can now set localhost as your website domain for development and testing
  • Various bug fixes

v0.37.0

18 Sep 07:12
0005e4e
Compare
Choose a tag to compare

New features

New languages

French and Mongolian are now supported! 🥳 🎉

Date picker can now choose between a single day or date range

calendar

Profile enhancements

You can now choose the default date range for all your websites in the dashboard
image

Formatted referrers for better readability

image

Navigation updates

  • View details is now a link so you can open details in another tab
  • You can go directly to a website's details page from Settings > Websites
  • Settings pages are now individual routes so you can use the back button

Other changes

  • Updated node packages to latest versions
  • API security updates
  • Lots of small styling changes

v0.32.0

14 Sep 04:02
d6877af
Compare
Choose a tag to compare

New features

Custom date range picker

calendar3

User dashboards

Admins can now access the dashboard of user accounts. Just go to Settings > Accounts and click the Websites button next to the user.

image

New languages

Japanese and Spanish are now supported!

image

v0.27.0

11 Sep 04:53
ebc9f1d
Compare
Choose a tag to compare

New features

New languages!

Umami now includes English, Chinese, Dutch, German, Russian and Turkish. A huge thanks to community for providing the language translations ❤️ 🙏
image

Tooltips and labels on charts are now localized
image

Ignore bots

Traffic from bots is no longer included in stats

v0.24.0

08 Sep 04:13
8df3c21
Compare
Choose a tag to compare

New features

i18N support

Only two language are supported right now English and Chinese, but would greatly welcome PRs from the community for other languages. See #92 for instructions.

image

v0.21.0

03 Sep 22:55
681852b
Compare
Choose a tag to compare

New features

Custom events

You can now send custom events to umami using the global umami variable. Example:

const button = document.getElementById('signup-button');

button.onclick = () => umami('Sign up button click');

You could already do this using umami CSS classes, umami--onclick--signup-button-click, but now you have more control via custom Javascript.

Responsive chart labels

Chart labels should now display correctly at mobile screen sizes
image
image

Query string URLs now supported

Some applications use URLs like /blog/index.php?/article/100 for navigation. This is now correctly counted as a unique URL.

v0.20.0

01 Sep 05:32
bf6df36
Compare
Choose a tag to compare

New features

Toast notifications

image

Loading indicators and refresh button

image

Custom host URL

By setting data-host-url attribute in the umami tracker, you can tell umami where to make the API calls. For instance to
a subfolder or another domain.

<script async defer 
  data-website-id="83dd64c4-17ad-4e3e-a905-b3d8c867c1a5"
  src="http://mywebsite.com/umami.js"
  data-host-url="http://umami.mywebsite.com">
</script>

v0.17.0

01 Sep 04:43
Compare
Choose a tag to compare

New features

Events UI

image

You can now see events in your website details. Learn how to track events at https://umami.is/docs/track-events

Filters for page and referrer urls

image

When you click More in your website details page, you will see additional filters for Pages and Referrers.

  • Domain only - Groups stats by the domain name only
  • Combined - Urls are combined together without the query string
  • Raw - All the urls as they were originally collected

Respect user's do not track settings

Set ENABLE_DNT=1 in your .env file to enable this feature.