Skip to content

Commit b566a48

Browse files
authored
Merge pull request #976 from AvdLee/docs/rocketsim-15-1-docs-refresh
docs: refresh RocketSim 15.1 feature docs
2 parents cdf12f4 + 0b2704f commit b566a48

File tree

16 files changed

+60
-14
lines changed

16 files changed

+60
-14
lines changed

docs/src/collections/feature-page/app-actions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: "App Actions"
3-
description: "Configurable quick actions for deeplinks, push notifications, locations, permissions, reset keychain, and more."
3+
description: "Configurable quick actions for parameterized deeplinks, push notifications, locations, permissions, reset keychain, and more."
44
hero:
55
title: "App Actions"
6-
subtitle: "Configurable actions to boost your development speed and clear app state faster"
6+
subtitle: "Configurable actions to boost your development speed, test dynamic deeplinks, and clear app state faster"
77
bento:
88
enable: true
99
list:
@@ -15,7 +15,7 @@ bento:
1515
imageAlign: "center"
1616
squareColumn:
1717
title: "Quick Actions"
18-
subtitle: "Configurable actions for Deeplinks, Push Notifications, and locations."
18+
subtitle: "Configurable actions for Deeplinks, Push Notifications, locations, and runtime deeplink arguments."
1919
image: "/images/features/privacy-permissions.png"
2020
imageAlign: "center-top"
2121
secondServiceRow:
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Networking"
3-
description: "Monitor network requests in realtime, export prompt-ready debugging context, control network speed, and simulate airplane mode."
3+
description: "Monitor network requests in realtime, correlate them with app logs, export prompt-ready debugging context, control network speed, and simulate airplane mode."
44
hero:
55
title: "Networking"
6-
subtitle: "Inspect, export, throttle, and control your app's network traffic"
6+
subtitle: "Inspect requests, correlate app logs, export debugging context, and control your app's network traffic"
77
---

docs/src/collections/feature-page/screenshots-recordings.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: "Screenshots & Recordings"
3-
description: "Create professional screenshots and recordings with device bezels, touch indicators, a built-in post editor, and App Store Connect optimization."
3+
description: "Create professional screenshots and recordings with device bezels, touch indicators, multi-touch pinch gestures, a built-in post editor, and App Store Connect optimization."
44
hero:
55
title: "Screenshots & Recordings"
6-
subtitle: "Professional captures you can polish after recording"
6+
subtitle: "Professional captures with multi-touch gestures you can polish after recording"
77
bento:
88
enable: true
99
list:

docs/src/collections/feature/01-network-monitoring.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ asset:
1414
caption: "Network Monitoring is made possible by [Pulse](https://github.com/kean/Pulse), an open-source project created by [Alex Grebenyuk](https://github.com/kean)."
1515
---
1616

17-
Explore JSON responses, request headers, metrics, copy cURL requests, export redacted summaries, and generate prompt-ready debugging context.
17+
Explore JSON responses, request headers, metrics, connected app logs, copy cURL requests, export redacted summaries, and generate prompt-ready debugging context.

docs/src/collections/feature/23-deeplinks-universal-links.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ asset:
99
columnSpan: 6
1010
---
1111

12-
**Test deep links and universal links** directly from the side window. Save, organize, and trigger your app's URL schemes and associated domains.
12+
**Test deep links and universal links** directly from the side window. Save, organize, and trigger your app's URL schemes and associated domains, including reusable URLs with placeholders like `{SYMBOL}`.

docs/src/collections/feature/26-touch-indicators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ asset:
99
columnSpan: 6
1010
---
1111

12-
**Show touch indicators** in your recordings and screenshots. Enable **Touch Attention Mode** for a constant indicator that follows your pointer — the same technique Apple uses in their demo videos.
12+
**Show touch indicators** in your recordings and screenshots. Enable **Touch Attention Mode** for a constant indicator that follows your pointer, and record pinch or rotate gestures with both touch points visible for clearer demos.

docs/src/content/docs/docs/features/app-actions/deeplinks-universal-links.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,30 @@ The same functionality can be built into your apps. I’ve seen developers manag
1010
## Creating a deeplink (Universal Link)
1111

1212
1. Open Settings
13-
2. Select the App Groups tab
14-
3. Create a new deeplink inside your apps group:
13+
2. Select the **App Actions** tab
14+
3. Create a new deeplink inside your app's group:
1515

16-
![Deep link editor in the App Group settings with URL scheme input](./deeplinks-universal-links/cleanshot_2025-01-21_at_14.23.352x.png)
16+
![Deep link editor in the App Actions settings with URL scheme input](./deeplinks-universal-links/cleanshot_2025-01-21_at_14.23.352x.png)
1717

1818
4. Open the Simulator
1919
5. Execute the action by tapping your deeplink from the side window:
2020

2121
![Deep link list in the side window ready to trigger](./deeplinks-universal-links/cleanshot_2025-01-21_at_14.24.042x.png)
2222

23+
## Deeplinks with arguments
24+
25+
RocketSim 15.1 adds support for a single runtime argument inside a deeplink URL. Use curly braces to mark the placeholder, for example `stocks://analyze/{SYMBOL}`.
26+
27+
That makes it easy to keep one reusable deeplink around for many test cases instead of saving a separate action per symbol, product ID, or user identifier.
28+
29+
![Deeplink editor showing a configured runtime placeholder such as {SYMBOL} in the URL.](./deeplinks-universal-links/deeplinks_argument_settings_example.png)
30+
31+
When you trigger that deeplink from the side window, RocketSim opens a compact input view right there in the Simulator context. Enter the value you want to use and RocketSim substitutes it into the final URL before launching your app.
32+
33+
RocketSim also keeps a few recently used values as quick relaunch pills, so repeating the same test case only takes one click.
34+
35+
![Side window deeplink prompt showing a runtime argument field and recent values for quick relaunch.](./deeplinks-universal-links/deeplinks_with_argument_side_window.png)
36+
2337
## Learn more
2438

2539
If you’d like to learn more about deeplinks and Universal Links, I encourage you to read the following articles:
1.48 MB
Loading
925 KB
Loading

docs/src/content/docs/docs/features/capturing/post-editor.mdx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,16 @@ RocketSim 15 also supports keyboard-friendly previewing, so playback controls fi
4646

4747
![Capture Editor open for a recording, showing the preview, trim timeline, and inspector controls.](./post-editor/video-post-editor.png)
4848

49+
## Showing pinch and rotate gestures
50+
51+
RocketSim 15.1 improves multi-touch recordings by showing both touch points when you perform a Simulator pinch or rotate gesture. This makes demos of zooming, map interactions, and canvas gestures much clearer in the final export.
52+
53+
Use `Option` while interacting with the Simulator to reveal the second touch point. Hold `Shift` at the same time to move the gesture center before pinching, which is especially useful when you want the interaction to happen away from the middle of the screen.
54+
55+
The Capture Editor keeps those touch points visible in the preview, so you can verify the gesture looks right before exporting.
56+
57+
![Capture Editor showing a pinch gesture with two visible touch points while editing a recording.](./post-editor/capture_editor_showing_pinches.png)
58+
4959
## Editing screenshots
5060

5161
Screenshots use the same editing flow, minus the video timeline. This is especially useful when you want to change the final framing, background, or metadata after the capture has already been taken.

0 commit comments

Comments
 (0)