Skip to content

Commit

Permalink
chore: Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ashwinkey04 committed Nov 3, 2021
1 parent cd62c08 commit 72820c9
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
3. Clone your fork of the project locally. At the command line:

```
$ git clone https://github.com/YOUR-GITLAB-USERNAME/raag.git
$ git clone https://github.com/YOUR-GITHUB-USERNAME/raag.git
```

4. Open your code favourite editor (VS Code, Android Studio etc)
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:4.1.0'
classpath 'com.android.tools.build:gradle:4.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
Expand Down
2 changes: 1 addition & 1 deletion android/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip
14 changes: 7 additions & 7 deletions lib/model/strings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@ var loading='Loading';
var willBeStored='Downloaded files will be stored to \nAndroid/Data/in.amfoss.raag/files\nUse a File manager to move to your preferred location';
var y='Downloaded files will be stored to \nDownload/Raag/';
var downloadedLocation='Download Location';
var d='Storage/Download/Raag';
var e='Android/Data/in.amfoss.raag/files/';
var defaultDownloadDir='Storage/Download/Raag';
var alternateDownloadDir='Android/Data/in.amfoss.raag/files/';
var settings='Settings';
var noPageHistory='No page in history';
var noForward='No page to go forward';
var millenium='The Millennial\'s music app';
var allSongs='Listen to all your songs in one place';
var youtube='YouTube to your device. No strings';
var splashTagString='The Millennial\'s music app';
var splashCaption='Listen to all your songs in one place';
var splashYouTube='YouTube to your device. No strings';
var skip='Skip';
var unkownError='Unknown error';
var cancel='Cancel';
var unable='Raag was unable to create a file. Try changing the download location from settings and try again';
var downloadMus='Download music';
var fileCreationError='Raag was unable to create a file. Try changing the download location from settings and try again';
var downloadMusicString='Download music';
4 changes: 2 additions & 2 deletions lib/view/download_music.dart
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ class _DownloadMusicState extends State<DownloadMusic> {
context: context,
title: 'File error',
desc:
unable,
fileCreationError,
type: AlertType.error,
style: Styles.alertStyle(context),
buttons: [
Expand Down Expand Up @@ -233,7 +233,7 @@ class _DownloadMusicState extends State<DownloadMusic> {
icon: Icon(Icons.arrow_back_ios_outlined),
onPressed: () => Navigator.pop(context)),
title: Text(
downloadMus,
downloadMusicString,
style: Theme.of(context).textTheme.headline3),
centerTitle: true,
actions: [
Expand Down
6 changes: 3 additions & 3 deletions lib/view/onboarding.dart
Original file line number Diff line number Diff line change
Expand Up @@ -54,23 +54,23 @@ class _OnBoardingState extends State<OnBoarding> {
type: appName,
startGradientColor: Theme.of(context).colorScheme.secondary,
endGradientColor: Colors.deepPurple,
subText: millenium),
subText: splashTagString),
IntroWidget(
screenWidth: screenWidth,
screenHeight: screenHeight,
image: 'assets/images/onBoarding2.png',
type: 'Listen',
startGradientColor: hex('407BFF'),
endGradientColor: hex('004DFF'),
subText: allSongs),
subText: splashCaption),
IntroWidget(
screenWidth: screenWidth,
screenHeight: screenHeight,
image: 'assets/images/onBoarding3.png',
type: 'Download',
startGradientColor: hex('FF725E'),
endGradientColor: hex('FF1A00'),
subText: youtube),
subText: splashYouTube),
];

List<Widget> _buildPageIndicator() {
Expand Down
4 changes: 2 additions & 2 deletions lib/widgets/download_location_button_settings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ class DownloadLocationButton extends StatelessWidget {
),
Text(
provider.appStorage == true
? d
: e,
? defaultDownloadDir
: alternateDownloadDir,
style: Theme.of(context).textTheme.subtitle2,
)
],
Expand Down
12 changes: 6 additions & 6 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ packages:
name: async
url: "https://pub.dartlang.org"
source: hosted
version: "2.8.2"
version: "2.8.1"
audio_manager:
dependency: "direct main"
description:
Expand Down Expand Up @@ -63,7 +63,7 @@ packages:
name: characters
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.0"
version: "1.1.0"
charcode:
dependency: transitive
description:
Expand Down Expand Up @@ -260,7 +260,7 @@ packages:
name: matcher
url: "https://pub.dartlang.org"
source: hosted
version: "0.12.11"
version: "0.12.10"
meta:
dependency: transitive
description:
Expand Down Expand Up @@ -496,7 +496,7 @@ packages:
name: test_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.4.3"
version: "0.4.2"
typed_data:
dependency: transitive
description:
Expand All @@ -510,7 +510,7 @@ packages:
name: vector_math
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.1"
version: "2.1.0"
webview_flutter:
dependency: "direct main"
description:
Expand Down Expand Up @@ -547,5 +547,5 @@ packages:
source: hosted
version: "1.10.6"
sdks:
dart: ">=2.14.0 <3.0.0"
dart: ">=2.13.0 <3.0.0"
flutter: ">=1.24.0-10"

0 comments on commit 72820c9

Please sign in to comment.