
- Add custom login background,put your image (allow png jpg gif) or MP4 video into /www/luci-static/argon/background, random change【v2.2.2】 - Add force dark mode, login ssh and type "touch /etc/dark" to open dark mode.【v2.2.2】 - Add a volume mute button for video background, default is muted.【v2.2.2】 - fix login page when keyboard show the bottom text overlay the button on mobile.【v2.2.2】 - fix select color in dark mode,and add a style for scrollbar.【v2.2.2】 - jquery update to v3.5.1【v2.2.2】 - change request bing api method form wget to luasocket (DEPENDS)【v2.2.2】
24 lines
615 B
Makefile
24 lines
615 B
Makefile
#
|
|
# Copyright (C) 2008-2019 Jerrykuku
|
|
#
|
|
# This is free software, licensed under the Apache License, Version 2.0 .
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
LUCI_TITLE:=Argon Theme
|
|
LUCI_DEPENDS:=+luasocket
|
|
PKG_VERSION:=2.2.2
|
|
PKG_RELEASE:=20200816
|
|
|
|
include $(TOPDIR)/feeds/luci/luci.mk
|
|
|
|
define Package/luci-theme-argon/postinst
|
|
#!/bin/sh
|
|
[ -f /usr/lib/lua/luci/view/themes/argon/out_header_login.htm ] && mv -f /usr/lib/lua/luci/view/themes/argon/out_header_login.htm /usr/lib/lua/luci/view/header_login.htm
|
|
rm -Rf /var/luci-modulecache
|
|
rm -Rf /var/luci-indexcache
|
|
exit 0
|
|
endef
|
|
|
|
# call BuildPackage - OpenWrt buildroot signature
|