Skip to content

Releases: AppTelepath/AppTelepath-iOS

3.6.0

Choose a tag to compare

@wwwcgwwwcg released this 27 Aug 04:00

Three cases where a command returned ok while nothing happened on the device.

  • Long press never reached your handler. The touch was held 466ms — under UIKit's 500ms threshold.
  • The gesture fallback fired host handlers twice per state transition.
  • The device never slept. Keep-awake was tied to the connection, not to activity, and disconnecting overwrote your own idleTimerDisabled. Now leased per agent action; opt out with TLPAgentConfig.screenAwakeWhileDebugging = NO.

New:

  • ui.tree summary takes contains / region filters. A filtered result always carries a filter field — its absence means nothing was filtered.
  • log.recent also reads the unified log (os_log); Swift Logger and React Native console.* were invisible before.
  • React Native testID surfaces as accessibilityId.
  • Locating by label picks the smallest match instead of the outermost container.
  • ui.tree / ui.tap report appActive:false when a system dialog covers the app.

3.5.0

Choose a tag to compare

@wwwcgwwwcg released this 25 Aug 08:00

Agents can operate the UI; testers can push back on a fix.

Deploy your relay before shipping this SDK. An outdated relay silently records a "still not fixed" as an ordinary reply.

  • Taps synthesize a real touch, so React Native Pressable and touchesBegan: views react. Falls back when the element is covered, and reports which path it used.
  • Long press, long-press-drag, and pinch to zoom.
  • Inspect one element: geometry, colours, truncation, clipping, what covers it, Auto Layout ambiguity.
  • Pinch/rotate-only views now appear in the UI summary.
  • Testers can say "still not fixed" on a resolved report instead of filing a new one.

3.4.0

Choose a tag to compare

@wwwcgwwwcg released this 23 Aug 13:55

The in-app UI now speaks English.

Anything other than Chinese gets English. If you shipped 3.3.2 or earlier to an English-speaking audience they saw Chinese — the English table was empty and missing translations fell back silently.

3.3.2

Choose a tag to compare

@wwwcgwwwcg released this 21 Aug 16:13

Feedback can go back and forth.

Upgrade the SDK and the relay together. On 3.3.1 the resolution note disappears and questions cannot be answered.

  • Agents can ask a clarifying question; it appears in the reporter's app with a reply box. Capped at 10 messages per item.
  • Unread badge on the floating entry; "My feedback" is its own screen with the full thread.

3.2.0

Choose a tag to compare

@wwwcgwwwcg released this 21 Aug 05:06

Connection liveness on both ends.

  • Reconnect is unbounded (30s cap, jittered) and immediate on network changes or when the app returns to the foreground. It previously gave up after two attempts.
  • Pong timeout on the client; two missed pongs mark the link dead.
  • Application-level heartbeat so the relay can close ghost connections.

3.1.0

Choose a tag to compare

@wwwcgwwwcg released this 20 Aug 13:00

In-app feedback: a tester long-presses the floating ball (or shakes the device) and writes one sentence. It is submitted with the screen, the element they picked, the build, and the appearance and simulation state.

Adds Swift Package Manager support.

⚠️ SwiftPM consumers must add -ObjC to Other Linker Flags. CocoaPods does this for you; without it some features fail at runtime with an unrecognized selector.

3.0.0

Choose a tag to compare

@wwwcgwwwcg released this 17 Aug 18:31

Breaking. The in-app debug panel is removed. The device keeps a single connection screen.

  • import Telepath and #import <Telepath/Telepath.h> are unchanged.
  • Panel-related public classes are gone — use the equivalent agent command or the web console.
  • New: Telepath.presentConnectionScreen() and Telepath.sdkVersion.
  • Contacts, EventKit, Photos and AVFoundation are no longer linked into your binary.
  • The pod is published under two names, AppTelepath and Telepath. Same binary — pick one, do not add both.

2.1.2

Choose a tag to compare

@wwwcgwwwcg released this 15 Aug 06:44
  • Improved tapping, multi-window screenshots and performance charts.
  • Improved the on-device entry, connection state and settings screen.
  • Optional React Native Fabric tap adapter.
  • Fixes: headless start, read-only SQL detection, credential redaction.

For authorized development and testing builds only; not for App Store submissions.

2.1.1

Choose a tag to compare

@wwwcgwwwcg released this 14 Aug 18:57

Fixes Telepath.start() connecting but never announcing the device, so it never appeared in the console when running without the on-device entry.