Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

nit: forgor to add files to config.js

authored by

Thomas May and committed by
Tangled
c2ccd941 d7474d19

+64 -8
+64 -8
app.config.js
··· 63 63 newArchEnabled: false, 64 64 ios: { 65 65 supportsTablet: false, 66 - bundleIdentifier: 'app.witchsky', 66 + bundleIdentifier: process.env.WITCHSKY_BUNDLE_ID || 'app.witchsky', 67 + appleTeamId: process.env.WITCHSKY_APPLE_TEAM_ID || 'B3LX46C5HS', 67 68 config: { 68 69 usesNonExemptEncryption: false, 69 70 }, ··· 127 128 entitlements: { 128 129 'com.apple.developer.kernel.increased-memory-limit': true, 129 130 'com.apple.developer.kernel.extended-virtual-addressing': true, 130 - 'com.apple.security.application-groups': 'group.app.witchsky', 131 + 'com.apple.security.application-groups': process.env 132 + .WITCHSKY_BUNDLE_ID 133 + ? `group.${process.env.WITCHSKY_BUNDLE_ID}` 134 + : 'group.app.witchsky', 131 135 // 'com.apple.developer.device-information.user-assigned-device-name': true, 132 136 }, 133 137 privacyManifests: { ··· 197 201 backgroundColor: '#ED5345', 198 202 }, 199 203 googleServicesFile: './google-services.json', 200 - package: 'app.witchsky', 204 + package: process.env.WITCHSKY_BUNDLE_ID || 'app.witchsky', 201 205 intentFilters: [ 202 206 { 203 207 action: 'VIEW', ··· 335 339 fonts: [ 336 340 './assets/fonts/inter/InterVariable.woff2', 337 341 './assets/fonts/inter/InterVariable-Italic.woff2', 342 + './assets/fonts/google-sans-flex/GoogleSansFlex-Regular.ttf', 338 343 // Android only 339 344 './assets/fonts/inter/Inter-Regular.otf', 340 345 './assets/fonts/inter/Inter-Italic.otf', ··· 344 349 './assets/fonts/inter/Inter-SemiBoldItalic.otf', 345 350 './assets/fonts/inter/Inter-Bold.otf', 346 351 './assets/fonts/inter/Inter-BoldItalic.otf', 352 + // Google Sans Flex - Android only 353 + // 9pt optical size 354 + './assets/fonts/google-sans-flex/GoogleSansFlex_9pt-Thin.ttf', 355 + './assets/fonts/google-sans-flex/GoogleSansFlex_9pt-ExtraLight.ttf', 356 + './assets/fonts/google-sans-flex/GoogleSansFlex_9pt-Light.ttf', 357 + './assets/fonts/google-sans-flex/GoogleSansFlex_9pt-Regular.ttf', 358 + './assets/fonts/google-sans-flex/GoogleSansFlex_9pt-Medium.ttf', 359 + './assets/fonts/google-sans-flex/GoogleSansFlex_9pt-SemiBold.ttf', 360 + './assets/fonts/google-sans-flex/GoogleSansFlex_9pt-Bold.ttf', 361 + './assets/fonts/google-sans-flex/GoogleSansFlex_9pt-ExtraBold.ttf', 362 + './assets/fonts/google-sans-flex/GoogleSansFlex_9pt-Black.ttf', 363 + // 24pt optical size (default) 364 + './assets/fonts/google-sans-flex/GoogleSansFlex_24pt-Thin.ttf', 365 + './assets/fonts/google-sans-flex/GoogleSansFlex_24pt-ExtraLight.ttf', 366 + './assets/fonts/google-sans-flex/GoogleSansFlex_24pt-Light.ttf', 367 + './assets/fonts/google-sans-flex/GoogleSansFlex_24pt-Regular.ttf', 368 + './assets/fonts/google-sans-flex/GoogleSansFlex_24pt-Medium.ttf', 369 + './assets/fonts/google-sans-flex/GoogleSansFlex_24pt-SemiBold.ttf', 370 + './assets/fonts/google-sans-flex/GoogleSansFlex_24pt-Bold.ttf', 371 + './assets/fonts/google-sans-flex/GoogleSansFlex_24pt-ExtraBold.ttf', 372 + './assets/fonts/google-sans-flex/GoogleSansFlex_24pt-Black.ttf', 373 + // 36pt optical size 374 + './assets/fonts/google-sans-flex/GoogleSansFlex_36pt-Thin.ttf', 375 + './assets/fonts/google-sans-flex/GoogleSansFlex_36pt-ExtraLight.ttf', 376 + './assets/fonts/google-sans-flex/GoogleSansFlex_36pt-Light.ttf', 377 + './assets/fonts/google-sans-flex/GoogleSansFlex_36pt-Regular.ttf', 378 + './assets/fonts/google-sans-flex/GoogleSansFlex_36pt-Medium.ttf', 379 + './assets/fonts/google-sans-flex/GoogleSansFlex_36pt-SemiBold.ttf', 380 + './assets/fonts/google-sans-flex/GoogleSansFlex_36pt-Bold.ttf', 381 + './assets/fonts/google-sans-flex/GoogleSansFlex_36pt-ExtraBold.ttf', 382 + './assets/fonts/google-sans-flex/GoogleSansFlex_36pt-Black.ttf', 383 + // 72pt optical size 384 + './assets/fonts/google-sans-flex/GoogleSansFlex_72pt-Thin.ttf', 385 + './assets/fonts/google-sans-flex/GoogleSansFlex_72pt-ExtraLight.ttf', 386 + './assets/fonts/google-sans-flex/GoogleSansFlex_72pt-Light.ttf', 387 + './assets/fonts/google-sans-flex/GoogleSansFlex_72pt-Regular.ttf', 388 + './assets/fonts/google-sans-flex/GoogleSansFlex_72pt-Medium.ttf', 389 + './assets/fonts/google-sans-flex/GoogleSansFlex_72pt-SemiBold.ttf', 390 + './assets/fonts/google-sans-flex/GoogleSansFlex_72pt-Bold.ttf', 391 + './assets/fonts/google-sans-flex/GoogleSansFlex_72pt-ExtraBold.ttf', 392 + './assets/fonts/google-sans-flex/GoogleSansFlex_72pt-Black.ttf', 393 + // 120pt optical size 394 + './assets/fonts/google-sans-flex/GoogleSansFlex_120pt-Thin.ttf', 395 + './assets/fonts/google-sans-flex/GoogleSansFlex_120pt-ExtraLight.ttf', 396 + './assets/fonts/google-sans-flex/GoogleSansFlex_120pt-Light.ttf', 397 + './assets/fonts/google-sans-flex/GoogleSansFlex_120pt-Regular.ttf', 398 + './assets/fonts/google-sans-flex/GoogleSansFlex_120pt-Medium.ttf', 399 + './assets/fonts/google-sans-flex/GoogleSansFlex_120pt-SemiBold.ttf', 400 + './assets/fonts/google-sans-flex/GoogleSansFlex_120pt-Bold.ttf', 401 + './assets/fonts/google-sans-flex/GoogleSansFlex_120pt-ExtraBold.ttf', 402 + './assets/fonts/google-sans-flex/GoogleSansFlex_120pt-Black.ttf', 347 403 ], 348 404 }, 349 405 ], ··· 459 515 // appExtensions: [ 460 516 // { 461 517 // targetName: 'Share-with-Bluesky', 462 - // bundleIdentifier: 'app.witchsky.Share-with-Bluesky', 518 + // bundleIdentifier: env.WITCHSKY_BUNDLE_ID ? `${env.WITCHSKY_BUNDLE_ID}.Share-with-Bluesky` : 'app.witchsky.Share-with-Bluesky', 463 519 // entitlements: { 464 520 // 'com.apple.security.application-groups': [ 465 - // 'group.app.witchsky', 521 + // process.env.WITCHSKY_BUNDLE_ID ? `group.${process.env.WITCHSKY_BUNDLE_ID}` : 'group.app.witchsky', 466 522 // ], 467 523 // }, 468 524 // }, 469 525 // { 470 526 // targetName: 'BlueskyNSE', 471 - // bundleIdentifier: 'app.witchsky.BlueskyNSE', 527 + // bundleIdentifier: process.env.WITCHSKY_BUNDLE_ID ? `${process.env.WITCHSKY_BUNDLE_ID}.BlueskyNSE` : 'app.witchsky.BlueskyNSE', 472 528 // entitlements: { 473 529 // 'com.apple.security.application-groups': [ 474 - // 'group.app.witchsky', 530 + // process.env.WITCHSKY_BUNDLE_ID ? `group.${process.env.WITCHSKY_BUNDLE_ID}` : 'group.app.witchsky', 475 531 // ], 476 532 // }, 477 533 // }, 478 534 // { 479 535 // targetName: 'BlueskyClip', 480 - // bundleIdentifier: 'app.witchsky.AppClip', 536 + // bundleIdentifier: process.env.WITCHSKY_BUNDLE_ID ? `${process.env.WITCHSKY_BUNDLE_ID}.AppClip` : 'app.witchsky.AppClip', 481 537 // }, 482 538 // ], 483 539 },