🐤 Sync 2026-05-31 12:56:10

This commit is contained in:
github-actions[bot] 2026-05-31 12:56:10 +08:00
parent f9c0dfe1e3
commit 669cce2408
19 changed files with 17 additions and 8 deletions

View File

@ -7,7 +7,7 @@ LUCI_DEPENDS:=+luci-nginx +quickfile
PKG_LICENSE:=Apache-2.0
PKG_VERSION:=1.0.0
PKG_RELEASE:=2
PKG_RELEASE:=3
PKG_MAINTAINER:=sbwml <admin@cooluc.com>
include $(TOPDIR)/feeds/luci/luci.mk

View File

@ -0,0 +1,3 @@
#!/bin/sh
/etc/init.d/nginx restart

View File

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

Before

Width:  |  Height:  |  Size: 68 KiB

After

Width:  |  Height:  |  Size: 68 KiB

View File

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 561 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 576 B

View File

@ -9,7 +9,7 @@ LUCI_TITLE:=Aurora Theme (A modern browser theme built with Vite and Tailwind CS
LUCI_DEPENDS:=+luci-base
PKG_VERSION:=0.11.11
PKG_RELEASE:=14
PKG_RELEASE:=15
PKG_LICENSE:=Apache-2.0
LUCI_MINIFY_CSS:=

Binary file not shown.

Before

Width:  |  Height:  |  Size: 561 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 576 B

View File

@ -20,6 +20,9 @@
const toolbar_enabled = tokens.toolbar_enabled ? tokens.toolbar_enabled == '1' : true;
const icon_cache_version = tokens.icon_cache_version || '0';
const logo_svg = tokens.logo_svg || 'logo.svg';
const favicon_png = tokens.favicon_png || '';
const favicon_ico = tokens.favicon_ico || 'favicon.ico';
const pwa_apple_touch = tokens.pwa_apple_touch || 'apple-touch-icon.png';
let toolbar_items = [
{ url: '/cgi-bin/luci/admin/status/overview', icon: 'overview.svg', title: 'Overview' },
@ -127,9 +130,12 @@
{% endif %}
<link rel="stylesheet" href="{{ media }}/fonts/aurora-font.css?v={{ icon_cache_version }}">
<link rel="icon" href="{{ media }}/images/{{ logo_svg }}?v={{ icon_cache_version }}" sizes="any" type="image/svg+xml">
<link rel="icon" href="{{ media }}/images/favicon.ico" sizes="32x32">
<link rel="apple-touch-icon" href="{{ media }}/images/pwa/apple-touch-icon.png?v={{ icon_cache_version }}">
<link rel="manifest" href="{{ media }}/images/pwa/app.webmanifest">
{% if (favicon_png): %}
<link rel="icon" href="{{ media }}/images/{{ favicon_png }}?v={{ icon_cache_version }}" type="image/png">
{% endif %}
<link rel="icon" href="{{ media }}/images/{{ favicon_ico }}" sizes="32x32">
<link rel="apple-touch-icon" href="{{ media }}/images/{{ pwa_apple_touch }}?v={{ icon_cache_version }}">
<link rel="manifest" href="{{ media }}/images/app.webmanifest">
<meta name="application-name" content="LuCI Aurora">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">

View File

@ -8,12 +8,12 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=torrserver
PKG_VERSION:=MatriX.141.2
PKG_RELEASE:=3
PKG_VERSION:=MatriX.141.3
PKG_RELEASE:=4
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://github.com/YouROK/TorrServer.git
PKG_SOURCE_VERSION:=a104f57a5aafa4eea3d1eea38f20fe7a4fddef74
PKG_SOURCE_VERSION:=4e46af97e699b2a32ac664c30ee749eea383ca54
PKG_MIRROR_HASH:=skip
PKG_MAINTAINER:=Konstantine Shevlakov <shevlakov@132lan.ru>