Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update site links #3152

Merged
merged 2 commits into from
Jun 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<a href="https://www.npmjs.com/package/@capacitor/core"><img src="https://img.shields.io/npm/l/@capacitor/core?style=flat-square" /></a>
</p>
<p align="center">
<a href="https://capacitor.ionicframework.com/docs"><img src="https://img.shields.io/static/v1?label=docs&message=getcapacitor.com&color=blue&style=flat-square" /></a>
<a href="https://capacitorjs.com/docs"><img src="https://img.shields.io/static/v1?label=docs&message=getcapacitor.com&color=blue&style=flat-square" /></a>
<a href="https://twitter.com/capacitorjs"><img src="https://img.shields.io/twitter/follow/capacitorjs" /></a>
</p>

Expand Down Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
4 changes: 2 additions & 2 deletions capacitor-cordova-ios-plugins/CordovaPluginsResources.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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
end
4 changes: 2 additions & 2 deletions cli/src/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export async function checkWebDir(config: Config): Promise<string | null> {
Please create it and make sure it has an index.html file. You can change
the path of this directory in capacitor.config.json (webDir option).
You may need to compile the web assets for your app (typically 'npm run build').
More info: https://capacitor.ionicframework.com/docs/basics/building-your-app`;
More info: https://capacitorjs.com/docs/basics/building-your-app`;
}

if (!await existsAsync(join(config.app.webDirAbs, 'index.html'))) {
Expand Down Expand Up @@ -377,7 +377,7 @@ export async function printNextSteps(config: Config, appDir: string) {
log(` npx cap add ios`);
log(` npx cap add electron`);
log('');
log(`Follow the Developer Workflow guide to get building:\n${chalk.bold(`https://capacitor.ionicframework.com/docs/basics/workflow`)}\n`);
log(`Follow the Developer Workflow guide to get building:\n${chalk.bold(`https://capacitorjs.com/docs/basics/workflow`)}\n`);
}

export async function getCoreVersion(config: Config): Promise<string> {
Expand Down
2 changes: 1 addition & 1 deletion cli/src/tasks/add.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,5 +121,5 @@ function webWarning() {
logError(`Not adding platform ${chalk.bold('web')}`);
log(`\nIn Capacitor, the 'web' platform is just your web app!`);
log(`For example, if you have a React or Angular project, the 'web' platform is that project.`);
log(`To add Capacitor functionality to your web app, follow the Web Getting Started Guide: https://capacitor.ionicframework.com/docs/web/`);
log(`To add Capacitor functionality to your web app, follow the Web Getting Started Guide: https://capacitorjs.com/docs/web`);
}
2 changes: 1 addition & 1 deletion cli/test/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ 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/*']
Expand Down
2 changes: 1 addition & 1 deletion core/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Capacitor Core JS

See [Capacitor Docs](https://ionic-team.github.com/capacitor) for more information.
See the [Capacitor website](https://capacitorjs.com) for more information.
2 changes: 1 addition & 1 deletion example/src/pages/app/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<p>
<a href="tel:212-549-2543">Telephone Test</a>
<a href="mailto:max@ionic.io">Email Test</a>
<a href="http://capacitor.ionicframework.com/" target="_blank">Read more</a>
<a href="http://capacitorjs.com/" target="_blank">Read more</a>
</p>
<form>
<input #inputEl type="text">
Expand Down
2 changes: 1 addition & 1 deletion ios/Capacitor.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Pod::Spec.new do |s|
s.summary = 'Capacitor for iOS'
s.social_media_url = 'https://twitter.com/capacitorjs'
s.license = 'MIT'
s.homepage = 'https://capacitor.ionicframework.com/'
s.homepage = 'https://capacitorjs.com/'
s.ios.deployment_target = '11.0'
s.authors = { 'Ionic Team' => 'hi@ionicframework.com' }
s.source = { :git => 'https://github.com/ionic-team/capacitor.git', :tag => s.version.to_s }
Expand Down
2 changes: 1 addition & 1 deletion ios/Capacitor/Capacitor/CAPBridge.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ enum BridgeError: Error {
var tmpWindow: UIWindow?
@objc public static let statusBarTappedNotification = Notification(name: Notification.Name(rawValue: "statusBarTappedNotification"))
@objc public static let tmpVCAppeared = Notification(name: Notification.Name(rawValue: "tmpViewControllerAppeared"))
public static var CAP_SITE = "https://capacitor.ionicframework.com/"
public static var CAP_SITE = "https://capacitorjs.com/"
public static var CAP_FILE_START = "/_capacitor_file_"
public static let CAP_DEFAULT_SCHEME = "capacitor"

Expand Down
2 changes: 1 addition & 1 deletion ios/Capacitor/Capacitor/Plugins/SplashScreen.swift
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ public class CAPSplashScreenPlugin: CAPPlugin {
if isLaunchSplash, isVisible {
CAPLog.print("SplashScreen.hideSplash: SplashScreen was automatically hidden after default 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 !isVisible { return }
DispatchQueue.main.async {
Expand Down
2 changes: 1 addition & 1 deletion ios/CapacitorCordova.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Pod::Spec.new do |s|
s.module_name = 'Cordova'
s.version = package['version']
s.summary = "Capacitor Cordova Compatibility Layer"
s.homepage = "https://ionic-team.github.io/capacitor"
s.homepage = "https://capacitorjs.com"
s.license = 'MIT'
s.authors = { 'Ionic Team' => 'hi@ionicframework.com' }
s.source = { :git => 'https://github.com/ionic-team/capacitor', :tag => s.version.to_s }
Expand Down
2 changes: 1 addition & 1 deletion plugin-template/ios/Plugin/Plugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Capacitor

/**
* Please read the Capacitor iOS Plugin Development Guide
* here: https://capacitor.ionicframework.com/docs/plugins/ios
* here: https://capacitorjs.com/docs/plugins/ios
*/
@objc(CLASS_NAME)
public class CLASS_NAME: CAPPlugin {
Expand Down