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

Fix Jitsi App Links #156

Merged
merged 1 commit into from
Apr 9, 2024
Merged
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
80 changes: 40 additions & 40 deletions jitsi/meet/domain-config.js.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -1057,47 +1057,47 @@ var config = {
appName: 'Freifunk Muenchen Jitsi Meet'
}

// // If true, any checks to handoff to another application will be prevented
// // and instead the app will continue to display in the current browser.
// disabled: false,

// // whether to hide the logo on the deep linking pages.
// hideLogo: false,

// // The ios deeplinking config.
// ios: {
// appName: 'Jitsi Meet',
// // Specify mobile app scheme for opening the app from the mobile browser.
// appScheme: 'org.jitsi.meet',
// // Custom URL for downloading ios mobile app.
// downloadLink: 'https://itunes.apple.com/us/app/jitsi-meet/id1165103905',
// dynamicLink: {
// apn: 'org.jitsi.meet',
// appCode: 'w2atb',
// customDomain: undefined,
// ibi: 'com.atlassian.JitsiMeet.ios',
// isi: '1165103905'
// }
// },
// If true, any checks to handoff to another application will be prevented
// and instead the app will continue to display in the current browser.
disabled: false,

// // The android deeplinking config.
// android: {
// appName: 'Jitsi Meet',
// // Specify mobile app scheme for opening the app from the mobile browser.
// appScheme: 'org.jitsi.meet',
// // Custom URL for downloading android mobile app.
// downloadLink: 'https://play.google.com/store/apps/details?id=org.jitsi.meet',
// // Android app package name.
// appPackage: 'org.jitsi.meet',
// fDroidUrl: 'https://f-droid.org/en/packages/org.jitsi.meet/',
// dynamicLink: {
// apn: 'org.jitsi.meet',
// appCode: 'w2atb',
// customDomain: undefined,
// ibi: 'com.atlassian.JitsiMeet.ios',
// isi: '1165103905'
// }
// }
// whether to hide the logo on the deep linking pages.
hideLogo: false,

// The ios deeplinking config.
ios: {
appName: 'Jitsi Meet',
// Specify mobile app scheme for opening the app from the mobile browser.
appScheme: 'org.jitsi.meet',
// Custom URL for downloading ios mobile app.
downloadLink: 'https://itunes.apple.com/us/app/jitsi-meet/id1165103905',
dynamicLink: {
apn: 'org.jitsi.meet',
appCode: 'w2atb',
customDomain: undefined,
ibi: 'com.atlassian.JitsiMeet.ios',
isi: '1165103905'
}
},

// The android deeplinking config.
android: {
appName: 'Jitsi Meet',
// Specify mobile app scheme for opening the app from the mobile browser.
appScheme: 'org.jitsi.meet',
// Custom URL for downloading android mobile app.
downloadLink: 'https://play.google.com/store/apps/details?id=org.jitsi.meet',
// Android app package name.
appPackage: 'org.jitsi.meet',
fDroidUrl: 'https://f-droid.org/en/packages/org.jitsi.meet/',
dynamicLink: {
apn: 'org.jitsi.meet',
appCode: 'w2atb',
customDomain: undefined,
ibi: 'com.atlassian.JitsiMeet.ios',
isi: '1165103905'
}
}
},

// A property to disable the right click context menu for localVideo
Expand Down
Loading