Skip to content

Commit

Permalink
0.46.076
Browse files Browse the repository at this point in the history
  • Loading branch information
vernesong committed Feb 18, 2025
1 parent 600dc48 commit 8cb7078
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 7 deletions.
2 changes: 1 addition & 1 deletion luci-app-openclash/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=luci-app-openclash
PKG_VERSION:=0.46.075
PKG_VERSION:=0.46.076
PKG_MAINTAINER:=vernesong <https://github.com/vernesong/OpenClash>

PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
Expand Down
31 changes: 25 additions & 6 deletions luci-app-openclash/luasrc/view/openclash/debug.htm
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,27 @@
%>

<style>
:root[data-darkmode="true"] {
.diag-style {
background-color: #404040;
}

#diag-rc-output > pre {
background-color: #404040;
color: #ffffff;
}
#dns-rc-output > pre {
background-color: #404040;
color: #ffffff;
}
}

.diag-style {
background-color: #f5f5f5;
}

#diag-rc-output > pre {
background-color: #f5f5f5;
background-color: #ffffff;
display: block;
padding: 8.5px;
margin: 0 0 18px;
Expand All @@ -23,7 +42,7 @@
}

#dns-rc-output > pre {
background-color: #f5f5f5;
background-color: #ffffff;
display: block;
padding: 8.5px;
margin: 0 0 18px;
Expand Down Expand Up @@ -181,7 +200,7 @@
//]]></script>

<form>
<fieldset>
<fieldset class="diag-style">
<div style="width:33%; float: left; text-align: center;">
<%:Connection Test (Current Browser)%>&nbsp;&nbsp;&nbsp;&nbsp;
<input type="text" value="<%=diag_host%>" name="diag" />
Expand All @@ -198,19 +217,19 @@
</div>
</fieldset>

<fieldset style="display:none">
<fieldset class="diag-style" style="display:none">
<legend id="diag-rc-legend"><%:Collecting data...%></legend>
<br />
<span id="diag-rc-output"></span>
</fieldset>

<fieldset style="display:none">
<fieldset class="diag-style" style="display:none">
<legend id="dns-rc-legend"><%:Collecting data...%></legend>
<br />
<span id="dns-rc-output"></span>
</fieldset>

<fieldset style="display:none">
<fieldset class="diag-style" style="display:none">
<legend id="debug-rc-legend"><%:Collecting data...%></legend>
<br />
<span id="debug-rc-output"></span>
Expand Down

0 comments on commit 8cb7078

Please sign in to comment.