rename to jellybloom
This commit is contained in:
+1
-1
@@ -4,7 +4,7 @@
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Jellyfin</title>
|
||||
<title>Jellybloom</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "jellyfin-client",
|
||||
"name": "jellybloom",
|
||||
"private": true,
|
||||
"version": "0.0.0",
|
||||
"type": "module",
|
||||
|
||||
Generated
+1
-1
@@ -1517,7 +1517,7 @@ dependencies = [
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "jellyfin-client"
|
||||
name = "jellybloom"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"serde",
|
||||
|
||||
@@ -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"]
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
||||
|
||||
fn main() {
|
||||
jellyfin_client_lib::run()
|
||||
jellybloom_lib::run()
|
||||
}
|
||||
|
||||
@@ -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,
|
||||
|
||||
+3
-3
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user