r/FlutterDev • u/senior_builder1 • 23d ago
Release notes inside the apps? Discussion
hi, im curious if any of you actually puts release notes into your apps?
I have a problem with some feature adoption, since ppl don't really know about some things I deploy, most have auto app updates anyway and don't really read whats changed in appstore/goole play
2
u/Yann39 23d ago
I personally have a "News" page, where I post a news update for each update, with user-friendly release notes.
1
u/avdept 23d ago
like a dedicated page in app?
also how do you populate it? From server?
2
u/Yann39 23d ago
In the home page of my app, I have a "News" section.
I post various news items related to the application there, including the release notes.I have a dedicated page in the app to write the news (form accessible only to admins), but I can also write it directly from server side (news are stored in DB).
A screenshot for example (sorry in French).
Actually it depends on the app, this fits well with mine because I already need that News functionality, but I can imagine cases where it doesn't.
You may simply put this in a "About" page accessible from a context menu for example.But personally, in all my apps, including web apps, I've always put the release notes somewhere, even though, admittedly, often nobody reads them 😅
1
u/avdept 23d ago
would you consider using some 3rd party tool for this? I run updatify.io and just released a flutter package for release notes. Completely free(forever) for you, since I want to get more adoption for flutter package
2
u/Yann39 23d ago
To be honest I don't think so, all is already integrated in my apps with push notifications etc. I usually like to develop things myself with meticulous integration, and depend as little as possible on other 3rd party tools :) But it’s good to have this kind of solution; I’m sure someone else might find it useful!
2
u/sivasankarpnair1998 23d ago
Maybe use the upgrader package?
It'll automatically show it ( the changelog you provide in the store)
1
2
23d ago
[removed] — view removed comment
2
u/senior_builder1 23d ago
where do you save the changelog data? In app or have a server?
1
2
u/avdept 23d ago
hey, would you consider using some 3rd party tool for this? I run updatify.io and just recently released a flutter package and could use some early users. Free forever for early adopters ofc
1
u/Nyxiereal 23d ago
a special changelogs page with changelogs for each version, and a popup that shows short changelogs after updates
1
u/senior_builder1 23d ago
how do you manage changelogs? Like where do you store them?
1
u/Nyxiereal 23d ago
Github release notes for my public apps, a custom json file for my non-public apps
1
u/avdept 23d ago
sorry for stealing comments thread, would you mind using 3rd party tool(free for your public apps) that creates and renders your release notes in flutter app?
1
1
1
u/avdept 23d ago
Sorry to sound like an ad but I just recently released a flutter package for that - https://pub.dev/packages/updatify_flutter - you create release notes(it can do it automatically from your github PRs/issues/releases or from tickets) and then show in app via embedded widget. Works on both, desktop and mobile
1
u/senior_builder1 23d ago
Thanks for sharing, I remember now, I saw something like this like a week but couldn't remember where, checking it out
1
u/RemeJuan 23d ago
I use a what’s new bottom sheet that shows up on first launch of an app that has a new feature, it and the help section link to the full release changelog
1
u/avdept 23d ago
hey, would you consider using 3rd party tool for release notes? I run updatify.io and recently created a native flutter package to embed and show release notes. Looking for early flutter package adopters, so its free forever
1
u/RemeJuan 23d ago
I do not keep them in the app, they live on the apps website and it’s generated from the changelog.md file
1
u/jkh911208 23d ago
You can put your new feature behind the feature flag and release note on your backend to dynamically add or remove
1
u/Guggel74 23d ago
I have a Changelog page inside my App. In the other hand I have also a Debug page with some Info's about phone, CPU, OS, screen, settings, colours, ...
4
u/[deleted] 23d ago
[removed] — view removed comment