simvyn 2.6.0 → 2.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -50,9 +50,9 @@ npx simvyn
|
|
|
50
50
|
|
|
51
51
|
## Features
|
|
52
52
|
|
|
53
|
-
- **Device Management** — Discover, boot, shutdown, erase, create, and clone simulators, emulators, and physical devices
|
|
53
|
+
- **Device Management** — Discover, boot, shutdown, erase, create, and clone simulators, emulators, and physical devices with favourite pinning
|
|
54
54
|
- **App Management** — Install, launch, terminate, uninstall apps via drag-and-drop or CLI
|
|
55
|
-
- **Log Viewer** — Real-time streaming with level filtering, regex search, pagination, and export
|
|
55
|
+
- **Log Viewer** — Real-time streaming with level filtering, find-in-page search (Cmd+F), regex search, pagination, and export
|
|
56
56
|
- **Location Simulation** — Set GPS coordinates, play GPX/KML routes with speed control, save favorites
|
|
57
57
|
- **Device Settings** — Dark mode, locale, permissions, status bar overrides, accessibility presets
|
|
58
58
|
- **Screenshots and Recording** — Capture screenshots and record screen video with history
|
|
@@ -81,6 +81,7 @@ Discover all connected iOS Simulators, Android Emulators, and USB-connected phys
|
|
|
81
81
|
- Boot, shutdown, and erase devices with one click or CLI command
|
|
82
82
|
- Create new iOS simulators with device type and runtime selection
|
|
83
83
|
- Clone and rename existing simulators
|
|
84
|
+
- Pin favourite devices to the top of the device selector
|
|
84
85
|
- Real-time device state updates via WebSocket
|
|
85
86
|
|
|
86
87
|
### App Management
|
|
@@ -97,15 +98,17 @@ Install, launch, terminate, and uninstall apps on any connected device. Drag and
|
|
|
97
98
|
|
|
98
99
|
### Log Viewer
|
|
99
100
|
|
|
100
|
-
Stream device logs in real time with powerful filtering. Filter by log level, search with regex patterns, and filter by process name. Export filtered logs for sharing or archival. Paginated history lets you scroll back through thousands of entries without performance issues.
|
|
101
|
+
Stream device logs in real time with powerful filtering. Filter by log level, search with regex patterns, and filter by process name. Use find-in-page search (Cmd+F) to highlight specific entries without hiding surrounding context. Export filtered logs for sharing or archival. Paginated history lets you scroll back through thousands of entries without performance issues.
|
|
101
102
|
|
|
102
103
|
<p align="center"><img src="https://raw.githubusercontent.com/pranshuchittora/simvyn/main/docs/assets/log-viewer.png" alt="Log Viewer" width="700" /></p>
|
|
103
104
|
|
|
104
105
|
- Real-time log streaming via WebSocket
|
|
105
106
|
- Filter by level: debug, info, warning, error, fatal
|
|
107
|
+
- Find-in-page search (Cmd+F) with match highlighting, navigation, and counter
|
|
106
108
|
- Regex search and process name filtering
|
|
107
109
|
- Paginated history with virtual scrolling
|
|
108
110
|
- Export filtered logs to file
|
|
111
|
+
- Pause/resume log streaming while preserving state across clears
|
|
109
112
|
|
|
110
113
|
### Location
|
|
111
114
|
|
|
@@ -52355,7 +52355,7 @@ function ToolSettingsPanel() {
|
|
|
52355
52355
|
const [copied, setCopied] = reactExports.useState(false);
|
|
52356
52356
|
const devices = useDeviceStore((s) => s.devices);
|
|
52357
52357
|
const modules = useModuleStore((s) => s.modules);
|
|
52358
|
-
const version = "2.6.
|
|
52358
|
+
const version = "2.6.1";
|
|
52359
52359
|
const fetchStorage = reactExports.useCallback(() => {
|
|
52360
52360
|
fetch("/api/tool-settings/storage").then((r) => r.json()).then((data) => setStorage(data)).catch(() => {
|
|
52361
52361
|
});
|
|
@@ -53704,4 +53704,4 @@ function App() {
|
|
|
53704
53704
|
clientExports.createRoot(document.getElementById("root")).render(
|
|
53705
53705
|
/* @__PURE__ */ jsxRuntimeExports.jsx(reactExports.StrictMode, { children: /* @__PURE__ */ jsxRuntimeExports.jsx(App, {}) })
|
|
53706
53706
|
);
|
|
53707
|
-
//# sourceMappingURL=index-
|
|
53707
|
+
//# sourceMappingURL=index-OLUFfF_h.js.map
|