···1-# Bitchsky Social App 🧙
23-Hey, bitches! This is the codebase for the Bitchsky app, based on [social.daniela.lol](https://github.com/kittibytess/deer-social) and prior [Bluesky](https://github.com/bluesky-social/social-app) forks.
45Get the app itself:
67-- **Web: [bitchsky.app](https://bitchsky.app)**
8-- **iOS: [Soon™](https://large-type.com/#%F0%9F%99%80)?**
9-- **Android: [Github Releases](https://github.com/jollywhoppers/bitchsky-app/releases/latest)**
1011-<a href="https://apps.obtainium.imranr.dev/redirect?r=obtainium://add/https://github.com/jollywhoppers/bitchsky-app/">
12<img src="https://github.com/ImranR98/Obtainium/blob/main/assets/graphics/badge_obtainium.png?raw=true"
13alt="Get it on Obtainium" align="center" height="54" /></a>
1415## Improvements on Bluesky
1617-- Funner name (still love you tho bsky!)
18- Nicer colors (kinda like gruvbox? not really)
19- Posts are called Skeets
20-- Share links to bitchsky.app or bsky.app
21- Embed player works with [stream.place](https://stream.place/) links!
22-- Open skeets in PDSls and original pages from bridged posts
23- Better defaults (alt text required 😉)
24- More unique repost icons
25- No push notifications (may be added later)
···7374### TODO: Xan
7576-- [ ] Update branding (especially colors and app icon) to Bitchsky
77 - [ ] ./src/components/WelcomeModal.tsx (tab/hover selector)
78 - [ ] ./src/alf/themes.ts (improve contrast, esp. of links)
79 - [ ] ./src/lib/styles.ts (change likes color, remove gradient from new skeet button)
80 - [ ] ./src/style.css (change links color)
81 - [ ] ./src/view/com/util/UserAvatar.tsx (change #0070FF)
82- - [ ] ./assets/app-icons/ (change new bksy logos to fit Bitchsky -remove from social embed!)
83- - [ ] social embed stuff (bitchsky logo in image with jollywhoppers logo, use bitchsky icon)
84- [ ] Setup App Linking for Android (.well-known w/ app package fingerprint)
85-- [ ] Automatic PDS detection like other social-app forks (fallback/email addresses to use bitchsky.social)
86- [ ] Like of or repost of repost icons in notifications
87- [ ] Change followed accounts [on onboarding](https://github.com/blacksky-algorithms/blacksky.community/commit/e36ee43efb4999f070860d7f70122e45b28c1e2b)
88- [ ] Join date & switch accounts from composer from a fork like [deer.aylac.top](https://github.com/ayla6/deer-social-test)
89-- [ ] Visual replies indicator like the [Firmament userstyle](https://bitchsky.app/profile/did:plc:jwhxcrf5uvl3vyw7nurecgt5/post/3m4rr3vzmak2a) (and likes?)
90- [ ] Additional translation service providers + setting (Deepl, Kagi)
91- [ ] Move Mutuals label to the follow button
92- [ ] Put DeerSettings into separate subpages
93-- [ ] After subpages for options, add [Outlinks page](https://bitchsky.app/profile/did:plc:q7suwaz53ztc4mbiqyygbn43/post/3m5zjhhshic2g) &
94 - [ ] ShareMenuItems.tsx, ShareMenuItems.web.tsx
95- [ ] For profile meatball button, Open profile in PDSls & Open bridged OG fedi account page
96 - [ ] ProfileMenu.tsx
97-- [ ] Bitchsky PDS and .social site (list good songs containing 'bitch' in their titles)
9899### Even more wishful or far off
100···110111This is a [React Native](https://reactnative.dev/) application, written in the TypeScript programming language. It builds on the `atproto` TypeScript packages (like [`@atproto/api`](https://www.npmjs.com/package/@atproto/api)), which are also open source, but in [a different git repository](https://github.com/bluesky-social/atproto).
112113-There is vestigial Go language source code (in `./bskyweb/`), for a web service that returns the React Native Web application in the social app deployment. However, it is not used in current Bitchsky deployments.
114-For Bitchsky, the intended deployment is with a webserver that can serve static files, and reroute to `index.html` as needed. [Bitchsky](https://bitchsky.app) is currently hosted on [Cloudflare Pages](https://pages.cloudflare.com/).
115116The [Build Instructions](./docs/build.md) are a good place to get started with the app itself. If you use nix (and especially direnv) then `flake.nix` will get you a working environment for the web version of the app.
117118The Authenticated Transfer Protocol ("AT Protocol" or "atproto") is a decentralized social media protocol. You don't *need* to understand AT Protocol to work with this application, but it can help.
119-You may wish to reference [resources linked in social-app](https://github.com/bluesky-social/social-app#development-resources). However, please don't harass the Bluesky team with issues or questions pertaining to Bitchsky.
120121-Bitchsky is a fork of the official Bluesky client, social-app. It encompasses a set of schemas and APIs built in the overall AT Protocol framework. The namespace for these "Lexicons" is `app.bsky.*`.
122123## Contributions
124125-> Bitchsky is a community fork, and we'd love to merge your PR!
126127-As a rule of thumb, the best features for Bitchsky are those that have a disproportionately positive impact on the user experience compared to the maintenance overhead. Unlike some open source projects, since Bitchsky is a soft fork, any features (patches) we add on top of upstream social-app need to be maintained. For example, a change to the way skeets are composed may be very invasive, touching lots of code across the codebase. If upstream refactors this component, we will need to rewrite this feature to be compatible or drop it from the client.
128129For this reason, only features that require changing only a small amount of code from upstream should be considered.
130131-Without an overriding motivation, opinionated features should exist behind a toggle that is not enabled by default. This allows Bitchsky to cater to as many users as possible.
132133### Guidelines
134···148149Please be sure to:
150151-- Change all branding in the repository and UI to clearly differentiate from Bitchsky.
152- Change any support links (feedback, email, terms of service, issue tracker, etc) to your own systems.
153154## Self hosting & personal builds
155156-Self hosting is great! It is our intention that Bitchsky is easy to self host and build on your own. If you host your own instance of Bitchsky, or make your own builds, please make some level of effort to clarify that it is not an "official" build or instance. This can be in the form of a different domain or branding, but can also be as simple as not advertising your hosted instance or builds as "official" releases.
157158## Security disclosures
159160If you discover any security issues, please privately disclose them to [xan.lol](https://xan.lol/).
161-If the issue pertains to infastructure, code, or systems outside the scope of Bitchsky, please refer to the [disclosure guidelines on social-app](https://github.com/bluesky-social/social-app#security-disclosures) if it is hosted by Bluesky PBC. Otherwise, reference the security policy of that system as applicable <3
162163## License (MIT)
164···168169## P.S.
170171-We ❤️ you and all of the ways you support us. Thank you for making Bluesky & Bitchsky so great! ^.^
···1+# Witchsky Social App 🧙 (WIP)
23+Hey, witches! This is the codebase for the Witchsky app, based on [social.daniela.lol](https://github.com/kittibytess/deer-social) and prior [Bluesky](https://github.com/bluesky-social/social-app) forks.
45Get the app itself:
67+- **Web: [witchsky.app](https://witchsky.app)**
8+- **iOS: [Soon™](https://cat-bounce.com/)?**
9+- **Android: [F-Droid repo](https://app.jolly.you/fdroid/repo)**
1011+<a href="https://apps.obtainium.imranr.dev/redirect?r=obtainium://add/https://github.com/jollywhoppers/witchsky-app/">
12<img src="https://github.com/ImranR98/Obtainium/blob/main/assets/graphics/badge_obtainium.png?raw=true"
13alt="Get it on Obtainium" align="center" height="54" /></a>
1415## Improvements on Bluesky
1617+- Cooler name (still love you tho bsky!)
18- Nicer colors (kinda like gruvbox? not really)
19- Posts are called Skeets
20+- Choose between sharing witchsky.app or bsky.app links
21- Embed player works with [stream.place](https://stream.place/) links!
22+- Open skeets in PDSls and original pages of bridged posts
23- Better defaults (alt text required 😉)
24- More unique repost icons
25- No push notifications (may be added later)
···7374### TODO: Xan
7576+- [ ] Update branding (especially colors and app icon) to Witchsky
77 - [ ] ./src/components/WelcomeModal.tsx (tab/hover selector)
78 - [ ] ./src/alf/themes.ts (improve contrast, esp. of links)
79 - [ ] ./src/lib/styles.ts (change likes color, remove gradient from new skeet button)
80 - [ ] ./src/style.css (change links color)
81 - [ ] ./src/view/com/util/UserAvatar.tsx (change #0070FF)
82+ - [ ] ./assets/app-icons/ (change new bksy logos to fit Witchsky -remove from social embed!)
83+ - [ ] social embed stuff (witchsky logo in image with jollywhoppers logo, use witchsky icon)
84- [ ] Setup App Linking for Android (.well-known w/ app package fingerprint)
85+- [ ] Automatic PDS detection like other social-app forks (fallback/email addresses to use witchsky.social)
86- [ ] Like of or repost of repost icons in notifications
87- [ ] Change followed accounts [on onboarding](https://github.com/blacksky-algorithms/blacksky.community/commit/e36ee43efb4999f070860d7f70122e45b28c1e2b)
88- [ ] Join date & switch accounts from composer from a fork like [deer.aylac.top](https://github.com/ayla6/deer-social-test)
89+- [ ] Visual replies indicator like the [Firmament userstyle](https://witchsky.app/profile/did:plc:jwhxcrf5uvl3vyw7nurecgt5/post/3m4rr3vzmak2a) (and likes?)
90- [ ] Additional translation service providers + setting (Deepl, Kagi)
91- [ ] Move Mutuals label to the follow button
92- [ ] Put DeerSettings into separate subpages
93+- [ ] After subpages for options, add [Outlinks page](https://witchsky.app/profile/did:plc:q7suwaz53ztc4mbiqyygbn43/post/3m5zjhhshic2g) &
94 - [ ] ShareMenuItems.tsx, ShareMenuItems.web.tsx
95- [ ] For profile meatball button, Open profile in PDSls & Open bridged OG fedi account page
96 - [ ] ProfileMenu.tsx
97+- [ ] Witchsky PDS and .social site (list good songs containing 'bitch' in their titles)
9899### Even more wishful or far off
100···110111This is a [React Native](https://reactnative.dev/) application, written in the TypeScript programming language. It builds on the `atproto` TypeScript packages (like [`@atproto/api`](https://www.npmjs.com/package/@atproto/api)), which are also open source, but in [a different git repository](https://github.com/bluesky-social/atproto).
112113+There is vestigial Go language source code (in `./bskyweb/`), for a web service that returns the React Native Web application in the social app deployment. However, it is not used in current Witchsky deployments.
114+For Witchsky, the intended deployment is with a webserver that can serve static files, and reroute to `index.html` as needed. [Witchsky](https://witchsky.app) is currently hosted on [Cloudflare Pages](https://pages.cloudflare.com/).
115116The [Build Instructions](./docs/build.md) are a good place to get started with the app itself. If you use nix (and especially direnv) then `flake.nix` will get you a working environment for the web version of the app.
117118The Authenticated Transfer Protocol ("AT Protocol" or "atproto") is a decentralized social media protocol. You don't *need* to understand AT Protocol to work with this application, but it can help.
119+You may wish to reference [resources linked in social-app](https://github.com/bluesky-social/social-app#development-resources). However, please don't harass the Bluesky team with issues or questions pertaining to Witchsky.
120121+Witchsky is a fork of the official Bluesky client, social-app. It encompasses a set of schemas and APIs built in the overall AT Protocol framework. The namespace for these "Lexicons" is `app.bsky.*`.
122123## Contributions
124125+> Witchsky is a community fork, and we'd love to merge your PR!
126127+As a rule of thumb, the best features for Witchsky are those that have a disproportionately positive impact on the user experience compared to the maintenance overhead. Unlike some open source projects, since Witchsky is a soft fork, any features (patches) we add on top of upstream social-app need to be maintained. For example, a change to the way skeets are composed may be very invasive, touching lots of code across the codebase. If upstream refactors this component, we will need to rewrite this feature to be compatible or drop it from the client.
128129For this reason, only features that require changing only a small amount of code from upstream should be considered.
130131+Without an overriding motivation, opinionated features should exist behind a toggle that is not enabled by default. This allows Witchsky to cater to as many users as possible.
132133### Guidelines
134···148149Please be sure to:
150151+- Change all branding in the repository and UI to clearly differentiate from Witchsky.
152- Change any support links (feedback, email, terms of service, issue tracker, etc) to your own systems.
153154## Self hosting & personal builds
155156+Self hosting is great! It is our intention that Witchsky is easy to self host and build on your own. If you host your own instance of Witchsky, or make your own builds, please make some level of effort to clarify that it is not an "official" build or instance. This can be in the form of a different domain or branding, but can also be as simple as not advertising your hosted instance or builds as "official" releases.
157158## Security disclosures
159160If you discover any security issues, please privately disclose them to [xan.lol](https://xan.lol/).
161+If the issue pertains to infastructure, code, or systems outside the scope of Witchsky, please refer to the [disclosure guidelines on social-app](https://github.com/bluesky-social/social-app#security-disclosures) if it is hosted by Bluesky PBC. Otherwise, reference the security policy of that system as applicable <3
162163## License (MIT)
164···168169## P.S.
170171+We ❤️ you and all of the ways you support us. Thank you for making Bluesky & Witchsky so great! ^.^
···981982describe('createStarterPackGooglePlayUri', () => {
983 const base =
984- 'https://play.google.com/store/apps/details?id=app.bitchsky&referrer=utm_source%3Dbluesky%26utm_medium%3Dstarterpack%26utm_content%3Dstarterpack_'
985986 it('returns valid google play uri when input is valid', () => {
987 expect(createStarterPackGooglePlayUri('name', 'rkey')).toEqual(
···981982describe('createStarterPackGooglePlayUri', () => {
983 const base =
984+ 'https://play.google.com/store/apps/details?id=app.witchsky&referrer=utm_source%3Dbluesky%26utm_medium%3Dstarterpack%26utm_content%3Dstarterpack_'
985986 it('returns valid google play uri when input is valid', () => {
987 expect(createStarterPackGooglePlayUri('name', 'rkey')).toEqual(
···11 name="viewport"
12 content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1.00001, viewport-fit=cover"
13 />
14- <title>Privacy Policy — Bitchsky</title>
1516 <link rel="preload" as="font" type="font/woff2" href="/static/media/InterVariable.c504db5c06caaf7cdfba.woff2" crossorigin>
17···22 <body>
232425- <h1>Bitchsky Privacy Policy</h1>
2627 <p><em><strong>Last Updated:</strong> May 07, 2025</em></p>
2829- <p>Welcome to Bitchsky. This privacy policy explains our approach to your data when you use our application.</p>
3031- <h2>No Data Collection by Bitchsky</h2>
32- <p><strong>The Bitchsky application itself does not collect, store, track, or share any of your personal information or user data.</strong> We do not operate servers that store your account details, posts, or activity logs.</p>
33 <p>Our application functions solely as a client interface to interact with the underlying Bluesky social network (AT Protocol).</p>
3435 <h2>Reliance on Third-Party Services (AppView and PDS)</h2>
36- <p>When you use Bitchsky, you connect to the Bluesky network through a specific AppView and your chosen Personal Data Server (PDS). These services are responsible for storing and managing your account information, posts, social graph, and other associated data.</p>
37- <p><strong>Your data handling and privacy are governed by the Terms of Service and Privacy Policies of the specific AppView and PDS you use.</strong> Bitchsky simply acts on your behalf to communicate with these services based on the credentials you provide locally on your device.</p>
38 <p>We strongly recommend you review the policies of your chosen PDS provider and the AppView you are using. For reference, the Privacy Policy for the default Bluesky service (AppView provided by <a href="https://bsky.social" target="_blank" rel="noopener noreferrer">bsky.social</a>) can be found here:</p>
39 <p><a href="https://bsky.social/about/support/privacy-policy" target="_blank" rel="noopener noreferrer">https://bsky.social/about/support/privacy-policy</a></p>
4041 <h2>Data Stored Locally on Your Device</h2>
42- <p>To function, Bitchsky may store your login credentials or temporary session information on your own device. This data is not accessed by or transmitted to us.</p>
4344 <h2>Cookies and Analytics</h2>
45- <p>Bitchsky does not use cookies or any tracking analytics.</p>
4647 <h2>Changes to This Policy</h2>
48 <p>We may update this policy. If we do, we will update the "Effective Date" at the top of this page.</p>
4950 <h2>Contact Us</h2>
51- <p>If you have questions specifically about the functionality of the Bitchsky application itself (and not about data managed by your PDS or AppView), please email <a href="mailto:contact@jollywhoppers.com" target="_blank" rel="noopener noreferrer">contact@jollywhoppers.com</a>.</p>
5253 </body>
54</html>
···11 name="viewport"
12 content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1.00001, viewport-fit=cover"
13 />
14+ <title>Privacy Policy — Witchsky</title>
1516 <link rel="preload" as="font" type="font/woff2" href="/static/media/InterVariable.c504db5c06caaf7cdfba.woff2" crossorigin>
17···22 <body>
232425+ <h1>Witchsky Privacy Policy</h1>
2627 <p><em><strong>Last Updated:</strong> May 07, 2025</em></p>
2829+ <p>Welcome to Witchsky. This privacy policy explains our approach to your data when you use our application.</p>
3031+ <h2>No Data Collection by Witchsky</h2>
32+ <p><strong>The Witchsky application itself does not collect, store, track, or share any of your personal information or user data.</strong> We do not operate servers that store your account details, posts, or activity logs.</p>
33 <p>Our application functions solely as a client interface to interact with the underlying Bluesky social network (AT Protocol).</p>
3435 <h2>Reliance on Third-Party Services (AppView and PDS)</h2>
36+ <p>When you use Witchsky, you connect to the Bluesky network through a specific AppView and your chosen Personal Data Server (PDS). These services are responsible for storing and managing your account information, posts, social graph, and other associated data.</p>
37+ <p><strong>Your data handling and privacy are governed by the Terms of Service and Privacy Policies of the specific AppView and PDS you use.</strong> Witchsky simply acts on your behalf to communicate with these services based on the credentials you provide locally on your device.</p>
38 <p>We strongly recommend you review the policies of your chosen PDS provider and the AppView you are using. For reference, the Privacy Policy for the default Bluesky service (AppView provided by <a href="https://bsky.social" target="_blank" rel="noopener noreferrer">bsky.social</a>) can be found here:</p>
39 <p><a href="https://bsky.social/about/support/privacy-policy" target="_blank" rel="noopener noreferrer">https://bsky.social/about/support/privacy-policy</a></p>
4041 <h2>Data Stored Locally on Your Device</h2>
42+ <p>To function, Witchsky may store your login credentials or temporary session information on your own device. This data is not accessed by or transmitted to us.</p>
4344 <h2>Cookies and Analytics</h2>
45+ <p>Witchsky does not use cookies or any tracking analytics.</p>
4647 <h2>Changes to This Policy</h2>
48 <p>We may update this policy. If we do, we will update the "Effective Date" at the top of this page.</p>
4950 <h2>Contact Us</h2>
51+ <p>If you have questions specifically about the functionality of the Witchsky application itself (and not about data managed by your PDS or AppView), please email <a href="mailto:contact@jollywhoppers.com" target="_blank" rel="noopener noreferrer">contact@jollywhoppers.com</a>.</p>
5253 </body>
54</html>
···11 name="viewport"
12 content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1.00001, viewport-fit=cover"
13 />
14- <title>Terms of Service — Bitchsky</title>
1516 <link rel="preload" as="font" type="font/woff2" href="/static/media/InterVariable.c504db5c06caaf7cdfba.woff2" crossorigin>
17···22 <body>
232425-<h1>Terms of Service for Bitchsky</h1>
2627<p><em><strong>Last Updated:</strong> May 07, 2025</em></p>
2829<h2>Introduction</h2>
30-<p>Welcome to Bitchsky! These Terms of Service ("Terms") govern your use of the Bitchsky application ("App"). By accessing or using the App, you agree to be bound by these Terms.</p>
3132<h2>Your Agreement</h2>
33-<p>Using Bitchsky signifies your acceptance of these Terms. Please also review our <a href="/privacy">Privacy Policy</a>, which explains how we handle data related to the App itself.</p>
3435<h2>Relationship to Other Services and Platforms</h2>
36-<p>Bitchsky functions as a client or interface. It allows you to interact with decentralized social media protocols, instances, or servers (your "AppView" or "Personal Data Server" / "PDS").</p>
37-<p><strong>Important:</strong> Bitchsky does not host your data or control the underlying networks or servers you connect to. Your interaction with these third-party services, including the content you post and view, is governed by the Terms of Service, acceptable use policies, and privacy policies of the specific AppView and/or PDS you choose to use.</p>
38<p>You are responsible for understanding and complying with the terms of those external services.</p>
3940<p>We strongly recommend you review the policies of your chosen PDS provider and the AppView you are using. For reference, the Terms of Service for the default Bluesky service (AppView provided by <a href="https://bsky.social" target="_blank" rel="noopener noreferrer">bsky.social</a>) can be found here: </p>
41<p><a href="https://bsky.social/about/support/tos" target="_blank" rel="noopener noreferrer">https://bsky.social/about/support/tos</a></p>
4243<h2>User Conduct</h2>
44-<p>Your conduct while using Bitchsky must comply with the terms and rules set forth by the AppView and PDS you are connected to. Bitchsky is merely a tool to access these services, and Jollywhoppers is not responsible for enforcing the rules of those platforms or for the content accessed through them.</p>
4546<h2>Disclaimer of Warranty</h2>
47<p>The App is provided "AS IS" and "AS AVAILABLE," without warranty of any kind, express or implied. Forsyth Peak LLC does not warrant that the App will meet your requirements, be available uninterrupted, secure, or error-free.</p>
···11 name="viewport"
12 content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1.00001, viewport-fit=cover"
13 />
14+ <title>Terms of Service — Witchsky</title>
1516 <link rel="preload" as="font" type="font/woff2" href="/static/media/InterVariable.c504db5c06caaf7cdfba.woff2" crossorigin>
17···22 <body>
232425+<h1>Terms of Service for Witchsky</h1>
2627<p><em><strong>Last Updated:</strong> May 07, 2025</em></p>
2829<h2>Introduction</h2>
30+<p>Welcome to Witchsky! These Terms of Service ("Terms") govern your use of the Witchsky application ("App"). By accessing or using the App, you agree to be bound by these Terms.</p>
3132<h2>Your Agreement</h2>
33+<p>Using Witchsky signifies your acceptance of these Terms. Please also review our <a href="/privacy">Privacy Policy</a>, which explains how we handle data related to the App itself.</p>
3435<h2>Relationship to Other Services and Platforms</h2>
36+<p>Witchsky functions as a client or interface. It allows you to interact with decentralized social media protocols, instances, or servers (your "AppView" or "Personal Data Server" / "PDS").</p>
37+<p><strong>Important:</strong> Witchsky does not host your data or control the underlying networks or servers you connect to. Your interaction with these third-party services, including the content you post and view, is governed by the Terms of Service, acceptable use policies, and privacy policies of the specific AppView and/or PDS you choose to use.</p>
38<p>You are responsible for understanding and complying with the terms of those external services.</p>
3940<p>We strongly recommend you review the policies of your chosen PDS provider and the AppView you are using. For reference, the Terms of Service for the default Bluesky service (AppView provided by <a href="https://bsky.social" target="_blank" rel="noopener noreferrer">bsky.social</a>) can be found here: </p>
41<p><a href="https://bsky.social/about/support/tos" target="_blank" rel="noopener noreferrer">https://bsky.social/about/support/tos</a></p>
4243<h2>User Conduct</h2>
44+<p>Your conduct while using Witchsky must comply with the terms and rules set forth by the AppView and PDS you are connected to. Witchsky is merely a tool to access these services, and Jollywhoppers is not responsible for enforcing the rules of those platforms or for the content accessed through them.</p>
4546<h2>Disclaimer of Warranty</h2>
47<p>The App is provided "AS IS" and "AS AVAILABLE," without warranty of any kind, express or implied. Forsyth Peak LLC does not warrant that the App will meet your requirements, be available uninterrupted, secure, or error-free.</p>
···60```sh
61> npx eas build:version:set -p ios
62>
63-> Project @blueskysocial/bluesky with bundle identifier "app.bitchsky" is configured with buildNumber 1011.
64> ✔ What version would you like to set? … 1009
65>
66> npx eas build:version:set -p android
67>
68-> Project @blueskysocial/bluesky with application ID "app.bitchsky" is configured with versionCode 641.
69> ✔ What version would you like to set? … 639
70```
71···124```sh
125> npx eas build:version:set -p ios
126>
127-> Project @blueskysocial/bluesky with bundle identifier "app.bitchsky" is configured with buildNumber 1009.
128> ✔ What version would you like to set? … 1011
129>
130> npx eas build:version:set -p android
131>
132-> Project @blueskysocial/bluesky with application ID "app.bitchsky" is configured with versionCode 639.
133> ✔ What version would you like to set? … 641
134```
135
···60```sh
61> npx eas build:version:set -p ios
62>
63+> Project @blueskysocial/bluesky with bundle identifier "app.witchsky" is configured with buildNumber 1011.
64> ✔ What version would you like to set? … 1009
65>
66> npx eas build:version:set -p android
67>
68+> Project @blueskysocial/bluesky with application ID "app.witchsky" is configured with versionCode 641.
69> ✔ What version would you like to set? … 639
70```
71···124```sh
125> npx eas build:version:set -p ios
126>
127+> Project @blueskysocial/bluesky with bundle identifier "app.witchsky" is configured with buildNumber 1009.
128> ✔ What version would you like to set? … 1011
129>
130> npx eas build:version:set -p android
131>
132+> Project @blueskysocial/bluesky with application ID "app.witchsky" is configured with versionCode 639.
133> ✔ What version would you like to set? … 641
134```
135
···1import UserNotifications
2import UIKit
34-let APP_GROUP = "group.app.bitchsky"
5typealias ContentHandler = (UNNotificationContent) -> Void
67// This extension allows us to do some processing of the received notification
···1import UserNotifications
2import UIKit
34+let APP_GROUP = "group.app.witchsky"
5typealias ContentHandler = (UNNotificationContent) -> Void
67// This extension allows us to do some processing of the received notification
···170 <View style={[a.gap_xl]}>
171 <Text style={[a.gap_md, a.leading_normal]}>
172 <Trans>
173- Bitchsky is part of the{' '}
174 {
175 <InlineLinkText
176 label={_(msg`ATmosphere`)}
···216 <Trans>
217 Don't have an account provider or an existing Bluesky account? To
218 create a new account on a Bluesky-hosted PDS, sign up through{' '}
219- {/* TODO: Xan: change to say sign up for a Bitchsky account */}
220 {
221 <InlineLinkText label={_(msg`bsky.app`)} to="https://bsky.app">
222 <Trans>bsky.app</Trans>
223 </InlineLinkText>
224 }{' '}
225- first, then return to Bitchsky and log in with the account you
226 created.
227 </Trans>
228 </Text>
···170 <View style={[a.gap_xl]}>
171 <Text style={[a.gap_md, a.leading_normal]}>
172 <Trans>
173+ Witchsky is part of the{' '}
174 {
175 <InlineLinkText
176 label={_(msg`ATmosphere`)}
···216 <Trans>
217 Don't have an account provider or an existing Bluesky account? To
218 create a new account on a Bluesky-hosted PDS, sign up through{' '}
219+ {/* TODO: Xan: change to say sign up for a Witchsky account */}
220 {
221 <InlineLinkText label={_(msg`bsky.app`)} to="https://bsky.app">
222 <Trans>bsky.app</Trans>
223 </InlineLinkText>
224 }{' '}
225+ first, then return to Witchsky and log in with the account you
226 created.
227 </Trans>
228 </Text>
···170 ]}>
171 <InlineLinkText
172 label={_(msg`Read the patches and contribute`)}
173- to="https://github.com/jollywhoppers/bitchsky-app">
174 <Trans>Github</Trans>
175 </InlineLinkText>
176
···170 ]}>
171 <InlineLinkText
172 label={_(msg`Read the patches and contribute`)}
173+ to="https://tangled.org/jollywhoppers.com/witchsky.app/">
174 <Trans>Github</Trans>
175 </InlineLinkText>
176
+2-2
src/view/screens/PrivacyPolicy.tsx
···39 The Privacy Policy has been moved to{' '}
40 <TextLink
41 style={pal.link}
42- href="https://bitchsky.app/about/privacy"
43- text="bitchsky.app/about/privacy"
44 />
45 </Trans>
46 </Text>
···39 The Privacy Policy has been moved to{' '}
40 <TextLink
41 style={pal.link}
42+ href="https://witchsky.app/about/privacy"
43+ text="witchsky.app/about/privacy"
44 />
45 </Trans>
46 </Text>
+2-2
src/view/screens/TermsOfService.tsx
···38 <Trans>The Terms of Service have been moved to</Trans>{' '}
39 <TextLink
40 style={pal.link}
41- href="https://bitchsky.app/about/tos"
42- text="bitchsky.app/about/tos"
43 />
44 </Text>
45 </View>
···38 <Trans>The Terms of Service have been moved to</Trans>{' '}
39 <TextLink
40 style={pal.link}
41+ href="https://witchsky.app/about/tos"
42+ text="witchsky.app/about/tos"
43 />
44 </Text>
45 </View>
···106 ">
107 <h1 lang="en">JavaScript Required</h1>
108 <p lang="en">This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
109- <p lang="en">Learn more about Bluesky at <a href="https://bsky.social">bsky.social</a> and <a href="https://atproto.com">atproto.com</a>, or this fork at <a href="https://github.com/jollywhoppers/bitchsky-app">github.com/jollywhoppers/bitchsky-app</a>.
110 </noscript>
111112 <!-- The root element for your Expo app. -->
···106 ">
107 <h1 lang="en">JavaScript Required</h1>
108 <p lang="en">This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
109+ <p lang="en">Learn more about Bluesky at <a href="https://bsky.social">bsky.social</a> and <a href="https://atproto.com">atproto.com</a>, or this fork at <a href="https://tangled.org/jollywhoppers.com/witchsky.app/">https://tangled.org/jollywhoppers.com/witchsky.app/</a>.
110 </noscript>
111112 <!-- The root element for your Expo app. -->