diff --git a/lib/widgets/settings_page.dart b/lib/widgets/settings_page.dart index dcc18f3..c261985 100644 --- a/lib/widgets/settings_page.dart +++ b/lib/widgets/settings_page.dart @@ -74,14 +74,14 @@ class SettingsPage extends StatelessWidget { ), ListTile( trailing: const Icon(Icons.info_outline), - title: const Text("About recon"), + title: const Text("About OpenContacts"), onTap: () async { showAboutDialog( context: context, applicationVersion: (await PackageInfo.fromPlatform()).version, applicationIcon: InkWell( onTap: () async { - if (!await launchUrl(Uri.parse("https://github.com/Nutcake/recon"), + if (!await launchUrl(Uri.parse("https://git.mrdab.vore.media/ThatOneJackalGuy/OpenContacts"), mode: LaunchMode.externalApplication)) { if (context.mounted) { ScaffoldMessenger.of(context) @@ -92,7 +92,7 @@ class SettingsPage extends StatelessWidget { child: Container( margin: const EdgeInsets.all(16), constraints: const BoxConstraints(maxWidth: 64), - child: Image.asset("assets/images/logo512.png"), + child: Image.asset("assets/images/testingIcon512.png"), ), ), applicationLegalese: "ReCon by Nutcake, OpenContacts by ThatOneJackalGuy. Both apps made with <3", diff --git a/pubspec.yaml b/pubspec.yaml index 7686589..e729211 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -16,7 +16,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # In Windows, build-name is used as the major, minor, and patch parts # of the product and file versions while build-number is used as the build suffix. -version: 0.0.1-indev+1 +version: 0.0.1-alpha+2 environment: sdk: ">=3.0.1"