@capgo/capacitor-screen-recorder 7.3.0 → 7.3.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.
@@ -11,7 +11,7 @@ import dev.bmcreations.scrcast.config.Options;
11
11
  @CapacitorPlugin(name = "ScreenRecorder")
12
12
  public class ScreenRecorderPlugin extends Plugin {
13
13
 
14
- private final String PLUGIN_VERSION = "7.3.0";
14
+ private final String pluginVersion = "7.3.1";
15
15
 
16
16
  private ScrCast recorder;
17
17
 
@@ -38,7 +38,7 @@ public class ScreenRecorderPlugin extends Plugin {
38
38
  public void getPluginVersion(final PluginCall call) {
39
39
  try {
40
40
  final JSObject ret = new JSObject();
41
- ret.put("version", this.PLUGIN_VERSION);
41
+ ret.put("version", this.pluginVersion);
42
42
  call.resolve(ret);
43
43
  } catch (final Exception e) {
44
44
  call.reject("Could not get plugin version", e);
@@ -7,7 +7,7 @@ import Capacitor
7
7
  */
8
8
  @objc(ScreenRecorderPlugin)
9
9
  public class ScreenRecorderPlugin: CAPPlugin, CAPBridgedPlugin {
10
- private let PLUGIN_VERSION: String = "7.3.0"
10
+ private let pluginVersion: String = "7.3.1"
11
11
  public let identifier = "ScreenRecorderPlugin"
12
12
  public let jsName = "ScreenRecorder"
13
13
  public let pluginMethods: [CAPPluginMethod] = [
@@ -39,7 +39,7 @@ public class ScreenRecorderPlugin: CAPPlugin, CAPBridgedPlugin {
39
39
  }
40
40
 
41
41
  @objc func getPluginVersion(_ call: CAPPluginCall) {
42
- call.resolve(["version": self.PLUGIN_VERSION])
42
+ call.resolve(["version": self.pluginVersion])
43
43
  }
44
44
 
45
45
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-screen-recorder",
3
- "version": "7.3.0",
3
+ "version": "7.3.1",
4
4
  "description": "Record device's screen",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",