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.

diff --git a/site/docs-md/web/index.md b/site/docs-md/web/index.md index 158813505..002619fbd 100644 --- a/site/docs-md/web/index.md +++ b/site/docs-md/web/index.md @@ -12,7 +12,7 @@ contributors: ### Installation -Chances are, you already have Capacitor installed in your app if you're using Capacitor to build an iOS, Android, or Electron app. In capacitor, the `web` platform is just the web project that powers your app! +Chances are, you already have Capacitor installed in your app if you're using Capacitor to build an iOS, or Android app. In capacitor, the `web` platform is just the web project that powers your app! If you don't have Capacitor installed yet, consult the [Installation](./getting-started) guide before continuing. diff --git a/site/docs-md/web/pwa-elements.md b/site/docs-md/web/pwa-elements.md index 8e4f5e2da..c4445c6cd 100644 --- a/site/docs-md/web/pwa-elements.md +++ b/site/docs-md/web/pwa-elements.md @@ -10,7 +10,7 @@ contributors: # PWA Elements

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:

+load a responsive photo-taking experience when running on the web:

diff --git a/site/src/assets/img/supported-env.png b/site/src/assets/img/supported-env.png index c4fae84dd..fba2c40a1 100644 Binary files a/site/src/assets/img/supported-env.png and b/site/src/assets/img/supported-env.png differ diff --git a/site/src/components/landing-page/landing-page.tsx b/site/src/components/landing-page/landing-page.tsx index 529063ae8..df2cd1c83 100644 --- a/site/src/components/landing-page/landing-page.tsx +++ b/site/src/components/landing-page/landing-page.tsx @@ -27,7 +27,7 @@ export class LandingPage {

The Native Bridge for Cross-Platform Web Apps

- Invoke Native SDKs on iOS, Android, Electron, and the Web with one code base. + Invoke Native SDKs on iOS, Android, and the Web with one code base. Optimized for Ionic Framework apps, or use with any web app framework.

@@ -36,7 +36,7 @@ export class LandingPage {
Supports
- Apple, Android, Electron, PWA + Apple, Android, PWA
@@ -48,8 +48,7 @@ export class LandingPage {

Cross Platform

- 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

diff --git a/site/src/index.html b/site/src/index.html index ce9672ae1..c6cdc99e3 100644 --- a/site/src/index.html +++ b/site/src/index.html @@ -4,7 +4,7 @@ Capacitor - build cross platform apps with the web - +