mirror of
https://github.com/Eugeny/tabby.git
synced 2025-08-13 04:41:54 +00:00
.github
.vscode
app
assets
lib
app.ts
cli.ts
config.ts
index.ts
lru.ts
pluginManager.ts
portable.ts
pty.ts
sentry.ts
stringDecoder.ts
utfSplitter.ts
window.ts
src
dev-app-update.yml
index.pug
package.json
tsconfig.json
tsconfig.main.json
webpack.config.js
webpack.main.config.js
yarn.lock
build
docs
extras
locale
patches
scripts
snap
tabby-community-color-schemes
tabby-core
tabby-electron
tabby-linkifier
tabby-local
tabby-plugin-manager
tabby-serial
tabby-settings
tabby-ssh
tabby-telnet
tabby-terminal
tabby-uac
tabby-web
tabby-web-demo
web
.all-contributorsrc
.eslintrc.yml
.gitignore
.mergify.yml
.pug-lintrc.js
CODE_OF_CONDUCT.md
HACKING.md
LICENSE
README.ko-KR.md
README.md
README.zh-CN.md
appveyor.yml
electron-builder.yml
firebase.json
package.json
tsconfig.json
typedoc.js
webpack.config.js
webpack.plugin.config.js
yarn.lock
20 lines
592 B
TypeScript
Executable File
20 lines
592 B
TypeScript
Executable File
const { init } = String(process.type) === 'main' ? require('@sentry/electron/dist/main') : require('@sentry/electron/dist/renderer')
|
|
|
|
const SENTRY_DSN = 'https://4717a0a7ee0b4429bd3a0f06c3d7eec3@sentry.io/181876'
|
|
let release = null
|
|
try {
|
|
release = require('electron').app.getVersion()
|
|
} catch {
|
|
release = require('@electron/remote').app.getVersion()
|
|
}
|
|
|
|
if (!process.env.TABBY_DEV) {
|
|
init({
|
|
dsn: SENTRY_DSN,
|
|
release,
|
|
integrations (integrations) {
|
|
return integrations.filter(integration => integration.name !== 'Breadcrumbs')
|
|
},
|
|
})
|
|
}
|