@capgo/capacitor-mute 7.3.0 → 7.3.2

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
@@ -9,6 +9,10 @@
9
9
 
10
10
  Detect if the mute switch is enabled/disabled on a device
11
11
 
12
+ ## Documentation
13
+
14
+ The most complete doc is available here: https://capgo.app/docs/plugins/mute/
15
+
12
16
  ## Install
13
17
 
14
18
  ```bash
@@ -11,7 +11,7 @@ import com.getcapacitor.annotation.CapacitorPlugin;
11
11
  @CapacitorPlugin(name = "Mute")
12
12
  public class MutePlugin extends Plugin {
13
13
 
14
- private final String PLUGIN_VERSION = "7.3.0";
14
+ private final String PLUGIN_VERSION = "7.3.2";
15
15
 
16
16
  @PluginMethod
17
17
  public void isMuted(PluginCall call) {
@@ -7,7 +7,7 @@ import Capacitor
7
7
  */
8
8
  @objc(MutePlugin)
9
9
  public class MutePlugin: CAPPlugin, CAPBridgedPlugin {
10
- private let PLUGIN_VERSION: String = "7.3.0"
10
+ private let PLUGIN_VERSION: String = "7.3.2"
11
11
  public let identifier = "MutePlugin"
12
12
  public let jsName = "Mute"
13
13
  public let pluginMethods: [CAPPluginMethod] = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-mute",
3
- "version": "7.3.0",
3
+ "version": "7.3.2",
4
4
  "description": "Detect if the mute switch is enabled/disabled on a device",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",