Skip to content

Commit f77cd4f

Browse files
committed
V1.0.3
1 parent 1e69b7e commit f77cd4f

File tree

15 files changed

+68
-9
lines changed

15 files changed

+68
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## pcjbird 2024-11-18 Version:1.0.3 Build:20241118003
4+
5+
- Migrated log level styling configurations to HTML template to optimize log display effects in dark mode.
6+
37
## pcjbird 2024-11-18 Version:1.0.2 Build:20241118002
48

59
- Removed dependency on `XLFacility` header files from SDK public headers, now import these headers directly in your own projects for better modularity and flexibility.

RELEASE_CN.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# 版本更新日志
22

3+
## pcjbird 2024-11-18 Version:1.0.3 Build:20241118003
4+
5+
- 将日志等级的样式配置迁移至 HTML 模版中,实现暗黑模式下的日志显示效果优化。
6+
37
## pcjbird 2024-11-18 Version:1.0.2 Build:20241118002
48

59
- 从 SDK 公共头文件中移除了对 `XLFacility` 头文件的依赖,现在您需要在自己的项目中直接导入这些头文件以获得更好的模块化和灵活性。

RELEASE_EN.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# RELEASES
22

3+
## pcjbird 2024-11-18 Version:1.0.3 Build:20241118003
4+
5+
- Migrated log level styling configurations to HTML template to optimize log display effects in dark mode.
6+
37
## pcjbird 2024-11-18 Version:1.0.2 Build:20241118002
48

59
- Removed dependency on `XLFacility` header files from SDK public headers, now import these headers directly in your own projects for better modularity and flexibility.

iOSLogBrowserSDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "iOSLogBrowserSDK"
3-
s.version = "1.0.2"
3+
s.version = "1.0.3"
44
s.summary = "A real-time iOS log tracing tool that enables viewing iOS logs on a PC web browser within a local area network. The log display automatically scrolls similar to Xcode console."
55
s.description = <<-DESC
66
一个实时的iOS日志跟踪工具,让您在局域网内通过浏览器实时查看iOS应用日志。无需Mac电脑和数据线连接,支持多台设备同时监听,日志自动滚动显示,操作便捷,是移动测试人员的理想选择。

iOSLogBrowserSDK/iOSLogBrowserSDK.bundle/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0.2</string>
18+
<string>1.0.3</string>
1919
<key>CFBundleSupportedPlatforms</key>
2020
<array>
2121
<string>iPhoneOS</string>
2222
</array>
2323
<key>CFBundleVersion</key>
24-
<string>20241118002</string>
24+
<string>20241118003</string>
2525
<key>DTCompiler</key>
2626
<string>com.apple.compilers.llvm.clang.1_0</string>
2727
<key>DTPlatformBuild</key>

iOSLogBrowserSDK/iOSLogBrowserSDK.bundle/template.html

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,53 @@
6464
td {
6565
padding: 2px 10px;
6666
}
67+
68+
.log-verbose {
69+
color: #000000;
70+
}
71+
.log-debug {
72+
color: #46C2F2;
73+
}
74+
.log-info {
75+
color: green;
76+
}
77+
.log-warning {
78+
color: orange;
79+
}
80+
.log-error {
81+
color: red;
82+
}
83+
.log-exception {
84+
color: red;
85+
font-weight: bold;
86+
}
87+
.log-default {
88+
color: dimgray;
89+
}
90+
91+
body.dark-mode .log-verbose {
92+
color: #808080;
93+
}
94+
body.dark-mode .log-debug {
95+
color: #46C2F2;
96+
}
97+
body.dark-mode .log-info {
98+
color: #00FF00;
99+
}
100+
body.dark-mode .log-warning {
101+
color: #FFFF00;
102+
}
103+
body.dark-mode .log-error {
104+
color: #FF0000;
105+
}
106+
body.dark-mode .log-exception {
107+
color: #FF0000;
108+
font-weight: bold;
109+
}
110+
body.dark-mode .log-default {
111+
color: #808080;
112+
}
113+
67114

68115
#footer {
69116
text-align: center;

iOSLogBrowserSDK/iOSLogBrowserSDK.xcframework/ios-arm64/iOSLogBrowserSDK.framework/Headers/iOSLogBrowserSDK.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// 一个实时的 iOS 日志追踪工具,可以在本地区域网络内通过 PC 网页浏览器查看 iOS 日志,他将类似 Xcode 控制台一样自动滚动显示日志。
1010
//
1111
// 构建版本:
12-
// pcjbird 2024-11-18 Version:1.0.2 Build:20241118002
12+
// pcjbird 2024-11-18 Version:1.0.3 Build:20241118003
1313

1414
#import <Foundation/Foundation.h>
1515
#import <iOSLogBrowserSDK/iOSLogBrowserSDKDefines.h>
Binary file not shown.

iOSLogBrowserSDK/iOSLogBrowserSDK.xcframework/ios-arm64_x86_64-simulator/iOSLogBrowserSDK.framework/Headers/iOSLogBrowserSDK.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// 一个实时的 iOS 日志追踪工具,可以在本地区域网络内通过 PC 网页浏览器查看 iOS 日志,他将类似 Xcode 控制台一样自动滚动显示日志。
1010
//
1111
// 构建版本:
12-
// pcjbird 2024-11-18 Version:1.0.2 Build:20241118002
12+
// pcjbird 2024-11-18 Version:1.0.3 Build:20241118003
1313

1414
#import <Foundation/Foundation.h>
1515
#import <iOSLogBrowserSDK/iOSLogBrowserSDKDefines.h>

0 commit comments

Comments
 (0)