Skip to content

Commit b4a4314

Browse files
committed
Fix butterfly is referenced instead of flow
1 parent efb5b25 commit b4a4314

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

app/lib/l10n/app_en.arb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@
303303
"update": "Update",
304304
"currentVersion": "Current version",
305305
"checkForUpdates": "Check for updates",
306-
"checkForUpdatesWarning": "Performing a check for updates will connect to the Butterfly website to get the information.",
306+
"checkForUpdatesWarning": "Performing a check for updates will connect to the Flow website to get the information.",
307307
"usingLatestStable": "You are using the latest stable version",
308308
"usingLatestNightly": "You are using the latest nightly version",
309309
"updateNow": "Update now",

app/lib/main.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,7 @@ const flavor = String.fromEnvironment('flavor');
216216
const isNightly =
217217
flavor == 'nightly' || flavor == 'dev' || flavor == 'development';
218218
const shortApplicationName = isNightly ? 'Flow Nightly' : 'Flow';
219+
const applicationMinorVersion = "0.4.2";
219220
const applicationName = 'Linwood $shortApplicationName';
220221

221222
Future<String> getCurrentVersion() async {

app/lib/pages/settings/general.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ class _GeneralSettingsPageState extends State<GeneralSettingsPage> {
196196
onTap: () async {
197197
await launchUrl(
198198
Uri.parse(
199-
'https://butterfly.linwood.dev/downloads',
199+
'https://flow.linwood.dev/downloads',
200200
),
201201
mode: LaunchMode.externalApplication,
202202
);
@@ -227,8 +227,8 @@ class _GeneralSettingsPageState extends State<GeneralSettingsPage> {
227227
ListTile(
228228
title: Text(AppLocalizations.of(context).releaseNotes),
229229
leading: const PhosphorIcon(PhosphorIconsLight.flag),
230-
onTap: () =>
231-
launchUrl(Uri.https("go.linwood.dev", "flow/0.3")),
230+
onTap: () => launchUrl(Uri.https(
231+
"go.linwood.dev", "flow/$applicationMinorVersion")),
232232
),
233233
ListTile(
234234
title: const Text("Matrix"),

docs/astro.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export default defineConfig({
2929
{icon: "matrix", label: "Matrix", href: "https://linwood.dev/matrix"},
3030
{icon: "discord", label: "Discord", href: "https://linwood.dev/discord"},
3131
{icon: "blueSky", label: "Bluesky", href: "https://bsky.app/profile/linwood.dev"},
32-
{icon: "github", label: "GitHub", href: "https://github.com/LinwoodDev/Butterfly"},
32+
{icon: "github", label: "GitHub", href: "https://github.com/LinwoodDev/Flow"},
3333
],
3434
components: {
3535
Head: "./src/components/Head.astro",

docs/src/content/docs/af/community/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ Try updating your browser to the latest version.
2323

2424
> [#244](https://github.com/LinwoodDev/Butterfly/issues/244)
2525
26-
Flow is available on iOS as preview. Click [here](https://flow.linwood.dev/downloads/ios) to download it. See [here](https://github.com/LinwoodDev/Flow/issues/244#issuecomment-1935460878) why it's not available on the App Store.
26+
Flow is available on iOS as preview. Click [here](https://flow.linwood.dev/downloads/ios) to download it. See [here](https://github.com/LinwoodDev/Butterfly/issues/244#issuecomment-1935460878) why it's not available on the App Store.

metadata/en-US/changelogs/11.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@
55
* Fix ical importer doesn't import calendar items ([#89](https://github.com/LinwoodDev/Flow/issues/89))
66
* Fix event user connecting not working correctly
77
* Fix dismissing removes items instead of disconnecting them
8+
* Fix butterfly is referenced instead of flow
89

910
Read more here: https://linwood.dev/flow/0.4.2

0 commit comments

Comments
 (0)