Linux package deps updated
pub asset images not found fix
@ -1,50 +0,0 @@
|
|||||||
# appimage-builder recipe see https://appimage-builder.readthedocs.io for details
|
|
||||||
version: 1
|
|
||||||
script:
|
|
||||||
- rm -rf AppDir || true
|
|
||||||
- cp -r build/linux/x64/release/bundle AppDir
|
|
||||||
- mkdir -p AppDir/usr/share/icons/hicolor/64x64/apps/
|
|
||||||
- cp assets/spotube-logo.png AppDir/usr/share/icons/hicolor/64x64/apps/
|
|
||||||
AppDir:
|
|
||||||
path: ./AppDir
|
|
||||||
app_info:
|
|
||||||
id: oss.krtirtho.spotube
|
|
||||||
name: Spotube
|
|
||||||
icon: spotube-logo
|
|
||||||
version: 2.0.0
|
|
||||||
exec: spotube
|
|
||||||
exec_args: $@
|
|
||||||
apt:
|
|
||||||
arch: amd64
|
|
||||||
allow_unauthenticated: true
|
|
||||||
sources:
|
|
||||||
- sourceline: deb http://bd.archive.ubuntu.com/ubuntu/ hirsute main restricted
|
|
||||||
- sourceline: deb http://bd.archive.ubuntu.com/ubuntu/ hirsute-updates main restricted
|
|
||||||
- sourceline: deb http://bd.archive.ubuntu.com/ubuntu/ hirsute universe
|
|
||||||
- sourceline: deb http://bd.archive.ubuntu.com/ubuntu/ hirsute-updates universe
|
|
||||||
- sourceline: deb http://bd.archive.ubuntu.com/ubuntu/ hirsute multiverse
|
|
||||||
- sourceline: deb http://bd.archive.ubuntu.com/ubuntu/ hirsute-updates multiverse
|
|
||||||
- sourceline:
|
|
||||||
deb http://bd.archive.ubuntu.com/ubuntu/ hirsute-backports main
|
|
||||||
restricted universe multiverse
|
|
||||||
- sourceline: deb http://security.ubuntu.com/ubuntu hirsute-security main restricted
|
|
||||||
- sourceline: deb http://security.ubuntu.com/ubuntu hirsute-security universe
|
|
||||||
- sourceline: deb http://security.ubuntu.com/ubuntu hirsute-security multiverse
|
|
||||||
include:
|
|
||||||
- libkeybinder-3.0-0
|
|
||||||
exclude:
|
|
||||||
- libx11-6
|
|
||||||
- libgtk-3-0
|
|
||||||
- libglib2.0-0
|
|
||||||
- libc6
|
|
||||||
files:
|
|
||||||
include: []
|
|
||||||
exclude:
|
|
||||||
- usr/share/man
|
|
||||||
- usr/share/doc/*/README.*
|
|
||||||
- usr/share/doc/*/changelog.*
|
|
||||||
- usr/share/doc/*/NEWS.*
|
|
||||||
- usr/share/doc/*/TODO.*
|
|
||||||
AppImage:
|
|
||||||
arch: x86_64
|
|
||||||
update-information: guess
|
|
Before Width: | Height: | Size: 167 KiB After Width: | Height: | Size: 167 KiB |
Before Width: | Height: | Size: 8.7 KiB After Width: | Height: | Size: 8.7 KiB |
Before Width: | Height: | Size: 76 KiB After Width: | Height: | Size: 76 KiB |
Before Width: | Height: | Size: 273 KiB After Width: | Height: | Size: 273 KiB |
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -8,7 +8,7 @@ arch=(x86_64)
|
|||||||
url="https://github.com/KRTirtho/spotube/"
|
url="https://github.com/KRTirtho/spotube/"
|
||||||
license=('BSD-4-Clause')
|
license=('BSD-4-Clause')
|
||||||
groups=()
|
groups=()
|
||||||
depends=('libkeybinder3' 'gst-plugins-good' 'webkit2gtk')
|
depends=('gstreamer' 'gst-libav', 'gst-plugins-base' 'gst-plugins-good')
|
||||||
makedepends=()
|
makedepends=()
|
||||||
checkdepends=()
|
checkdepends=()
|
||||||
optdepends=()
|
optdepends=()
|
||||||
|
@ -1,11 +0,0 @@
|
|||||||
Package: Spotube
|
|
||||||
Version: 2.0.0
|
|
||||||
Section: sound
|
|
||||||
Priority: optional
|
|
||||||
Architecture: all
|
|
||||||
Essential: no
|
|
||||||
Installed-Size: 24400
|
|
||||||
Depends: libkeybinder-3.0-0 (>= 0.3.2)
|
|
||||||
Maintainer: Kingkor Roy Tirtho <krtirtho@gmail.com>
|
|
||||||
Description: A lightweight free Spotify crossplatform-client which handles playback manually, streams music using Youtube & no Spotify premium account is needed
|
|
||||||
Homepage: https://github.com/KRTirtho/spotube
|
|
@ -1,8 +0,0 @@
|
|||||||
#!/usr/bin/env sh
|
|
||||||
|
|
||||||
echo Creating symlink
|
|
||||||
|
|
||||||
ln -s /usr/share/spotube/spotube /usr/bin
|
|
||||||
chmod +x /usr/bin/spotube
|
|
||||||
|
|
||||||
exit 0
|
|
@ -1,7 +0,0 @@
|
|||||||
#!/usr/bin/env sh
|
|
||||||
|
|
||||||
echo Removing symlink
|
|
||||||
|
|
||||||
rm /usr/bin/spotube
|
|
||||||
|
|
||||||
exit 0
|
|
@ -23,7 +23,7 @@ class Sidebar extends HookConsumerWidget {
|
|||||||
|
|
||||||
Widget _buildSmallLogo() {
|
Widget _buildSmallLogo() {
|
||||||
return Image.asset(
|
return Image.asset(
|
||||||
"assets/images/spotube-logo.png",
|
"assets/spotube-logo.png",
|
||||||
height: 50,
|
height: 50,
|
||||||
width: 50,
|
width: 50,
|
||||||
);
|
);
|
||||||
|
@ -27,7 +27,7 @@ class Login extends HookConsumerWidget {
|
|||||||
child: Column(
|
child: Column(
|
||||||
children: [
|
children: [
|
||||||
Image.asset(
|
Image.asset(
|
||||||
"assets/images/spotube-logo.png",
|
"assets/spotube-logo.png",
|
||||||
width: MediaQuery.of(context).size.width *
|
width: MediaQuery.of(context).size.width *
|
||||||
(breakpoint <= Breakpoints.md ? .5 : .3),
|
(breakpoint <= Breakpoints.md ? .5 : .3),
|
||||||
),
|
),
|
||||||
|
@ -153,7 +153,7 @@ class LoginTutorial extends ConsumerWidget {
|
|||||||
bodyAlignment: Alignment.center,
|
bodyAlignment: Alignment.center,
|
||||||
),
|
),
|
||||||
title: "Success🥳",
|
title: "Success🥳",
|
||||||
image: Image.asset("assets/images/success.png"),
|
image: Image.asset("assets/success.png"),
|
||||||
body:
|
body:
|
||||||
"Now you're successfully Logged In with your Spotify account. Good Job, mate!",
|
"Now you're successfully Logged In with your Spotify account. Good Job, mate!",
|
||||||
)
|
)
|
||||||
|
@ -44,29 +44,29 @@ class Search extends HookConsumerWidget {
|
|||||||
child: Column(
|
child: Column(
|
||||||
children: [
|
children: [
|
||||||
Container(
|
Container(
|
||||||
padding:
|
padding: const EdgeInsets.symmetric(
|
||||||
const EdgeInsets.symmetric(horizontal: 20, vertical: 10),
|
horizontal: 20,
|
||||||
|
vertical: 10,
|
||||||
|
),
|
||||||
color: Theme.of(context).backgroundColor,
|
color: Theme.of(context).backgroundColor,
|
||||||
child: Expanded(
|
child: TextField(
|
||||||
child: TextField(
|
controller: controller,
|
||||||
controller: controller,
|
decoration: InputDecoration(
|
||||||
decoration: InputDecoration(
|
isDense: true,
|
||||||
isDense: true,
|
suffix: ElevatedButton(
|
||||||
suffix: ElevatedButton(
|
child: const Icon(Icons.search_rounded),
|
||||||
child: const Icon(Icons.search_rounded),
|
onPressed: () {
|
||||||
onPressed: () {
|
ref.read(searchTermStateProvider.notifier).state =
|
||||||
ref.read(searchTermStateProvider.notifier).state =
|
controller.value.text;
|
||||||
controller.value.text;
|
},
|
||||||
},
|
|
||||||
),
|
|
||||||
hintStyle: const TextStyle(height: 2),
|
|
||||||
hintText: "Search...",
|
|
||||||
),
|
),
|
||||||
onSubmitted: (value) {
|
hintStyle: const TextStyle(height: 2),
|
||||||
ref.read(searchTermStateProvider.notifier).state =
|
hintText: "Search...",
|
||||||
controller.value.text;
|
|
||||||
},
|
|
||||||
),
|
),
|
||||||
|
onSubmitted: (value) {
|
||||||
|
ref.read(searchTermStateProvider.notifier).state =
|
||||||
|
controller.value.text;
|
||||||
|
},
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
searchSnapshot.when(
|
searchSnapshot.when(
|
||||||
|
@ -33,8 +33,8 @@ class About extends HookWidget {
|
|||||||
onTap: () {
|
onTap: () {
|
||||||
showAboutDialog(
|
showAboutDialog(
|
||||||
context: context,
|
context: context,
|
||||||
applicationIcon: CircleAvatar(
|
applicationIcon:
|
||||||
child: Image.asset("assets/images/spotube-logo.png")),
|
CircleAvatar(child: Image.asset("assets/spotube-logo.png")),
|
||||||
applicationName: "Spotube",
|
applicationName: "Spotube",
|
||||||
applicationVersion: info.version,
|
applicationVersion: info.version,
|
||||||
applicationLegalese: licenseText,
|
applicationLegalese: licenseText,
|
||||||
|
@ -11,6 +11,7 @@ import 'package:spotube/models/SpotubeTrack.dart';
|
|||||||
import 'package:spotube/provider/Auth.dart';
|
import 'package:spotube/provider/Auth.dart';
|
||||||
import 'package:spotube/provider/UserPreferences.dart';
|
import 'package:spotube/provider/UserPreferences.dart';
|
||||||
import 'package:url_launcher/url_launcher_string.dart';
|
import 'package:url_launcher/url_launcher_string.dart';
|
||||||
|
import 'package:collection/collection.dart';
|
||||||
|
|
||||||
class Settings extends HookConsumerWidget {
|
class Settings extends HookConsumerWidget {
|
||||||
const Settings({Key? key}) : super(key: key);
|
const Settings({Key? key}) : super(key: key);
|
||||||
@ -19,12 +20,6 @@ class Settings extends HookConsumerWidget {
|
|||||||
Widget build(BuildContext context, ref) {
|
Widget build(BuildContext context, ref) {
|
||||||
final UserPreferences preferences = ref.watch(userPreferencesProvider);
|
final UserPreferences preferences = ref.watch(userPreferencesProvider);
|
||||||
final Auth auth = ref.watch(authProvider);
|
final Auth auth = ref.watch(authProvider);
|
||||||
final ytSearchFormatController =
|
|
||||||
useTextEditingController(text: preferences.ytSearchFormat);
|
|
||||||
|
|
||||||
ytSearchFormatController.addListener(() {
|
|
||||||
preferences.setYtSearchFormat(ytSearchFormatController.value.text);
|
|
||||||
});
|
|
||||||
|
|
||||||
final pickColorScheme = useCallback((ColorSchemeType schemeType) {
|
final pickColorScheme = useCallback((ColorSchemeType schemeType) {
|
||||||
return () => showDialog(
|
return () => showDialog(
|
||||||
@ -36,6 +31,9 @@ class Settings extends HookConsumerWidget {
|
|||||||
});
|
});
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
|
var ytSearchFormatController = useTextEditingController(
|
||||||
|
text: preferences.ytSearchFormat,
|
||||||
|
);
|
||||||
return SafeArea(
|
return SafeArea(
|
||||||
child: Scaffold(
|
child: Scaffold(
|
||||||
appBar: PageWindowTitleBar(
|
appBar: PageWindowTitleBar(
|
||||||
@ -83,10 +81,13 @@ class Settings extends HookConsumerWidget {
|
|||||||
},
|
},
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const SizedBox(height: 10),
|
|
||||||
ListTile(
|
ListTile(
|
||||||
title: const Text("Accent Color Scheme"),
|
title: const Text("Accent Color Scheme"),
|
||||||
horizontalTitleGap: 10,
|
horizontalTitleGap: 10,
|
||||||
|
contentPadding: const EdgeInsets.symmetric(
|
||||||
|
horizontal: 15,
|
||||||
|
vertical: 5,
|
||||||
|
),
|
||||||
trailing: ColorTile(
|
trailing: ColorTile(
|
||||||
color: preferences.accentColorScheme,
|
color: preferences.accentColorScheme,
|
||||||
onPressed: pickColorScheme(ColorSchemeType.accent),
|
onPressed: pickColorScheme(ColorSchemeType.accent),
|
||||||
@ -94,10 +95,13 @@ class Settings extends HookConsumerWidget {
|
|||||||
),
|
),
|
||||||
onTap: pickColorScheme(ColorSchemeType.accent),
|
onTap: pickColorScheme(ColorSchemeType.accent),
|
||||||
),
|
),
|
||||||
const SizedBox(height: 10),
|
|
||||||
ListTile(
|
ListTile(
|
||||||
title: const Text("Background Color Scheme"),
|
title: const Text("Background Color Scheme"),
|
||||||
horizontalTitleGap: 10,
|
horizontalTitleGap: 10,
|
||||||
|
contentPadding: const EdgeInsets.symmetric(
|
||||||
|
horizontal: 15,
|
||||||
|
vertical: 5,
|
||||||
|
),
|
||||||
trailing: ColorTile(
|
trailing: ColorTile(
|
||||||
color: preferences.backgroundColorScheme,
|
color: preferences.backgroundColorScheme,
|
||||||
onPressed: pickColorScheme(ColorSchemeType.background),
|
onPressed: pickColorScheme(ColorSchemeType.background),
|
||||||
@ -105,7 +109,6 @@ class Settings extends HookConsumerWidget {
|
|||||||
),
|
),
|
||||||
onTap: pickColorScheme(ColorSchemeType.background),
|
onTap: pickColorScheme(ColorSchemeType.background),
|
||||||
),
|
),
|
||||||
const SizedBox(height: 10),
|
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.all(15),
|
padding: const EdgeInsets.all(15),
|
||||||
child: Wrap(
|
child: Wrap(
|
||||||
@ -145,19 +148,11 @@ class Settings extends HookConsumerWidget {
|
|||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
ListTile(
|
|
||||||
title: const Text("Download lyrics along with the Track"),
|
|
||||||
horizontalTitleGap: 10,
|
|
||||||
trailing: Switch.adaptive(
|
|
||||||
activeColor: Theme.of(context).primaryColor,
|
|
||||||
value: preferences.saveTrackLyrics,
|
|
||||||
onChanged: (state) {
|
|
||||||
preferences.setSaveTrackLyrics(state);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 15.0),
|
padding: const EdgeInsets.symmetric(
|
||||||
|
horizontal: 15.0,
|
||||||
|
vertical: 5,
|
||||||
|
),
|
||||||
child: Row(
|
child: Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
children: [
|
children: [
|
||||||
@ -172,11 +167,36 @@ class Settings extends HookConsumerWidget {
|
|||||||
flex: 1,
|
flex: 1,
|
||||||
child: TextField(
|
child: TextField(
|
||||||
controller: ytSearchFormatController,
|
controller: ytSearchFormatController,
|
||||||
|
decoration: InputDecoration(
|
||||||
|
isDense: true,
|
||||||
|
suffix: ElevatedButton(
|
||||||
|
child: const Icon(Icons.save_rounded),
|
||||||
|
onPressed: () {
|
||||||
|
preferences.setYtSearchFormat(
|
||||||
|
ytSearchFormatController.value.text,
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
onSubmitted: (value) {
|
||||||
|
preferences.setYtSearchFormat(value);
|
||||||
|
},
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
ListTile(
|
||||||
|
title: const Text("Download lyrics along with the Track"),
|
||||||
|
horizontalTitleGap: 10,
|
||||||
|
trailing: Switch.adaptive(
|
||||||
|
activeColor: Theme.of(context).primaryColor,
|
||||||
|
value: preferences.saveTrackLyrics,
|
||||||
|
onChanged: (state) {
|
||||||
|
preferences.setSaveTrackLyrics(state);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
if (auth.isAnonymous)
|
if (auth.isAnonymous)
|
||||||
ListTile(
|
ListTile(
|
||||||
title: const Text("Login with your Spotify account"),
|
title: const Text("Login with your Spotify account"),
|
||||||
@ -304,7 +324,14 @@ class Settings extends HookConsumerWidget {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
const About()
|
const About()
|
||||||
],
|
].mapIndexed((i, child) {
|
||||||
|
return Container(
|
||||||
|
color: i % 2 == 1
|
||||||
|
? Theme.of(context).primaryColor.withOpacity(.1)
|
||||||
|
: null,
|
||||||
|
child: child,
|
||||||
|
);
|
||||||
|
}).toList(),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -23,7 +23,10 @@ class Hyperlink extends StatelessWidget {
|
|||||||
return AnchorButton(
|
return AnchorButton(
|
||||||
text,
|
text,
|
||||||
onTap: () async {
|
onTap: () async {
|
||||||
await launchUrlString(url);
|
await launchUrlString(
|
||||||
|
url,
|
||||||
|
mode: LaunchMode.externalApplication,
|
||||||
|
);
|
||||||
},
|
},
|
||||||
key: key,
|
key: key,
|
||||||
overflow: overflow,
|
overflow: overflow,
|
||||||
|
@ -10,7 +10,7 @@ class NotFound extends StatelessWidget {
|
|||||||
SizedBox(
|
SizedBox(
|
||||||
height: 150,
|
height: 150,
|
||||||
width: 150,
|
width: 150,
|
||||||
child: Image.asset("assets/images/empty_box.png"),
|
child: Image.asset("assets/empty_box.png"),
|
||||||
),
|
),
|
||||||
Column(
|
Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
@ -56,7 +56,7 @@ class PlaybuttonCard extends StatelessWidget {
|
|||||||
child: CachedNetworkImage(
|
child: CachedNetworkImage(
|
||||||
imageUrl: imageUrl,
|
imageUrl: imageUrl,
|
||||||
placeholder: (context, url) =>
|
placeholder: (context, url) =>
|
||||||
Image.asset("assets/images/placeholder.png"),
|
Image.asset("assets/placeholder.png"),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Positioned.directional(
|
Positioned.directional(
|
||||||
|
@ -1,50 +0,0 @@
|
|||||||
# appimage-builder recipe see https://appimage-builder.readthedocs.io for details
|
|
||||||
version: 1
|
|
||||||
script:
|
|
||||||
- rm -rf AppDir || true
|
|
||||||
- cp -r build/linux/x64/release/bundle AppDir
|
|
||||||
- mkdir -p AppDir/usr/share/icons/hicolor/64x64/apps/
|
|
||||||
- cp assets/spotube-logo.png AppDir/usr/share/icons/hicolor/64x64/apps/
|
|
||||||
AppDir:
|
|
||||||
path: ./AppDir
|
|
||||||
app_info:
|
|
||||||
id: oss.krtirtho.spotube
|
|
||||||
name: Spotube
|
|
||||||
icon: spotube-logo
|
|
||||||
version: 2.0.0
|
|
||||||
exec: spotube
|
|
||||||
exec_args: $@
|
|
||||||
apt:
|
|
||||||
arch: amd64
|
|
||||||
allow_unauthenticated: true
|
|
||||||
sources:
|
|
||||||
- sourceline: deb http://bd.archive.ubuntu.com/ubuntu/ hirsute main restricted
|
|
||||||
- sourceline: deb http://bd.archive.ubuntu.com/ubuntu/ hirsute-updates main restricted
|
|
||||||
- sourceline: deb http://bd.archive.ubuntu.com/ubuntu/ hirsute universe
|
|
||||||
- sourceline: deb http://bd.archive.ubuntu.com/ubuntu/ hirsute-updates universe
|
|
||||||
- sourceline: deb http://bd.archive.ubuntu.com/ubuntu/ hirsute multiverse
|
|
||||||
- sourceline: deb http://bd.archive.ubuntu.com/ubuntu/ hirsute-updates multiverse
|
|
||||||
- sourceline:
|
|
||||||
deb http://bd.archive.ubuntu.com/ubuntu/ hirsute-backports main
|
|
||||||
restricted universe multiverse
|
|
||||||
- sourceline: deb http://security.ubuntu.com/ubuntu hirsute-security main restricted
|
|
||||||
- sourceline: deb http://security.ubuntu.com/ubuntu hirsute-security universe
|
|
||||||
- sourceline: deb http://security.ubuntu.com/ubuntu hirsute-security multiverse
|
|
||||||
include:
|
|
||||||
- libkeybinder-3.0-0
|
|
||||||
exclude:
|
|
||||||
- libx11-6
|
|
||||||
- libgtk-3-0
|
|
||||||
- libglib2.0-0
|
|
||||||
- libc6
|
|
||||||
files:
|
|
||||||
include: []
|
|
||||||
exclude:
|
|
||||||
- usr/share/man
|
|
||||||
- usr/share/doc/*/README.*
|
|
||||||
- usr/share/doc/*/changelog.*
|
|
||||||
- usr/share/doc/*/NEWS.*
|
|
||||||
- usr/share/doc/*/TODO.*
|
|
||||||
AppImage:
|
|
||||||
arch: x86_64
|
|
||||||
update-information: guess
|
|
@ -2,4 +2,5 @@ appId: oss.krtirtho.spotube
|
|||||||
icon: assets/spotube-logo.png
|
icon: assets/spotube-logo.png
|
||||||
|
|
||||||
include:
|
include:
|
||||||
- libkeybinder-3.0-0
|
- libgstreamer1.0-dev
|
||||||
|
- libgstreamer-plugins-base1.0-dev
|
||||||
|
@ -1,11 +0,0 @@
|
|||||||
Package: Spotube
|
|
||||||
Version: 2.0.0
|
|
||||||
Section: sound
|
|
||||||
Priority: optional
|
|
||||||
Architecture: all
|
|
||||||
Essential: no
|
|
||||||
Installed-Size: 24400
|
|
||||||
Depends: libkeybinder-3.0-0 (>= 0.3.2)
|
|
||||||
Maintainer: Kingkor Roy Tirtho <krtirtho@gmail.com>
|
|
||||||
Description: A lightweight free Spotify crossplatform-client which handles playback manually, streams music using Youtube & no Spotify premium account is needed
|
|
||||||
Homepage: https://github.com/KRTirtho/spotube
|
|
@ -1,8 +0,0 @@
|
|||||||
#!/usr/bin/env sh
|
|
||||||
|
|
||||||
echo Creating symlink
|
|
||||||
|
|
||||||
ln -s /usr/share/spotube/spotube /usr/bin
|
|
||||||
chmod +x /usr/bin/spotube
|
|
||||||
|
|
||||||
exit 0
|
|
@ -1,7 +0,0 @@
|
|||||||
#!/usr/bin/env sh
|
|
||||||
|
|
||||||
echo Removing symlink
|
|
||||||
|
|
||||||
rm /usr/bin/spotube
|
|
||||||
|
|
||||||
exit 0
|
|
@ -10,7 +10,8 @@ section: x11
|
|||||||
installed_size: 24400
|
installed_size: 24400
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- libkeybinder-3.0-0 (>= 0.3.2)
|
- libgstreamer1.0-dev
|
||||||
|
- libgstreamer-plugins-base1.0-dev
|
||||||
|
|
||||||
essential: false
|
essential: false
|
||||||
icon: assets/spotube-logo.png
|
icon: assets/spotube-logo.png
|
||||||
|
@ -93,7 +93,6 @@ flutter:
|
|||||||
# To add assets to your application, add an assets section, like this:
|
# To add assets to your application, add an assets section, like this:
|
||||||
assets:
|
assets:
|
||||||
- assets/
|
- assets/
|
||||||
- assets/images/
|
|
||||||
- assets/tutorial/
|
- assets/tutorial/
|
||||||
|
|
||||||
# An image asset can refer to one or more resolution-specific "variants", see
|
# An image asset can refer to one or more resolution-specific "variants", see
|
||||||
|