@capgo/capacitor-navigation-bar 8.0.13 → 8.0.15
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/Package.swift
CHANGED
|
@@ -13,7 +13,7 @@ let package = Package(
|
|
|
13
13
|
)
|
|
14
14
|
],
|
|
15
15
|
dependencies: [
|
|
16
|
-
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "8.0.
|
|
16
|
+
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "8.0.0")
|
|
17
17
|
],
|
|
18
18
|
targets: [
|
|
19
19
|
.target(
|
package/README.md
CHANGED
|
@@ -13,6 +13,17 @@ Set navigation bar color for android lollipop and higher
|
|
|
13
13
|
|
|
14
14
|
The most complete doc is available here: https://capgo.app/docs/plugins/navigation-bar/
|
|
15
15
|
|
|
16
|
+
## Compatibility
|
|
17
|
+
|
|
18
|
+
| Plugin version | Capacitor compatibility | Maintained |
|
|
19
|
+
| -------------- | ----------------------- | ---------- |
|
|
20
|
+
| v8.\*.\* | v8.\*.\* | ✅ |
|
|
21
|
+
| v7.\*.\* | v7.\*.\* | On demand |
|
|
22
|
+
| v6.\*.\* | v6.\*.\* | ❌ |
|
|
23
|
+
| v5.\*.\* | v5.\*.\* | ❌ |
|
|
24
|
+
|
|
25
|
+
> **Note:** The major version of this plugin follows the major version of Capacitor. Use the version that matches your Capacitor installation (e.g., plugin v8 for Capacitor 8). Only the latest major version is actively maintained.
|
|
26
|
+
|
|
16
27
|
## Install
|
|
17
28
|
|
|
18
29
|
```bash
|
package/android/src/main/java/ee/forgr/capacitor_navigation_bar/CapgoNavigationBarPlugin.java
CHANGED
|
@@ -15,7 +15,7 @@ import java.util.Locale;
|
|
|
15
15
|
@CapacitorPlugin(name = "NavigationBar")
|
|
16
16
|
public class CapgoNavigationBarPlugin extends Plugin {
|
|
17
17
|
|
|
18
|
-
private final String pluginVersion = "8.0.
|
|
18
|
+
private final String pluginVersion = "8.0.15";
|
|
19
19
|
|
|
20
20
|
@PluginMethod
|
|
21
21
|
public void setNavigationBarColor(PluginCall call) {
|
|
@@ -7,7 +7,7 @@ import Capacitor
|
|
|
7
7
|
*/
|
|
8
8
|
@objc(CapgoNavigationBarPlugin)
|
|
9
9
|
public class CapgoNavigationBarPlugin: CAPPlugin, CAPBridgedPlugin {
|
|
10
|
-
private let pluginVersion: String = "8.0.
|
|
10
|
+
private let pluginVersion: String = "8.0.15"
|
|
11
11
|
public let identifier = "CapgoNavigationBarPlugin"
|
|
12
12
|
public let jsName = "NavigationBar"
|
|
13
13
|
public let pluginMethods: [CAPPluginMethod] = [
|
package/package.json
CHANGED