update 2023-04-20 23:32:09

This commit is contained in:
github-actions[bot]
2023-04-20 23:32:09 +08:00
parent 1e932468de
commit d5d5593ae5
14 changed files with 959 additions and 890 deletions

View File

@@ -1,7 +1,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=aliyundrive-webdav
PKG_VERSION:=2.2.0
PKG_VERSION:=2.2.1
PKG_RELEASE:=1
PKG_LICENSE:=MIT

View File

@@ -5,12 +5,12 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=chinadns-ng
PKG_VERSION:=2023.04.17
PKG_VERSION:=2023.04.20
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/zfl9/chinadns-ng/tar.gz/$(PKG_VERSION)?
PKG_HASH:=e0e841dfd5c42d9d191c3ff9dbb11759360e1ee922ec2e65f43e0d4d41be6a8f
PKG_HASH:=e1f5197ecd96ebab4440fe069e0a06935df7ea07ac1ad0bab3f88bffe0055294
PKG_LICENSE:=AGPL-3.0-only
PKG_LICENSE_FILES:=LICENSE

View File

@@ -1,7 +1,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=luci-app-aliyundrive-webdav
PKG_VERSION:=2.2.0
PKG_VERSION:=2.2.1
PKG_RELEASE:=1
PKG_PO_VERSION:=$(PKG_VERSION)-$(PKG_RELEASE)

View File

@@ -8,8 +8,8 @@ include $(TOPDIR)/rules.mk
LUCI_TITLE:=Argon Theme
LUCI_DEPENDS:=+curl +jsonfilter
PKG_VERSION:=2.3
PKG_RELEASE:=20230403
PKG_VERSION:=2.3.1
PKG_RELEASE:=20230420
include $(TOPDIR)/feeds/luci/luci.mk

View File

@@ -81,7 +81,7 @@ The table below will provide a detailed introduction:
## Version History
The latest version is v2.3. [Click here][en-us-release-log] to view the full version history record.
The latest version is v2.3.1 [Click here][en-us-release-log] to view the full version history record.
## Getting started

View File

@@ -81,7 +81,7 @@ Argon 是**一款干净整洁的 OpenWrt LuCI 主题**
## 版本历史
当前最新的版本为 v2.3. [点击这里][zh-cn-release-log]查看完整的版本历史日志.
当前最新的版本为 v2.3.1 [点击这里][zh-cn-release-log]查看完整的版本历史日志.
## 快速开始

View File

@@ -1,5 +1,13 @@
# Update log for master branch
## v2.3.1 [ 2023.04.20 ]
- Fixed the issue where the dropdown menu was being clipped.
- Fixed the problem where the exit icon was replaced with the app store icon.
- Fixed the issue where some colors were out of control in dark mode.
- Fixed the problem where the local startup script textarea could not be scrolled in the startup item.
- Fixed the problem where the Passwall node list button was misaligned.
## v2.3 [ 2023.04.03 ]
- Updated the style of Loading.

View File

@@ -1,5 +1,13 @@
# Master 分支的更新日志
## v2.3.1 [ 2023.04.20 ]
- 修复了下拉菜单被裁切的问题
- 修复了退出图标变成了应用商店图标的问题
- 修复了暗色模式下个别颜色不受控制的问题
- 修复了启动项--本地启动脚本文本框不能滑动的问题
- 修复了Passwall节点列表按钮错位的问题
## v2.3 [ 2023.04.03 ]
- 更新了 Loading 的样式

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -118,6 +118,11 @@ body {
textarea {
padding: 0.2rem;
&:focus-visible {
outline: none;
border: 1px solid var(--primary);
}
}
::selection {
@@ -527,12 +532,13 @@ h5 {
display: flex;
-webkit-box-align: center;
align-items: center;
margin: 50px auto 100px 50px;
margin: 50px 50px 100px 50px;
color: #525461;
color: var(--default);
justify-content: center;
.icon {
width: 50px;
width: 180px;
height: auto;
margin-right: 25px;
}
@@ -753,6 +759,7 @@ small {
text-align: center;
.brand {
display: block;
font-size: 1.8rem;
color: #5e72e4;
color: var(--primary);
@@ -760,7 +767,12 @@ small {
text-decoration: none;
text-align: center;
cursor: default;
vertical-align: text-bottom;
margin: 0 2rem;
.logo {
max-width: 100%;
height: auto;
}
}
}
@@ -950,6 +962,8 @@ div[style="width:100%;height:300px;border:1px solid #000;background:#fff"] {
.alert-message {
font-weight: bold;
margin-bottom: 1.25rem;
margin-left: 1.25rem;
margin-right: 1.25rem;
padding: 1rem 1.25rem;
border: 0;
border-radius: 0.375rem !important;
@@ -987,6 +1001,8 @@ div[style="width:100%;height:300px;border:1px solid #000;background:#fff"] {
.container .alert,
.container .alert-message {
margin-left: 0;
margin-right: 0;
margin-top: 0rem;
}
@@ -1299,10 +1315,14 @@ div[style="width:100%;height:300px;border:1px solid #000;background:#fff"] {
color: #fb6340;
}
.food[data-title=Logout]:before {
content: "\e907";
color: #adb5bd;
a[data-title=Logout],
.food[data-title=Logout] {
&::before {
content: "\e907";
color: #adb5bd;
}
}
}
}
}
@@ -1381,7 +1401,6 @@ body[class*="node-"]>.main>.main-left>.nav>.slide>.menu.active::before {
border-radius: 0.375rem;
background-color: #fff;
box-shadow: 0 0 1rem 0 rgba(136, 152, 170, .15);
overflow: hidden;
&:last-child {
margin: 0;
@@ -1660,7 +1679,6 @@ td>table>tbody>tr>td,
vertical-align: middle;
white-space: nowrap;
text-decoration: none;
text-transform: uppercase;
border: 0;
border-radius: .2rem;
background-color: #f0f0f0;
@@ -1668,8 +1686,6 @@ td>table>tbody>tr>td,
appearance: none;
-ms-touch-action: manipulation;
touch-action: manipulation;
}
.btn,
@@ -1705,7 +1721,7 @@ td>table>tbody>tr>td,
}
.cbi-button:not(select) {
-webkit-appearance: none !important;
appearance: none !important;
}
@@ -1866,7 +1882,7 @@ td>table>tbody>tr>td,
.cbi-value-field .cbi-button-add {
font-weight: bold;
padding: 1px 6px;
display: flex;
display: inline-block;
align-items: center;
}
@@ -2875,7 +2891,7 @@ td>.ifacebadge,
.ifacebadge>em,
.ifacebadge>img {
display: inline-block;
align-self: flex-start;
margin: 0 0.75rem;
}
.ifacebadge>img+img {
@@ -2918,8 +2934,6 @@ td>.ifacebadge,
background-color: #fff;
>span {
height: 100%;
align-self: flex-start;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
@@ -2936,6 +2950,7 @@ td>.ifacebadge,
min-height: 14rem;
padding: .8rem;
color: #000;
border-radius: 0.375rem;
}
#content_syslog {
@@ -3141,7 +3156,7 @@ td>.ifacebadge,
padding: .5rem 1rem;
}
.cbi-section-create>* {}
.cbi-section-remove {
padding: .5rem 1rem;
@@ -3440,7 +3455,7 @@ input[name="nslookup"] {
textarea {
line-height: 1.25;
overflow-y: hidden;
overflow-y: auto;
width: 100%;
min-height: 15rem;
padding: 1rem;
@@ -3448,6 +3463,12 @@ input[name="nslookup"] {
color: #242424;
border-radius: 0.375rem;
background-color: #ffffff;
&:focus-visible {
outline: none;
box-shadow: none;
border: 1px solid var(--primary);
}
}
}

1753
luci-theme-argon/less/dark.less Normal file → Executable file

File diff suppressed because it is too large Load Diff

View File

@@ -9,10 +9,10 @@ include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=natflow
PKG_VERSION:=20230325
PKG_VERSION:=20230420
PKG_SOURCE_URL:=https://codeload.github.com/ptpt52/natflow/tar.gz/$(PKG_VERSION)?
PKG_HASH:=78ef4af754a83770b7eec1f49a612c19138560615854a24c7595c59225d9836b
PKG_HASH:=464fa88cba03772267a2bf965e2cbbfcd1b31bf6d949774098f4a8bba7d94201
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_MAINTAINER:=Chen Minqiang <ptpt52@gmail.com>

View File

@@ -6,6 +6,7 @@ config natflow 'main'
option delay_pkts '0'
option skip_qos_to_slow_path '0'
list ifname_filter ''
option tc_classid_mode '0'
config globals 'globals'
option redirect_ip '10.10.10.1'