diff --git a/site/docs-md/basics/managing-platforms.md b/site/docs-md/basics/managing-platforms.md index 6a95d1eda..f61c695ad 100644 --- a/site/docs-md/basics/managing-platforms.md +++ b/site/docs-md/basics/managing-platforms.md @@ -1,3 +1,3 @@ # Managing Deployment Platforms -Capacitor supports iOS, Android, mobile web, and Electron. +Capacitor supports iOS, Android, and PWA. diff --git a/site/docs-md/basics/running-your-app.md b/site/docs-md/basics/running-your-app.md index bf1cafcf0..3e5b9a718 100644 --- a/site/docs-md/basics/running-your-app.md +++ b/site/docs-md/basics/running-your-app.md @@ -39,7 +39,3 @@ npx cap serve ``` This will open your web app in a local web server instance in the browser. - -## Electron - -(Coming soon) diff --git a/site/docs-md/basics/workflow.md b/site/docs-md/basics/workflow.md index eb6fa4a21..8c338a498 100644 --- a/site/docs-md/basics/workflow.md +++ b/site/docs-md/basics/workflow.md @@ -74,5 +74,4 @@ To update any or all of the platforms you are using: ```bash npm update @capacitor/ios npm update @capacitor/android -npm update @capacitor/electron ``` \ No newline at end of file diff --git a/site/docs-md/cordova/migrating-from-cordova-to-capacitor.md b/site/docs-md/cordova/migrating-from-cordova-to-capacitor.md index c42afc94b..2551899c4 100644 --- a/site/docs-md/cordova/migrating-from-cordova-to-capacitor.md +++ b/site/docs-md/cordova/migrating-from-cordova-to-capacitor.md @@ -74,7 +74,7 @@ If you've previously created icon and splash screen images, they can be found in Begin by auditing your existing Cordova plugins - it's possible that you may be able to remove ones that are no longer needed. -Next, review all of Capacitor's [core plugins](/docs/apis) as well as [community plugins](/docs/community/plugins). You may be able to switch to the Capacitor-equivalent Cordova plugin. Also note that some Capacitor plugins extend beyond mobile, including [PWA](/docs/web) and [Desktop](/docs/electron/) functionality, which Cordova traditionally hasn't had support for. For example, compare the [Capacitor Camera](/docs/apis/camera) to the [Cordova Camera](https://github.com/apache/cordova-plugin-camera). +Next, review all of Capacitor's [core plugins](/docs/apis) as well as [community plugins](/docs/community/plugins). You may be able to switch to the Capacitor-equivalent Cordova plugin. Some plugins may not match functionality entirely, but based on the features you need that may not matter. diff --git a/site/docs-md/cordova/migration-strategy.md b/site/docs-md/cordova/migration-strategy.md index abeb96cd0..6d2f6a1bd 100644 --- a/site/docs-md/cordova/migration-strategy.md +++ b/site/docs-md/cordova/migration-strategy.md @@ -36,7 +36,7 @@ Capacitor works with any Ionic project (1.0 to 4.x+), but in order to enjoy the Begin by auditing your existing Cordova plugins - it's possible that you may be able to remove ones that are no longer needed. -Next, review all of Capacitor's [core plugins](/docs/apis) as well as [community plugins](/docs/community/plugins). You may be able to switch to the Capacitor-equivalent Cordova plugin. Also note that some Capacitor plugins extend beyond mobile, including [PWA](/docs/web) and [Desktop](/docs/electron/) functionality, which Cordova traditionally hasn't had support for. For example, compare the [Capacitor Camera](/docs/apis/camera) to the [Cordova Camera](https://github.com/apache/cordova-plugin-camera). +Next, review all of Capacitor's [core plugins](/docs/apis) as well as [community plugins](/docs/community/plugins). You may be able to switch to the Capacitor-equivalent Cordova plugin. Some plugins may not match functionality entirely, but based on the features you need that may not matter. diff --git a/site/docs-md/getting-started/dependencies.md b/site/docs-md/getting-started/dependencies.md index e2dccbab4..e6a4c54b9 100644 --- a/site/docs-md/getting-started/dependencies.md +++ b/site/docs-md/getting-started/dependencies.md @@ -37,8 +37,4 @@ Android development requires the **Android SDK** installed with **[Android Studi Android version support for Capacitor is more complex than iOS. Currently, we are targeting API level 21 or greater, meaning Android 5.0 (Lollipop) or above. [As of May 2019](https://developer.android.com/about/dashboards), this represents over 89% of the Android market. -Also, Capacitor requires an Android WebView with Chrome version 50 or later. On Android 5 and 6, the Capacitor uses the System WebView. On Android 7+, Google Chrome is used. - -## Electron Development - -No specific dependencies are needed to use Capacitor with Electron. \ No newline at end of file +Also, Capacitor requires an Android WebView with Chrome version 50 or later. On Android 5 and 6, the Capacitor uses the System WebView. On Android 7+, Google Chrome is used. \ No newline at end of file diff --git a/site/docs-md/getting-started/index.md b/site/docs-md/getting-started/index.md index d371ebdf5..b559a6309 100644 --- a/site/docs-md/getting-started/index.md +++ b/site/docs-md/getting-started/index.md @@ -51,7 +51,6 @@ Next, install any of the desired native platforms: ```bash npx cap add android npx cap add ios -npx cap add electron ``` 🎉 Capacitor is now installed in your project. 🎉 diff --git a/site/docs-md/index.md b/site/docs-md/index.md index 6a8959890..0e21dc150 100644 --- a/site/docs-md/index.md +++ b/site/docs-md/index.md @@ -1,6 +1,6 @@ --- title: Capacitor - A Cross-platform App Runtime -description: A cross-platform app runtime for building Native Progressive Web Apps for iOS, Android, Electron, and beyond +description: A cross-platform app runtime for building Native Progressive Web Apps for iOS, Android, and beyond url: /docs/ contributors: - mlynch @@ -11,7 +11,7 @@ contributors: # Capacitor: A Cross-platform App Runtime -
Capacitor is a cross-platform app runtime that makes it easy to build web apps that run natively on iOS, Android, Electron, and the web. We call these apps "Native Progressive Web Apps" and they represent the next evolution beyond Hybrid apps.
+Capacitor is a cross-platform app runtime that makes it easy to build web apps that run natively on iOS, Android, and the web. We call these apps "Native Progressive Web Apps" and they represent the next evolution beyond Hybrid apps.
Some Capacitor plugins, such as Camera
or Toast
, have web-based UI available when not running natively. For example, calling Camera.getPhoto()
will
-load a responsive photo-taking experience when running on the web or electron:
- Build web apps that run equally well on iOS, Android, - Electron, and as Progressive Web Apps + Build web apps that run equally well on iOS, Android, and as Progressive Web Apps