@capgo/capacitor-speech-synthesis 8.0.16 → 8.0.18

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
@@ -34,6 +34,20 @@ Perfect for accessibility features, language learning apps, audiobook players, a
34
34
 
35
35
  ## Install
36
36
 
37
+ You can use our AI-Assisted Setup to install the plugin. Add the Capgo skills to your AI tool using the following command:
38
+
39
+ ```bash
40
+ npx skills add https://github.com/cap-go/capacitor-skills --skill capacitor-plugins
41
+ ```
42
+
43
+ Then use the following prompt:
44
+
45
+ ```text
46
+ Use the `capacitor-plugins` skill from `cap-go/capacitor-skills` to install the `@capgo/capacitor-speech-synthesis` plugin in my project.
47
+ ```
48
+
49
+ If you prefer Manual Setup, install the plugin by running the following commands and follow the platform-specific instructions below:
50
+
37
51
  ```bash
38
52
  npm install @capgo/capacitor-speech-synthesis
39
53
  npx cap sync
@@ -21,7 +21,7 @@ import org.json.JSONException;
21
21
  @CapacitorPlugin(name = "SpeechSynthesis")
22
22
  public class SpeechSynthesisPlugin extends Plugin {
23
23
 
24
- private final String pluginVersion = "8.0.16";
24
+ private final String pluginVersion = "8.0.18";
25
25
  private TextToSpeech tts;
26
26
  private int utteranceIdCounter = 0;
27
27
  private boolean ttsInitialized = false;
@@ -7,7 +7,7 @@ import AVFoundation
7
7
  */
8
8
  @objc(SpeechSynthesisPlugin)
9
9
  public class SpeechSynthesisPlugin: CAPPlugin, CAPBridgedPlugin, AVSpeechSynthesizerDelegate {
10
- private let pluginVersion: String = "8.0.16"
10
+ private let pluginVersion: String = "8.0.18"
11
11
  public let identifier = "SpeechSynthesisPlugin"
12
12
  public let jsName = "SpeechSynthesis"
13
13
  public let pluginMethods: [CAPPluginMethod] = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-speech-synthesis",
3
- "version": "8.0.16",
3
+ "version": "8.0.18",
4
4
  "description": "Synthesize speech from text with full control over language, voice, pitch, rate, and volume.",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",