Skip to content

Commit 0c3b231

Browse files
committed
rename blackhole to singularity
1 parent 3890139 commit 0c3b231

File tree

143 files changed

+77
-2039
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

143 files changed

+77
-2039
lines changed

.github/workflows/flutter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ jobs:
4141
# echo storePassword=${{ secrets.STORE_PASSWORD }} >> ${{env.PROPERTIES_PATH}}
4242
# echo keyPassword=${{ secrets.KEY_PASSWORD }} >> ${{env.PROPERTIES_PATH}}
4343
# echo keyAlias=${{ secrets.KEY_ALIAS }} >> ${{env.PROPERTIES_PATH}}
44-
# echo storeFile=/home/runner/work/BlackHole/BlackHole/android/app/keystore.jks >> ${{env.PROPERTIES_PATH}}
45-
# echo ${{ secrets.KEYSTORE }} | base64 --decode > /home/runner/work/BlackHole/BlackHole/android/app/keystore.jks
44+
# echo storeFile=/home/runner/work/Singularity/Singularity/android/app/keystore.jks >> ${{env.PROPERTIES_PATH}}
45+
# echo ${{ secrets.KEYSTORE }} | base64 --decode > /home/runner/work/Singularity/Singularity/android/app/keystore.jks
4646

4747
# Get flutter dependencies.
4848
- run: flutter pub get

android/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
android:resource="@xml/automotive_app_desc" />
2828

2929
<receiver
30-
android:name=".BlackHoleMusicWidget"
30+
android:name=".SingularityMusicWidget"
3131
android:exported="true">
3232
<intent-filter>
3333
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />

android/app/src/main/kotlin/org/brightdv/blackhole/BlackHoleMusicWidget.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import io.flutter.plugin.common.MethodChannel
2222
/**
2323
* Implementation of App Widget functionality.
2424
*/
25-
class BlackHoleMusicWidget : AppWidgetProvider() {
25+
class SingularityMusicWidget : AppWidgetProvider() {
2626
// private lateinit var mediaSessionToken: MediaSession.Token
2727
// private lateinit var mediaController: MediaController
2828

@@ -96,7 +96,7 @@ class BlackHoleMusicWidget : AppWidgetProvider() {
9696
// }
9797

9898
// // appWidgetManager.updateAppWidget(appWidgetId, views)
99-
// val componentName = ComponentName(context, BlackHoleMusicWidget::class.java)
99+
// val componentName = ComponentName(context, SingularityMusicWidget::class.java)
100100
// appWidgetManager.updateAppWidget(componentName, views)
101101
}
102102
}

lib/APIs/api.dart

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,3 @@
1-
/*
2-
* This file is part of BlackHole (https://github.com/atinba/Singularity).
3-
*
4-
* BlackHole is free software: you can redistribute it and/or modify
5-
* it under the terms of the GNU Lesser General Public License as published by
6-
* the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
8-
*
9-
* BlackHole is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU Lesser General Public License for more details.
13-
*
14-
* You should have received a copy of the GNU Lesser General Public License
15-
* along with BlackHole. If not, see <http://www.gnu.org/licenses/>.
16-
*
17-
* Copyright (c) 2021-2023, Ankit Sangwan
18-
*/
191

202
import 'dart:convert';
213

lib/APIs/spotify_api.dart

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,3 @@
1-
/*
2-
* This file is part of BlackHole (https://github.com/atinba/Singularity).
3-
*
4-
* BlackHole is free software: you can redistribute it and/or modify
5-
* it under the terms of the GNU Lesser General Public License as published by
6-
* the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
8-
*
9-
* BlackHole is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU Lesser General Public License for more details.
13-
*
14-
* You should have received a copy of the GNU Lesser General Public License
15-
* along with BlackHole. If not, see <http://www.gnu.org/licenses/>.
16-
*
17-
* Copyright (c) 2021-2023, Ankit Sangwan
18-
*/
191

202
import 'dart:async';
213
import 'dart:convert';

lib/CustomWidgets/add_playlist.dart

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,3 @@
1-
/*
2-
* This file is part of BlackHole (https://github.com/atinba/Singularity).
3-
*
4-
* BlackHole is free software: you can redistribute it and/or modify
5-
* it under the terms of the GNU Lesser General Public License as published by
6-
* the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
8-
*
9-
* BlackHole is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU Lesser General Public License for more details.
13-
*
14-
* You should have received a copy of the GNU Lesser General Public License
15-
* along with BlackHole. If not, see <http://www.gnu.org/licenses/>.
16-
*
17-
* Copyright (c) 2021-2023, Ankit Sangwan
18-
*/
191

202
import 'package:audio_service/audio_service.dart';
213
import 'package:flutter/material.dart';

lib/CustomWidgets/animated_text.dart

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,3 @@
1-
/*
2-
* This file is part of BlackHole (https://github.com/atinba/Singularity).
3-
*
4-
* BlackHole is free software: you can redistribute it and/or modify
5-
* it under the terms of the GNU Lesser General Public License as published by
6-
* the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
8-
*
9-
* BlackHole is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU Lesser General Public License for more details.
13-
*
14-
* You should have received a copy of the GNU Lesser General Public License
15-
* along with BlackHole. If not, see <http://www.gnu.org/licenses/>.
16-
*
17-
* Copyright (c) 2021-2023, Ankit Sangwan
18-
*/
191

202
import 'package:flutter/material.dart';
213
import 'package:marquee/marquee.dart' as wrapped;

lib/CustomWidgets/artist_like_button.dart

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,3 @@
1-
/*
2-
* This file is part of BlackHole (https://github.com/atinba/Singularity).
3-
*
4-
* BlackHole is free software: you can redistribute it and/or modify
5-
* it under the terms of the GNU Lesser General Public License as published by
6-
* the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
8-
*
9-
* BlackHole is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU Lesser General Public License for more details.
13-
*
14-
* You should have received a copy of the GNU Lesser General Public License
15-
* along with BlackHole. If not, see <http://www.gnu.org/licenses/>.
16-
*
17-
* Copyright (c) 2021-2023, Ankit Sangwan
18-
*/
191

202
import 'package:flutter/material.dart';
213
import 'package:flutter_gen/gen_l10n/app_localizations.dart';

lib/CustomWidgets/bottom_nav_bar.dart

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,3 @@
1-
/*
2-
* This file is part of BlackHole (https://github.com/atinba/Singularity).
3-
*
4-
* BlackHole is free software: you can redistribute it and/or modify
5-
* it under the terms of the GNU Lesser General Public License as published by
6-
* the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
8-
*
9-
* BlackHole is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU Lesser General Public License for more details.
13-
*
14-
* You should have received a copy of the GNU Lesser General Public License
15-
* along with BlackHole. If not, see <http://www.gnu.org/licenses/>.
16-
*
17-
* Copyright (c) 2021-2023, Ankit Sangwan
18-
*/
191

202
import 'package:flutter/material.dart';
213

lib/CustomWidgets/bouncy_playlist_header_scroll_view.dart

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,3 @@
1-
/*
2-
* This file is part of BlackHole (https://github.com/atinba/Singularity).
3-
*
4-
* BlackHole is free software: you can redistribute it and/or modify
5-
* it under the terms of the GNU Lesser General Public License as published by
6-
* the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
8-
*
9-
* BlackHole is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU Lesser General Public License for more details.
13-
*
14-
* You should have received a copy of the GNU Lesser General Public License
15-
* along with BlackHole. If not, see <http://www.gnu.org/licenses/>.
16-
*
17-
* Copyright (c) 2021-2023, Ankit Sangwan
18-
*/
191

202
import 'dart:io';
213

0 commit comments

Comments
 (0)