Skip to content

Commit c48f62a

Browse files
Rebrand to minimalistic 3D "C" logo with violet palette
Replace bird-based branding with layered minimal 3D "C" design (paper-cut stacking in violet on off-white). Update all 8 SVG sources, regenerate 129+ platform PNGs/ICOs, and update color references across Dart theme, pubspec splash config, Android styles, and website CSS (coral #FF6B6B -> violet #7C3AED). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent d114eef commit c48f62a

211 files changed

Lines changed: 6976 additions & 794 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/release.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ jobs:
1717
- run: flutter build macos --release
1818
- name: Create DMG
1919
run: |
20-
hdiutil create -volname "Blink" \
21-
-srcfolder build/macos/Build/Products/Release/blink_app.app \
20+
hdiutil create -volname "Chirp" \
21+
-srcfolder build/macos/Build/Products/Release/chirp_app.app \
2222
-ov -format UDZO \
23-
Blink-${{ github.ref_name }}-macos.dmg
23+
Chirp-${{ github.ref_name }}-macos.dmg
2424
- uses: actions/upload-artifact@v4
2525
with:
2626
name: macos-dmg
27-
path: Blink-*.dmg
27+
path: Chirp-*.dmg
2828

2929
build-linux:
3030
runs-on: ubuntu-latest
@@ -41,11 +41,11 @@ jobs:
4141
- name: Create tarball
4242
run: |
4343
cd build/linux/x64/release/bundle
44-
tar -czf ../../../../../Blink-${{ github.ref_name }}-linux.tar.gz .
44+
tar -czf ../../../../../Chirp-${{ github.ref_name }}-linux.tar.gz .
4545
- uses: actions/upload-artifact@v4
4646
with:
4747
name: linux-tarball
48-
path: Blink-*.tar.gz
48+
path: Chirp-*.tar.gz
4949

5050
build-windows:
5151
runs-on: windows-latest
@@ -58,11 +58,11 @@ jobs:
5858
- run: flutter build windows --release
5959
- name: Create ZIP
6060
run: |
61-
Compress-Archive -Path build\windows\x64\runner\Release\* -DestinationPath Blink-${{ github.ref_name }}-windows.zip
61+
Compress-Archive -Path build\windows\x64\runner\Release\* -DestinationPath Chirp-${{ github.ref_name }}-windows.zip
6262
- uses: actions/upload-artifact@v4
6363
with:
6464
name: windows-zip
65-
path: Blink-*.zip
65+
path: Chirp-*.zip
6666

6767
create-release:
6868
needs: [build-macos, build-linux, build-windows]

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ pubspec.lock
4848
*.freezed.dart
4949

5050
# Research artifacts (screenshots, network logs)
51-
*.png
5251
*-network.txt
5352

5453
# Playwright

README.md

Lines changed: 81 additions & 11 deletions

android/app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
android {
9-
namespace = "com.example.blink"
9+
namespace = "com.example.chirp"
1010
compileSdk = flutter.compileSdkVersion
1111
ndkVersion = flutter.ndkVersion
1212

@@ -21,7 +21,7 @@ android {
2121

2222
defaultConfig {
2323
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
24-
applicationId = "com.example.blink"
24+
applicationId = "com.example.chirp"
2525
// You can update the following values to match your application needs.
2626
// For more information, see: https://flutter.dev/to/review-gradle-config.
2727
minSdk = flutter.minSdkVersion

android/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<uses-permission android:name="android.permission.VIBRATE"/>
66
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
77
<application
8-
android:label="blink"
8+
android:label="chirp"
99
android:name="${applicationName}"
1010
android:icon="@mipmap/ic_launcher">
1111
<activity

android/app/src/main/kotlin/com/example/blink/MainActivity.kt renamed to android/app/src/main/kotlin/com/example/chirp/MainActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.example.blink
1+
package com.example.chirp
22

33
import io.flutter.embedding.android.FlutterActivity
44

3.16 KB
572 Bytes
6.12 KB
2 KB

0 commit comments

Comments
 (0)