Skip to content

Commit

Permalink
Merge pull request #1944 from KRTirtho/dev
Browse files Browse the repository at this point in the history
Release v3.8.2
  • Loading branch information
KRTirtho authored Sep 30, 2024
2 parents ce96272 + b87a510 commit 9c80c61
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 62 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/spotube-publish-binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
inputs:
version:
description: Version to publish (x.x.x)
default: 3.8.1
default: 3.8.2
required: true
dry_run:
description: Dry run
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [3.8.2](https://github.com/krtirtho/spotube/compare/v3.8.0...v3.8.1) (2024-09-30)

## Changes

### Bug Fixes

- endless song loading issue and no playback #1925


## [3.8.1](https://github.com/krtirtho/spotube/compare/v3.8.0...v3.8.1) (2024-09-15)

## Changes
Expand Down
1 change: 1 addition & 0 deletions aur-struct/.SRCINFO
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ depends = libsecret
depends = jsoncpp
depends = libnotify
depends = xdg-user-dirs
depends = webkit2gtk-4.1
source = https://github.com/KRTirtho/spotube/releases/download/v3.7.1/spotube-linux-3.7.1-x86_64.tar.xz
md5sums = 475b1ae9b08f27743a4d4749391ae3db

Expand Down
2 changes: 1 addition & 1 deletion aur-struct/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ arch=(x86_64)
url="https://github.com/KRTirtho/spotube/"
license=('BSD-4-Clause')
groups=()
depends=('mpv' 'libappindicator-gtk3' 'libsecret' 'jsoncpp' 'libnotify' 'xdg-user-dirs')
depends=('mpv' 'libappindicator-gtk3' 'libsecret' 'jsoncpp' 'libnotify' 'xdg-user-dirs' 'webkit2gtk-4.1')
makedepends=()
checkdepends=()
optdepends=()
Expand Down
58 changes: 0 additions & 58 deletions lib/pages/settings/about.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import 'package:spotube/components/titlebar/titlebar.dart';
import 'package:spotube/extensions/context.dart';
import 'package:spotube/hooks/controllers/use_package_info.dart';

import 'package:flutter_svg/flutter_svg.dart';
import 'package:hooks_riverpod/hooks_riverpod.dart';
import 'package:url_launcher/url_launcher.dart';

Expand Down Expand Up @@ -139,63 +138,6 @@ class AboutSpotube extends HookConsumerWidget {
),
),
const SizedBox(height: 20),
Wrap(
runSpacing: 20,
spacing: 20,
alignment: WrapAlignment.center,
crossAxisAlignment: WrapCrossAlignment.center,
runAlignment: WrapAlignment.center,
children: [
MouseRegion(
cursor: SystemMouseCursors.click,
child: GestureDetector(
onTap: () {
launchUrl(
Uri.parse("https://www.buymeacoffee.com/krtirtho"),
mode: LaunchMode.externalApplication,
);
},
child: SvgPicture.network(
"https://img.buymeacoffee.com/button-api/?text=Buy me a coffee&emoji=&slug=krtirtho&button_colour=FF5F5F&font_colour=ffffff&font_family=Inter&outline_colour=000000&coffee_colour=FFDD00",
height: 45,
),
),
),
MouseRegion(
cursor: SystemMouseCursors.click,
child: GestureDetector(
onTap: () {
launchUrl(
Uri.parse(
"https://opencollective.com/spotube",
),
mode: LaunchMode.externalApplication,
);
},
child: Image.network(
"https://opencollective.com/spotube/donate/button.png?color=blue",
height: 45,
),
),
),
MouseRegion(
cursor: SystemMouseCursors.click,
child: GestureDetector(
onTap: () {
launchUrl(
Uri.parse("https://patreon.com/krtirtho"),
mode: LaunchMode.externalApplication,
);
},
child: Image.network(
"https://user-images.githubusercontent.com/61944859/180249027-678b01b8-c336-451e-b147-6d84a5b9d0e7.png",
height: 45,
),
),
),
],
),
const SizedBox(height: 20),
Text(
context.l10n.made_with,
textAlign: TextAlign.center,
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Open source Spotify client that doesn't require Premium nor uses El

publish_to: "none"

version: 3.8.1+34
version: 3.8.2+35

homepage: https://spotube.krtirtho.dev
repository: https://github.com/KRTirtho/spotube
Expand Down Expand Up @@ -95,7 +95,7 @@ dependencies:
version: ^3.0.2
visibility_detector: ^0.4.0+2
window_manager: ^0.3.9
youtube_explode_dart: ^2.2.1
youtube_explode_dart: ^2.2.2
simple_icons: ^10.1.3
jiosaavn: ^0.1.0
draggable_scrollbar:
Expand Down

0 comments on commit 9c80c61

Please sign in to comment.