From 91ef84d87192eab20ff5ed784893c8e80f4d3275 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=99=E6=82=9F=E5=85=83?= Date: Sat, 11 Apr 2026 14:05:00 +0000 Subject: [PATCH] fix: update URL presets for background images --- src/components/settings/cards/BackgroundSettingsCard.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/settings/cards/BackgroundSettingsCard.vue b/src/components/settings/cards/BackgroundSettingsCard.vue index d6363a5..c02650e 100644 --- a/src/components/settings/cards/BackgroundSettingsCard.vue +++ b/src/components/settings/cards/BackgroundSettingsCard.vue @@ -196,9 +196,10 @@ import SettingItem from '@/components/settings/SettingItem.vue'; import { getSetting, setSetting, resetSetting } from '@/utils/settings'; const URL_PRESETS = [ - { label: 'Bing 每日壁纸', url: 'https://bing.img.run/rand_uhd.php' }, + { label: 'Bing 随机壁纸', url: 'https://bing.img.run/rand.php' }, + { label: 'Bing 每日壁纸', url: 'https://bing.img.run/1920x1080.php' }, { label: '随机风景', url: 'https://picsum.photos/1920/1080?random=1' }, - { label: '随机自然', url: 'https://source.unsplash.com/1920x1080/?nature' }, + { label: '随机二次元', url: 'https://uapis.cn/api/v1/random/image?category=acg&type=pc' }, ]; const MAX_IMAGE_SIZE_MB = 2;