An ATproto social media client -- with an independent Appview.

feat(android): update icons and branding (#45)

* feat: update icons

* fix(nix): add zulu jdk

* fix: rebrand in app.config.js

authored by turtlepaw.pds.witchcraft.syste… and committed by GitHub c37986b2 13f1612f

+5 -5
app.config.js
··· 33 33 return { 34 34 expo: { 35 35 version: VERSION, 36 - name: 'Bluesky', 37 - slug: 'bluesky', 38 - scheme: 'bluesky', 39 - owner: 'blueskysocial', 36 + name: 'Catsky', 37 + slug: 'catsky', 38 + scheme: 'catsky', 39 + owner: 'catskysocial', 40 40 runtimeVersion: { 41 41 policy: 'appVersion', 42 42 }, ··· 197 197 USE_SENTRY && [ 198 198 '@sentry/react-native/expo', 199 199 { 200 - organization: 'blueskyweb', 200 + organization: 'catskysocial', 201 201 project: 'app', 202 202 url: 'https://sentry.io', 203 203 },
assets/app-icons/android_icon_default_light.png

This is a binary file and will not be displayed.

assets/icon-android-background.png

This is a binary file and will not be displayed.

assets/icon-android-foreground.png

This is a binary file and will not be displayed.

assets/logo.png

This is a binary file and will not be displayed.

+5 -3
shell.nix
··· 1 - # stolen from https://github.com/tgirlcloud/nix-templates/blob/main/node/shell.nix 2 1 { 3 2 mkShellNoCC, 4 3 ··· 13 12 typescript, 14 13 typescript-language-server, 15 14 go, 15 + zulu17, 16 16 17 17 callPackage, 18 18 }: 19 + 19 20 let 20 21 defaultPackage = callPackage ./default.nix { }; 21 22 in ··· 33 34 typescript 34 35 typescript-language-server 35 36 go 37 + zulu17 36 38 ]; 37 39 38 40 shellHook = '' 39 - eslint_d start # start eslint daemon 40 - eslint_d status # inform user about eslint daemon status 41 + eslint_d start 42 + eslint_d status 41 43 ''; 42 44 }