Skip to content

Commit d7d02f2

Browse files
committed
Rename to Music assistant
1 parent 3df859a commit d7d02f2

11 files changed

+38
-37
lines changed

.vscode/extensions.json

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"recommendations": [
33
"Vue.volar",
44
"tauri-apps.tauri-vscode",
5+
"Vue.vscode-typescript-vue-plugin",
56
"rust-lang.rust-analyzer"
67
]
78
}

PKGBUILD

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
# then please put 'unknown'.
55

66
# Maintainer: Jonathan Bangert <jonathan@bangert.dk>
7-
pkgname='MassDesktop'
8-
_pkgname='massapp'
7+
pkgname='Music Assistant'
8+
_pkgname='music_assistant'
99
pkgver=0.0.8
1010
pkgrel=1
11-
pkgdesc="The mass desktop app"
11+
pkgdesc="Music Assistant Desktop app"
1212
arch=('x86_64')
1313
url="https://github.com/Un10ck3d/massapp"
1414
conflicts=(squeezelite)
@@ -28,8 +28,8 @@ build() {
2828

2929
package() {
3030
cd "$srcdir/$_pkgname"
31-
install -DCm644 ./massdesktop.desktop "$pkgdir/usr/share/applications/massdesktop.desktop"
32-
install -DCm644 ./app-icon.png "$pkgdir/usr/share/icons/hicolor/512x512/apps/mass.png"
33-
install -DCm0755 -t "$pkgdir/usr/bin/" ./src-tauri/target/release/mass
31+
install -DCm644 ./music_assistant.desktop "$pkgdir/usr/share/applications/music_assistant.desktop"
32+
install -DCm644 ./app-icon.png "$pkgdir/usr/share/icons/hicolor/512x512/apps/music_assistant.png"
33+
install -DCm0755 -t "$pkgdir/usr/bin/" ./src-tauri/target/release/music_assistant
3434
sudo install -DCm0755 -t "$pkgdir/usr/bin/" ./src-tauri/target/release/squeezelite
3535
}

massdesktop.desktop

-8
This file was deleted.

music_assistant.desktop

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[Desktop Entry]
2+
Categories=Music
3+
Comment=Music Assistant Desktop App
4+
Exec=music_assistant_desktop
5+
Icon=music_assistant_desktop
6+
Name=Music Assistant
7+
Terminal=false
8+
Type=Application

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "mass",
2+
"name": "music_assistant",
33
"version": "0.0.8",
44
"type": "module",
55
"description": "The Music Assistant frontend developed in Vue.",

src-tauri/Cargo.lock

+14-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
2-
name = "mass"
2+
name = "music_assistant"
33
version = "0.0.8"
4-
description = "Mass Desktop App"
4+
description = "Music Assistant Desktop App"
55
authors = ["you"]
66
license = "Apache-2.0"
77
repository = "https://github.com/Un10ck3d/massapp"

src-tauri/Tauri.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ distDir = "../frontend-source/dist"
66
withGlobalTauri = false
77

88
[package]
9-
productName = "mass"
9+
productName = "music_assistant"
1010
version = "0.0.8"
1111

1212
[tauri.allowlist]
@@ -31,7 +31,7 @@ args = true
3131
[tauri.bundle]
3232
active = true
3333
targets = "all"
34-
identifier = "com.mass.app"
34+
identifier = "com.music_assistant.app"
3535
icon = [
3636
"icons/32x32.png",
3737
"icons/128x128.png",
@@ -52,7 +52,7 @@ entitlements = 'Entitlements.plist'
5252
[[tauri.windows]]
5353
fullscreen = false
5454
resizable = true
55-
title = "Mass Desktop"
55+
title = "Music Assistant"
5656
width = 800
5757
height = 600
5858

src-tauri/src/discord_rpc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ pub fn start_rpc(mass_ws: String, hostname: std::ffi::OsString) {
136136

137137
// The buttons of the activity
138138
let buttons: Vec<activity::Button<'_>> = vec![
139-
activity::Button::new("What's Mass??", "https://github.com/music-assistant/server"),
139+
activity::Button::new("What's this??", "https://github.com/music-assistant/server"),
140140
activity::Button::new("Preview song!", &current_song.preview_url),
141141
];
142142

src-tauri/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ fn start_sqzlite(ip: String) {
2525
"-s",
2626
ip.as_str(),
2727
"-M",
28-
"MassDesktop",
28+
"MusicAssistantDesktop",
2929
"-n",
3030
hostname
3131
.to_str()

0 commit comments

Comments
 (0)