diff --git a/README.md b/README.md index d7b333171..857209e6c 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@
@@ -61,11 +61,11 @@ Capacitor and Cordova differ in that Capacitor: - treats native projects as source artifacts as opposed to build artifacts - is maintained by the Ionic Team itself 💙😊 -See [the docs](https://capacitor.ionicframework.com/docs/cordova#differences-between-capacitor-and-cordova) for more details. +See [the docs](https://capacitorjs.com/docs/cordova#differences-between-capacitor-and-cordova) for more details. #### Do I need to use Ionic Framework with Capacitor? -No, you do not need to use Ionic Framework with Capacitor. Without the Ionic Framework, you may need to implement Native UI yourself. Without the Ionic CLI, you may need to configure tooling yourself to enable features such as [livereload](https://ionicframework.com/docs/cli/livereload). See [the docs](https://capacitor.ionicframework.com/docs/getting-started/with-ionic) for more details. +No, you do not need to use Ionic Framework with Capacitor. Without the Ionic Framework, you may need to implement Native UI yourself. Without the Ionic CLI, you may need to configure tooling yourself to enable features such as [livereload](https://ionicframework.com/docs/cli/livereload). See [the docs](https://capacitorjs.com/docs/getting-started/with-ionic) for more details. ## Contributing diff --git a/android/capacitor/src/main/java/com/getcapacitor/Splash.java b/android/capacitor/src/main/java/com/getcapacitor/Splash.java index 587e60244..4fca9d3b6 100644 --- a/android/capacitor/src/main/java/com/getcapacitor/Splash.java +++ b/android/capacitor/src/main/java/com/getcapacitor/Splash.java @@ -326,7 +326,7 @@ public static void hide(Context c, final int fadeOutDuration, boolean isLaunchSp if(isLaunchSplash && isVisible) { Logger.debug("SplashScreen was automatically hidden after the launch timeout. " + "You should call `SplashScreen.hide()` as soon as your web app is loaded (or increase the timeout)." + - "Read more at https://capacitor.ionicframework.com/docs/apis/splash-screen/#hiding-the-splash-screen"); + "Read more at https://capacitorjs.com/docs/apis/splash-screen#hiding-the-splash-screen"); } if (isHiding || splashImage == null || splashImage.getParent() == null) { diff --git a/capacitor-cordova-ios-plugins/CordovaPluginsResources.podspec b/capacitor-cordova-ios-plugins/CordovaPluginsResources.podspec index e8f9f8197..08263643c 100644 --- a/capacitor-cordova-ios-plugins/CordovaPluginsResources.podspec +++ b/capacitor-cordova-ios-plugins/CordovaPluginsResources.podspec @@ -4,8 +4,8 @@ Pod::Spec.new do |s| s.summary = 'Resources for Cordova plugins' s.social_media_url = 'https://twitter.com/capacitorjs' s.license = 'MIT' - s.homepage = 'https://capacitor.ionicframework.com/' + s.homepage = 'https://capacitorjs.com/' s.authors = { 'Ionic Team' => 'hi@ionicframework.com' } s.source = { :git => 'https://github.com/ionic-team/capacitor.git', :tag => s.version.to_s } s.resources = ['resources/*'] -end \ No newline at end of file +end diff --git a/cli/src/common.ts b/cli/src/common.ts index 078a9c655..c409fc2d5 100644 --- a/cli/src/common.ts +++ b/cli/src/common.ts @@ -32,7 +32,7 @@ export async function checkWebDir(config: Config): Promise