@capgo/capacitor-screen-recorder 8.2.3 → 8.2.4

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 pluginVersion = "8.2.3";
14
+ private final String pluginVersion = "8.2.4";
15
15
 
16
16
  private ScrCast recorder;
17
17
 
@@ -7,7 +7,7 @@ import Capacitor
7
7
  */
8
8
  @objc(ScreenRecorderPlugin)
9
9
  public class ScreenRecorderPlugin: CAPPlugin, CAPBridgedPlugin {
10
- private let pluginVersion: String = "8.2.3"
10
+ private let pluginVersion: String = "8.2.4"
11
11
  public let identifier = "ScreenRecorderPlugin"
12
12
  public let jsName = "ScreenRecorder"
13
13
  public let pluginMethods: [CAPPluginMethod] = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-screen-recorder",
3
- "version": "8.2.3",
3
+ "version": "8.2.4",
4
4
  "description": "Record device's screen",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",
@@ -46,7 +46,7 @@
46
46
  "lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint",
47
47
  "fmt": "npm run eslint -- --fix && npm run prettier -- --write && npm run swiftlint -- --fix --format",
48
48
  "eslint": "eslint . --ext ts",
49
- "prettier": "prettier \"**/*.{css,html,ts,js,java}\" --plugin=prettier-plugin-java",
49
+ "prettier": "prettier-pretty-check \"**/*.{css,html,ts,js,java}\" --plugin=prettier-plugin-java",
50
50
  "swiftlint": "node-swiftlint",
51
51
  "docgen": "docgen --api ScreenRecorderPlugin --output-readme README.md --output-json dist/docs.json",
52
52
  "build": "npm run clean && npm run docgen && tsc && rollup -c rollup.config.mjs",
@@ -70,7 +70,8 @@
70
70
  "rimraf": "^6.1.0",
71
71
  "rollup": "^4.53.2",
72
72
  "swiftlint": "^2.0.0",
73
- "typescript": "^5.9.3"
73
+ "typescript": "^5.9.3",
74
+ "prettier-pretty-check": "^0.2.0"
74
75
  },
75
76
  "peerDependencies": {
76
77
  "@capacitor/core": ">=8.0.0"