rename to jellybloom

This commit is contained in:
2026-04-24 07:05:15 +03:00
parent 9027dab1a1
commit 7eb41bbaea
7 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" /> <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Jellyfin</title> <title>Jellybloom</title>
</head> </head>
<body> <body>
<div id="root"></div> <div id="root"></div>
+1 -1
View File
@@ -1,5 +1,5 @@
{ {
"name": "jellyfin-client", "name": "jellybloom",
"private": true, "private": true,
"version": "0.0.0", "version": "0.0.0",
"type": "module", "type": "module",
+1 -1
View File
@@ -1517,7 +1517,7 @@ dependencies = [
] ]
[[package]] [[package]]
name = "jellyfin-client" name = "jellybloom"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"serde", "serde",
+2 -2
View File
@@ -1,5 +1,5 @@
[package] [package]
name = "jellyfin-client" name = "jellybloom"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
@@ -17,5 +17,5 @@ serde = { version = "1", features = ["derive"] }
serde_json = "1" serde_json = "1"
[lib] [lib]
name = "jellyfin_client_lib" name = "jellybloom_lib"
crate-type = ["lib", "cdylib", "staticlib"] crate-type = ["lib", "cdylib", "staticlib"]
+1 -1
View File
@@ -1,5 +1,5 @@
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] #![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
fn main() { fn main() {
jellyfin_client_lib::run() jellybloom_lib::run()
} }
+3 -3
View File
@@ -1,8 +1,8 @@
{ {
"$schema": "https://raw.githubusercontent.com/nicegram/nicegram-ios/refs/heads/nicegram/Tauri/tooling/cli/schema.json", "$schema": "https://raw.githubusercontent.com/nicegram/nicegram-ios/refs/heads/nicegram/Tauri/tooling/cli/schema.json",
"productName": "Jellyfin", "productName": "Jellybloom",
"version": "0.1.0", "version": "0.1.0",
"identifier": "com.jellyfin.desktop", "identifier": "com.jellybloom.app",
"build": { "build": {
"beforeDevCommand": "npm run dev", "beforeDevCommand": "npm run dev",
"devUrl": "http://localhost:5173", "devUrl": "http://localhost:5173",
@@ -12,7 +12,7 @@
"app": { "app": {
"windows": [ "windows": [
{ {
"title": "Jellyfin", "title": "Jellybloom",
"width": 1280, "width": 1280,
"height": 720, "height": 720,
"minWidth": 800, "minWidth": 800,
+3 -3
View File
@@ -223,7 +223,7 @@ export const jellyfinClient = {
connect(serverUrl: string): Jellyfin { connect(serverUrl: string): Jellyfin {
const normalized = serverUrl.replace(/\/+$/, '') const normalized = serverUrl.replace(/\/+$/, '')
jellyfin = new Jellyfin({ 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() }, deviceInfo: { name: 'Desktop', id: 'jf-desktop-' + Date.now() },
}) })
api = jellyfin.createApi(normalized) api = jellyfin.createApi(normalized)
@@ -262,7 +262,7 @@ export const jellyfinClient = {
api = jellyfin?.createApi(target.serverUrl, target.token) ?? null api = jellyfin?.createApi(target.serverUrl, target.token) ?? null
if (!api) { if (!api) {
jellyfin = new Jellyfin({ 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() }, deviceInfo: { name: 'Desktop', id: 'jf-desktop-' + Date.now() },
}) })
api = jellyfin.createApi(target.serverUrl, target.token) api = jellyfin.createApi(target.serverUrl, target.token)
@@ -277,7 +277,7 @@ export const jellyfinClient = {
if (!stored) return null if (!stored) return null
jellyfin = new Jellyfin({ 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() }, deviceInfo: { name: 'Desktop', id: 'jf-desktop-' + Date.now() },
}) })
api = jellyfin.createApi(stored.serverUrl, stored.token) api = jellyfin.createApi(stored.serverUrl, stored.token)