mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-15 08:35:18 +00:00
fix(about): wrong link of License
feat(about): discord server docs: fix workflow guild and use new blue color scheme for guilds
This commit is contained in:
parent
3d6d2444be
commit
a4a7f1a74f
16
README.md
16
README.md
@ -1,27 +1,27 @@
|
|||||||

|
<p align="center"><img width="700" src="assets/spotube_banner.png" alt="Spotube Logo"></p>
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://spotube.netlify.app/">spotube.netlify.app</a>
|
<a href="https://spotube.netlify.app/">spotube.netlify.app</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://github.com/KRTirtho/spotube/actions/workflows/flutter-build.yml">
|
<a href="https://github.com/KRTirtho/spotube/actions/workflows/spotube-nightly.yml">
|
||||||
<img alt="GitHub Action Status" src="https://img.shields.io/github/workflow/status/KRTirtho/spotube/Flutter%20Cross%20Build/build?color=%2316ba58&style=flat-square"/>
|
<img alt="GitHub Workflow Status" src="https://img.shields.io/github/actions/workflow/status/KRTirtho/spotube/spotube-nightly.yml?color=1585be&style=flat-square">
|
||||||
</a>
|
</a>
|
||||||
<a href="https://github.com/KRTirtho/Spotube/releases">
|
<a href="https://github.com/KRTirtho/Spotube/releases">
|
||||||
<img alt="GitHub release" src="https://img.shields.io/github/v/release/KRTirtho/spotube?color=%2316ba58&style=flat-square"/>
|
<img alt="GitHub release" src="https://img.shields.io/github/v/release/KRTirtho/spotube?color=1585be&style=flat-square"/>
|
||||||
</a>
|
</a>
|
||||||
<a href="LICENSE">
|
<a href="LICENSE">
|
||||||
<img alt="License" src="https://img.shields.io/aur/license/spotube-bin?color=%2316ba58&style=flat-square"/>
|
<img alt="License" src="https://img.shields.io/aur/license/spotube-bin?color=1585be&style=flat-square"/>
|
||||||
</a>
|
</a>
|
||||||
<a href="https://github.com/KRTirtho">
|
<a href="https://github.com/KRTirtho">
|
||||||
<img alt="Maintainer" src="https://img.shields.io/badge/Maintainer-KRTirtho-%2316ba58?style=flat-square"/>
|
<img alt="Maintainer" src="https://img.shields.io/badge/Maintainer-KRTirtho-1585be?style=flat-square"/>
|
||||||
</a>
|
</a>
|
||||||
<a href="https://opencollective.com/spotube">
|
<a href="https://opencollective.com/spotube">
|
||||||
<img alt="Open Collective backers and sponsors" src="https://img.shields.io/opencollective/all/spotube?color=%2316ba58&style=flat-square"/>
|
<img alt="Open Collective backers and sponsors" src="https://img.shields.io/opencollective/all/spotube?color=1585be&style=flat-square"/>
|
||||||
</a>
|
</a>
|
||||||
<a href="https://discord.gg/uJ94vxB6vg">
|
<a href="https://discord.gg/uJ94vxB6vg">
|
||||||
<img alt="Discord" src="https://img.shields.io/discord/1012234096237350943?color=%2316ba58&label=Discord%20Server&logoColor=%2316ba58&style=flat-square">
|
<img alt="Discord" src="https://img.shields.io/discord/1012234096237350943?color=1585be&label=Discord%20Server&logoColor=1585be&style=flat-square">
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:platform_ui/platform_ui.dart';
|
import 'package:platform_ui/platform_ui.dart';
|
||||||
|
import 'package:spotube/components/shared/image/universal_image.dart';
|
||||||
import 'package:spotube/components/shared/page_window_title_bar.dart';
|
import 'package:spotube/components/shared/page_window_title_bar.dart';
|
||||||
import 'package:spotube/hooks/use_package_info.dart';
|
import 'package:spotube/hooks/use_package_info.dart';
|
||||||
|
|
||||||
@ -78,7 +79,7 @@ class AboutSpotube extends HookConsumerWidget {
|
|||||||
InkWell(
|
InkWell(
|
||||||
onTap: () {
|
onTap: () {
|
||||||
launchUrlString(
|
launchUrlString(
|
||||||
"https://raw.githubusercontent.com/KRTirtho/spotube/main/LICENSE",
|
"https://raw.githubusercontent.com/KRTirtho/spotube/master/LICENSE",
|
||||||
mode: LaunchMode.externalApplication,
|
mode: LaunchMode.externalApplication,
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
@ -102,6 +103,20 @@ class AboutSpotube extends HookConsumerWidget {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
const SizedBox(height: 20),
|
const SizedBox(height: 20),
|
||||||
|
MouseRegion(
|
||||||
|
cursor: SystemMouseCursors.click,
|
||||||
|
child: GestureDetector(
|
||||||
|
onTap: () => launchUrl(
|
||||||
|
Uri.parse("https://discord.gg/uJ94vxB6vg"),
|
||||||
|
mode: LaunchMode.externalApplication,
|
||||||
|
),
|
||||||
|
child: const UniversalImage(
|
||||||
|
path:
|
||||||
|
"https://discord.com/api/guilds/1012234096237350943/widget.png?style=banner2",
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(height: 20),
|
||||||
Wrap(
|
Wrap(
|
||||||
runSpacing: 20,
|
runSpacing: 20,
|
||||||
spacing: 20,
|
spacing: 20,
|
||||||
|
Loading…
Reference in New Issue
Block a user