Skip to content

Commit

Permalink
app name consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
RedyAu committed Nov 25, 2024
1 parent c64ea31 commit 416c9cc
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# Sófár Lyric
# Lyric

## Downloads

You can now download a test version for Android here: https://github.com/reformatus/lyric/releases \
You can now download a test version for Android here: https://github.com/reformatus/lyric/releases
Coming soon to beta programs on Play Store and App Store.

## Your Open Worship Superapp

[![On Commit or PR](https://github.com/reformatus/lyric/actions/workflows/on-commit.yml/badge.svg)](https://github.com/reformatus/lyric/actions/workflows/on-commit.yml)
[![On Release](https://github.com/reformatus/lyric/actions/workflows/on-release.yml/badge.svg)](https://github.com/reformatus/lyric/actions/workflows/on-release.yml)

**Sófár Lyric** will be your one-stop-shop for making the best setlists, performing from sheet music with your band, and projecting lyrics with sheet music.
**Lyric** will be your one-stop-shop for making the best setlists, performing from sheet music with your band, and projecting lyrics with sheet music.
It will have an open and growing ecosystem of song libraries.

We are yet far from this future, but please enjoy the beginnings of the app as-is.
Expand Down
2 changes: 1 addition & 1 deletion lib/ui/base/home/page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class HomePage extends StatelessWidget {
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Sófár DalApp'),
title: const Text('Sófár DalApp Béta'),
),
body: Column(
children: [
Expand Down
2 changes: 1 addition & 1 deletion lib/ui/base/home/parts/about.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ void showLyricAboutDialog(BuildContext context) async {
showAboutDialog(
// ignore: use_build_context_synchronously // this would only cause a problem if packageInto takes a long time to resolve
context: context,
applicationName: 'Sófár Lyric',
applicationName: 'Lyric',
applicationVersion: '${packageInfo.version}+${packageInfo.buildNumber}',
applicationIcon: Icon(Icons.music_note), // todo replace with app icon
children: [
Expand Down
2 changes: 1 addition & 1 deletion lib/ui/loading/page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class LoadingPage extends ConsumerWidget {

return Scaffold(
appBar: AppBar(
title: const Text('Sófár Lyric'),
title: const Text('Sófár DalApp'),
bottom: PreferredSize(
preferredSize: const Size.fromHeight(4),
child: LinearProgressIndicator(),
Expand Down
24 changes: 24 additions & 0 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,14 @@ packages:
url: "https://pub.dev"
source: hosted
version: "0.11.3"
archive:
dependency: transitive
description:
name: archive
sha256: cb6a278ef2dbb298455e1a713bda08524a175630ec643a242c399c932a0a1f7d
url: "https://pub.dev"
source: hosted
version: "3.6.1"
args:
dependency: transitive
description:
Expand Down Expand Up @@ -315,6 +323,14 @@ packages:
url: "https://pub.dev"
source: hosted
version: "0.3.1"
flutter_launcher_icons:
dependency: "direct dev"
description:
name: flutter_launcher_icons
sha256: "619817c4b65b322b5104b6bb6dfe6cda62d9729bd7ad4303ecc8b4e690a67a77"
url: "https://pub.dev"
source: hosted
version: "0.14.1"
flutter_lints:
dependency: "direct dev"
description:
Expand Down Expand Up @@ -429,6 +445,14 @@ packages:
url: "https://pub.dev"
source: hosted
version: "4.1.1"
image:
dependency: transitive
description:
name: image
sha256: f31d52537dc417fdcde36088fdf11d191026fd5e4fae742491ebd40e5a8bea7d
url: "https://pub.dev"
source: hosted
version: "4.3.0"
intl:
dependency: "direct main"
description:
Expand Down
21 changes: 20 additions & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,25 @@ dev_dependencies:
riverpod_generator: ^2.3.0
riverpod_lint: ^2.1.0
drift_dev: ^2.20.3
flutter_launcher_icons: ^0.14.1

flutter:
uses-material-design: true
uses-material-design: true

flutter_launcher_icons:
android: "launcher_icon"
ios: true
image_path: "assets/icon/icon.png"
min_sdk_android: 21 # android min sdk min:16, default 21
web:
generate: true
image_path: "path/to/image.png"
background_color: "#hexcode"
theme_color: "#hexcode"
windows:
generate: true
image_path: "path/to/image.png"
icon_size: 48 # min:48, max:256, default: 48
macos:
generate: true
image_path: "path/to/image.png"

0 comments on commit 416c9cc

Please sign in to comment.