@capgo/native-market 7.1.5 → 7.1.7

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.
@@ -0,0 +1,84 @@
1
+ ---
2
+ name: 🚨 Bug Report
3
+ about: Report something not working
4
+ title: 'bug: '
5
+ labels: ''
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ ## Bug Report
11
+
12
+ ### Capacitor Version
13
+ <!--
14
+ Paste the output from the `npx cap doctor` command into the code block below. This will provide the versions of Capacitor packages and related dependencies.
15
+ -->
16
+
17
+ ```
18
+ PASTE OUTPUT HERE
19
+ ```
20
+
21
+ ### Plugin Version
22
+ <!--
23
+ Paste the output from the `npx @capgo/cli@latest doctor` command into the code block below. This will provide the versions of Capacitor updater package.
24
+ -->
25
+ ```
26
+ PASTE OUTPUT HERE
27
+ ```
28
+
29
+ ### context(s)
30
+ <!--
31
+ Please change the value acording to your context
32
+ -->
33
+ ```md
34
+ ManualModel: false
35
+ AutoMode: false
36
+ CapgoCloud: false
37
+ OnPremise: false
38
+ ```
39
+
40
+ ### Platform(s)
41
+ <!--
42
+ List the platforms that this bug affects.
43
+ -->
44
+
45
+
46
+
47
+ ### Current Behavior
48
+ <!--
49
+ Describe how the bug manifests. Be specific.
50
+ -->
51
+
52
+
53
+
54
+ ### Expected Behavior
55
+ <!--
56
+ Describe what the behavior should be.
57
+ -->
58
+
59
+
60
+
61
+ ### Code Reproduction
62
+ <!--
63
+ To isolate the cause of the problem, we ask you to provide a minimal sample application that demonstrates the issue.
64
+ For full instructions, see: https://github.com/ionic-team/capacitor/blob/HEAD/CONTRIBUTING.md#creating-a-code-reproduction
65
+ -->
66
+
67
+
68
+
69
+ ### Other Technical Details
70
+ <!--
71
+ Please provide the following information with your request and any other relevant technical details (versions of IDEs, local environment info, plugin information or links, etc).
72
+ -->
73
+
74
+ `npm --version` output:
75
+
76
+ `node --version` output:
77
+
78
+ `pod --version` output (iOS issues only):
79
+
80
+ ### Additional Context
81
+ <!--
82
+ List any other information that is relevant to your issue. Stack traces, related issues, suggestions on how to fix, Stack Overflow links, forum links, etc.
83
+ -->
84
+
@@ -0,0 +1,41 @@
1
+ ---
2
+ name: ⚡️ Feature Request
3
+ about: Request a feature or change
4
+ title: 'feat: '
5
+ labels: ''
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ ## Feature Request
11
+
12
+ ### Description
13
+ <!--
14
+ Describe the feature request. If your feature request is related to a problem, be sure to describe that as well.
15
+ -->
16
+
17
+
18
+
19
+ ### Platform(s)
20
+ <!--
21
+ List the platforms for which this feature should be added.
22
+ -->
23
+
24
+
25
+
26
+ ### Preferred Solution
27
+ <!-- Describe the solution you would prefer. -->
28
+
29
+
30
+
31
+ ### Alternatives
32
+ <!-- Describe alternative solutions or features you've considered, if any. -->
33
+
34
+
35
+
36
+ ### Additional Context
37
+ <!--
38
+ List any other information that is relevant to your issue. Stack traces, related issues, suggestions on how to fix, Stack Overflow links, forum links, etc.
39
+ -->
40
+
41
+
@@ -20,4 +20,4 @@ jobs:
20
20
  - name: Lint
21
21
  id: lint_code
22
22
  run: npm run fmt
23
- - uses: autofix-ci/action@551dded8c6cc8a1054039c8bc0b8b48c51dfc6ef
23
+ - uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27
@@ -1,22 +1,45 @@
1
1
  name: Build source code and check lint
2
2
 
3
+ concurrency:
4
+ group: ${{ github.workflow }}-${{ github.ref }}
5
+ cancel-in-progress: true
6
+
3
7
  on:
4
8
  push:
5
9
  tags:
6
10
  - "*"
7
11
 
8
12
  jobs:
13
+ lint:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Check out
17
+ uses: actions/checkout@v5
18
+ - uses: oven-sh/setup-bun@v2
19
+ - name: Install dependencies
20
+ id: install_code
21
+ run: bun i
22
+ - name: Lint
23
+ id: lint_code
24
+ run: bun run lint
25
+ - name: Build
26
+ id: build_code
27
+ run: bun run build
28
+ - name: Verify
29
+ id: verify_code
30
+ run: bun run verify:web
9
31
  build_android:
32
+ needs: lint
10
33
  runs-on: ubuntu-latest
11
34
  steps:
12
35
  - name: Check out
13
- uses: actions/checkout@v4
36
+ uses: actions/checkout@v5
14
37
  - uses: oven-sh/setup-bun@v2
15
38
  - name: Install dependencies
16
39
  id: install_code
17
40
  run: bun i
18
41
  - name: Setup java
19
- uses: actions/setup-java@v4
42
+ uses: actions/setup-java@v5
20
43
  with:
21
44
  distribution: 'zulu'
22
45
  java-version: '21'
@@ -28,10 +51,11 @@ jobs:
28
51
  id: build_code
29
52
  run: npm run verify:android
30
53
  build_ios:
54
+ needs: lint
31
55
  runs-on: macOS-latest
32
56
  steps:
33
57
  - name: Check out
34
- uses: actions/checkout@v4
58
+ uses: actions/checkout@v5
35
59
  - uses: oven-sh/setup-bun@v2
36
60
  - uses: actions/cache@v4
37
61
  id: cocoapods-cache
@@ -51,24 +75,18 @@ jobs:
51
75
  runs-on: ubuntu-latest
52
76
  name: "Build code and npm release"
53
77
  permissions:
54
- contents: read
78
+ contents: write
55
79
  id-token: write
56
80
  steps:
57
81
  - name: Check out
58
- uses: actions/checkout@v4
82
+ uses: actions/checkout@v5
59
83
  - uses: oven-sh/setup-bun@v2
60
84
  - name: Install dependencies
61
85
  id: install_code
62
86
  run: bun i
63
- - name: Lint
64
- id: lint_code
65
- run: bun run lint
66
87
  - name: Build
67
88
  id: build_code
68
89
  run: bun run build
69
- - name: Verify
70
- id: verify_code
71
- run: bun run verify:web
72
90
  - uses: JS-DevTools/npm-publish@v3
73
91
  if: ${{ !contains(github.ref, '-alpha.') }}
74
92
  with:
@@ -80,3 +98,9 @@ jobs:
80
98
  token: ${{ secrets.NPM_TOKEN }}
81
99
  tag: next
82
100
  provenance: true
101
+ - name: Create GitHub release
102
+ id: create_release
103
+ uses: softprops/action-gh-release@v2
104
+ with:
105
+ generate_release_notes: true
106
+ prerelease: ${{ contains(github.ref, '-alpha.') }}
package/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # Changelog
2
2
 
3
- All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
3
+ All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
4
+
5
+ ## [7.1.7](https://github.com/Cap-go/capacitor-native-market/compare/7.1.6...7.1.7) (2025-10-08)
6
+
7
+ ### [7.1.6](https://github.com/Cap-go/capacitor-native-market/compare/7.1.5...7.1.6) (2025-07-19)
4
8
 
5
9
  ### [7.1.5](https://github.com/Cap-go/capacitor-native-market/compare/7.1.4...7.1.5) (2025-04-03)
6
10
 
package/README.md CHANGED
@@ -3,9 +3,8 @@
3
3
  <a href="https://capgo.app/"><img src='https://raw.githubusercontent.com/Cap-go/capgo/main/assets/capgo_banner.png' alt='Capgo - Instant updates for capacitor'/></a>
4
4
 
5
5
  <div align="center">
6
- <h2><a href="https://capgo.app/?ref=plugin"> ➡️ Get Instant updates for your App with Capgo 🚀</a></h2>
7
- <h2><a href="https://capgo.app/consulting/?ref=plugin"> Fix your annoying bug now, Hire a Capacitor expert 💪</a></h2>
8
- </div>
6
+ <h2><a href="https://capgo.app/?ref=plugin"> ➡️ Get Instant updates for your App with Capgo</a></h2>
7
+ <h2><a href="https://capgo.app/consulting/?ref=plugin"> Missing a feature? We’ll build the plugin for you 💪</a></h2>
9
8
  </div>
10
9
 
11
10
  Capacitor community plugin for native market for Play Store/App Store.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/native-market",
3
- "version": "7.1.5",
3
+ "version": "7.1.7",
4
4
  "description": "A native market plugin for linking to google play or app store.",
5
5
  "module": "dist/esm/index.js",
6
6
  "main": "dist/esm/index.js",
@@ -1,86 +0,0 @@
1
- name: 🚨 Bug report
2
- title: "bug: "
3
- description: Create a bug report to help us improve
4
- labels: ["bug/fix", "needs: triage"]
5
-
6
- body:
7
- - type: input
8
- attributes:
9
- label: Version
10
- description: |
11
- Let us know the version number of each affected plugin. Please make sure you are using the latest version before reporting an issue. Chances are that the bug you discovered has already been fixed in a subsequent version.
12
- placeholder: 6.0.0
13
- validations:
14
- required: true
15
- - type: checkboxes
16
- attributes:
17
- label: Platform(s)
18
- description: Select the platforms that this bug affects.
19
- options:
20
- - label: Android
21
- - label: iOS
22
- - label: Web
23
- - type: textarea
24
- attributes:
25
- label: Current behavior
26
- description: A concise description of what you're experiencing.
27
- validations:
28
- required: true
29
- - type: textarea
30
- attributes:
31
- label: Expected behavior
32
- description: A concise description of what you expected to happen.
33
- validations:
34
- required: true
35
- - type: input
36
- attributes:
37
- label: Reproduction
38
- description: |
39
- Please provide a [Minimal, Reproducible Example](https://stackoverflow.com/help/minimal-reproducible-example) in a public GitHub repository so that we can debug the issue.
40
- We have prepared a template repository that you can use: [Cap-go/.capacitor-app](https://github.com/Cap-go/.capacitor-app).
41
- placeholder: https://github.com/...
42
- validations:
43
- required: false
44
- - type: textarea
45
- attributes:
46
- label: Steps to reproduce
47
- description: Steps to reproduce the behaviour using the provided example.
48
- placeholder: |
49
- 1. In this environment...
50
- 2. With this config...
51
- 3. Run '...'
52
- 4. See error...
53
- validations:
54
- required: true
55
- - type: textarea
56
- attributes:
57
- label: Other information
58
- description: List any other information that is relevant to your issue. Device information, stack traces, screenshots, related issues, etc.
59
- - type: textarea
60
- attributes:
61
- label: Capacitor doctor
62
- description: Run `npx cap doctor` in a terminal and paste the output below.
63
- validations:
64
- required: true
65
- - type: checkboxes
66
- attributes:
67
- label: Before submitting
68
- description: |
69
- A well-written bug report allows the maintainers to quickly recreate the necessary conditions to inspect the bug and quickly find its root cause.
70
- Please ensure your bug report fulfills all of the following requirements.
71
- options:
72
- - label: I have read and followed the [bug report guidelines](https://capawesome.io/contributing/bug-reports/).
73
- required: true
74
- - label: I have attached links to possibly related issues and discussions.
75
- required: true
76
- - label: I understand that incomplete issues (e.g. without reproduction) are closed.
77
- required: true
78
- - type: checkboxes
79
- attributes:
80
- label: Fastest way to fix this issue
81
- description: |
82
- Founding is a great way to get your issue fixed fast. This make community contributions more likely to happen and discharge the maintainers from the burden of being the only one fixing all issues.
83
- options:
84
- - label: I want to get this fix ASAP and [found the issue with Algora](https://console.algora.io/org/gl/bounties/community?fund=Cap-go%2Fcapacitor-inappbrowser) we recommend ($50 to $500)
85
- required: false
86
-
@@ -1,45 +0,0 @@
1
- name: ⚡️ Feature request
2
- title: "feat: "
3
- description: Suggest an idea for this project
4
- labels: ["feature", "needs: triage"]
5
-
6
- body:
7
- - type: textarea
8
- attributes:
9
- label: Current problem
10
- description: A clear and concise description of what the problem is.
11
- placeholder: I'm always frustrated when [...]
12
- validations:
13
- required: true
14
- - type: textarea
15
- attributes:
16
- label: Preferred solution
17
- description: A clear and concise description of what you want to happen.
18
- validations:
19
- required: true
20
- - type: textarea
21
- attributes:
22
- label: Alternative options
23
- description: A clear and concise description of any alternative solutions or features you've considered.
24
- - type: textarea
25
- attributes:
26
- label: Additional context
27
- description: Add any other context or screenshots about the feature request here.
28
- - type: checkboxes
29
- attributes:
30
- label: Before submitting
31
- description: |
32
- Please ensure your idea fulfills all of the following requirements.
33
- options:
34
- - label: I have read and followed the [feature request guidelines](https://capawesome.io/contributing/feature-requests/).
35
- required: true
36
- - label: I have attached links to possibly related issues and discussions.
37
- required: true
38
- - type: checkboxes
39
- attributes:
40
- label: Fastest way to get this feature added
41
- description: |
42
- Founding is a great way to get your feature added fast. This make community contributions more likely to happen and discharge the maintainers from the burden of being the only one adding features.
43
- options:
44
- - label: I want to get this feature ASAP and [found the issue with Algora](https://console.algora.io/org/gl/bounties/community?fund=Cap-go%2Fcapacitor-inappbrowser) we recommend ($100 to $1000)
45
- required: false