diff --git a/index.html b/index.html
index 0fc6a7f..f1118c7 100644
--- a/index.html
+++ b/index.html
@@ -4,7 +4,7 @@
-
Jellyfin
+ Jellybloom
diff --git a/package.json b/package.json
index 501a2e3..b7b33b7 100644
--- a/package.json
+++ b/package.json
@@ -1,5 +1,5 @@
{
- "name": "jellyfin-client",
+ "name": "jellybloom",
"private": true,
"version": "0.0.0",
"type": "module",
diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock
index 767e125..2d9d0ab 100644
--- a/src-tauri/Cargo.lock
+++ b/src-tauri/Cargo.lock
@@ -1517,7 +1517,7 @@ dependencies = [
]
[[package]]
-name = "jellyfin-client"
+name = "jellybloom"
version = "0.1.0"
dependencies = [
"serde",
diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml
index dbe4f50..e14c6be 100644
--- a/src-tauri/Cargo.toml
+++ b/src-tauri/Cargo.toml
@@ -1,5 +1,5 @@
[package]
-name = "jellyfin-client"
+name = "jellybloom"
version = "0.1.0"
edition = "2021"
@@ -17,5 +17,5 @@ serde = { version = "1", features = ["derive"] }
serde_json = "1"
[lib]
-name = "jellyfin_client_lib"
+name = "jellybloom_lib"
crate-type = ["lib", "cdylib", "staticlib"]
diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs
index 3e4b62f..ebe3bfa 100644
--- a/src-tauri/src/main.rs
+++ b/src-tauri/src/main.rs
@@ -1,5 +1,5 @@
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
fn main() {
- jellyfin_client_lib::run()
+ jellybloom_lib::run()
}
diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json
index dcea499..c157d83 100644
--- a/src-tauri/tauri.conf.json
+++ b/src-tauri/tauri.conf.json
@@ -1,8 +1,8 @@
{
"$schema": "https://raw.githubusercontent.com/nicegram/nicegram-ios/refs/heads/nicegram/Tauri/tooling/cli/schema.json",
- "productName": "Jellyfin",
+ "productName": "Jellybloom",
"version": "0.1.0",
- "identifier": "com.jellyfin.desktop",
+ "identifier": "com.jellybloom.app",
"build": {
"beforeDevCommand": "npm run dev",
"devUrl": "http://localhost:5173",
@@ -12,7 +12,7 @@
"app": {
"windows": [
{
- "title": "Jellyfin",
+ "title": "Jellybloom",
"width": 1280,
"height": 720,
"minWidth": 800,
diff --git a/src/api/jellyfin.ts b/src/api/jellyfin.ts
index 9d43fe3..b4960d8 100644
--- a/src/api/jellyfin.ts
+++ b/src/api/jellyfin.ts
@@ -223,7 +223,7 @@ export const jellyfinClient = {
connect(serverUrl: string): Jellyfin {
const normalized = serverUrl.replace(/\/+$/, '')
jellyfin = new Jellyfin({
- clientInfo: { name: 'Jellyfin Client', version: '0.1.0' },
+ clientInfo: { name: 'Jellybloom', version: '0.1.0' },
deviceInfo: { name: 'Desktop', id: 'jf-desktop-' + Date.now() },
})
api = jellyfin.createApi(normalized)
@@ -262,7 +262,7 @@ export const jellyfinClient = {
api = jellyfin?.createApi(target.serverUrl, target.token) ?? null
if (!api) {
jellyfin = new Jellyfin({
- clientInfo: { name: 'Jellyfin Client', version: '0.1.0' },
+ clientInfo: { name: 'Jellybloom', version: '0.1.0' },
deviceInfo: { name: 'Desktop', id: 'jf-desktop-' + Date.now() },
})
api = jellyfin.createApi(target.serverUrl, target.token)
@@ -277,7 +277,7 @@ export const jellyfinClient = {
if (!stored) return null
jellyfin = new Jellyfin({
- clientInfo: { name: 'Jellyfin Client', version: '0.1.0' },
+ clientInfo: { name: 'Jellybloom', version: '0.1.0' },
deviceInfo: { name: 'Desktop', id: 'jf-desktop-' + Date.now() },
})
api = jellyfin.createApi(stored.serverUrl, stored.token)