Skip to content

Commit 8e787df

Browse files
committed
Add wasmJs target; refactor project structure; rename files and directories for consistency; update coroutine usage in use cases
1 parent ee23b7a commit 8e787df

File tree

319 files changed

+2762
-1460
lines changed

Some content is hidden

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

319 files changed

+2762
-1460
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/bin/sh
2+
3+
echo "28d0921e0d134ac1655c3b93e675ed50aa77233d02966130beff857fb60cf4f6 ./app/android/keystore.properties" | sha256sum -c -
4+
5+
echo "cc018f4fb00ec66cf3b8d918ce4db107945502ab7c47dd0c33fc10e56d79d1a2 ./app/android/note_room_key_store.jks" | sha256sum -c -
6+
7+
echo "58e5bdf33538df1638858d0f8a8bba8161f29b4846a7b6d0aaba3279650aa04a ./app/android/fastlane/api-7350020584032910214-328107-d8d3807d1e1a.json" | sha256sum -c -
8+
9+
echo "7b9f841129997ddb098e03dd7099a3341dbfa012c31e4cb465b92ddd476cca7a ./app/iosApp/fastlane/28F5CB4337.json" | sha256sum -c -
10+
11+
echo "8c18885545c026cda51805e3b8eb86f5639c87ddcd695be2bf8a649db6cbe153 ./app/iosApp/fastlane/ios_distribution.p12" | sha256sum -c -
12+
13+
echo "2c1cec349be9d1ac6f85c2f6f3c10d8efa109e3348f6615fcddac67a34b8f46f ./app/iosApp/fastlane/NoteDelight_Distribution_Profile.mobileprovision" | sha256sum -c -

.github/scripts/copy_moko_resources.sh

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/scripts/decrypt_secret.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@
44
# --batch to prevent interactive command --yes to assume "yes" for questions
55

66
gpg --quiet --batch --yes --decrypt --passphrase="$LARGE_SECRET_PASSPHRASE" \
7-
--output ./keystore.properties ./.github/secrets/keystore.properties.gpg
7+
--output ./app/android/keystore.properties ./.github/secrets/keystore.properties.gpg
88

99
gpg --quiet --batch --yes --decrypt --passphrase="$LARGE_SECRET_PASSPHRASE" \
10-
--output ./note_room_key_store.jks ./.github/secrets/note_room_key_store.jks.gpg
10+
--output ./app/android/note_room_key_store.jks ./.github/secrets/note_room_key_store.jks.gpg
1111

1212
gpg --quiet --batch --yes --decrypt --passphrase="$LARGE_SECRET_PASSPHRASE" \
13-
--output ./fastlane/api-7350020584032910214-328107-d8d3807d1e1a.json ./.github/secrets/api-7350020584032910214-328107-d8d3807d1e1a.json.gpg
13+
--output ./app/android/fastlane/api-7350020584032910214-328107-d8d3807d1e1a.json ./.github/secrets/api-7350020584032910214-328107-d8d3807d1e1a.json.gpg
1414

1515
gpg --quiet --batch --yes --decrypt --passphrase="$LARGE_SECRET_PASSPHRASE" \
16-
--output ./iosApp/fastlane/28F5CB4337.json ./.github/secrets/28F5CB4337.json.gpg
16+
--output ./app/iosApp/fastlane/28F5CB4337.json ./.github/secrets/28F5CB4337.json.gpg
1717

1818
gpg --quiet --batch --yes --decrypt --passphrase="$LARGE_SECRET_PASSPHRASE" \
19-
--output ./iosApp/fastlane/ios_distribution.p12 ./.github/secrets/ios_distribution.p12.gpg
19+
--output ./app/iosApp/fastlane/ios_distribution.p12 ./.github/secrets/ios_distribution.p12.gpg
2020

2121
gpg --quiet --batch --yes --decrypt --passphrase="$LARGE_SECRET_PASSPHRASE" \
22-
--output ./iosApp/fastlane/NoteDelight_Distribution_Profile.mobileprovision ./.github/secrets/NoteDelight_Distribution_Profile.mobileprovision.gpg
22+
--output ./app/iosApp/fastlane/NoteDelight_Distribution_Profile.mobileprovision ./.github/secrets/NoteDelight_Distribution_Profile.mobileprovision.gpg

.github/scripts/encrypt_secret.sh

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#!/bin/sh
2+
3+
# Encrypt the files
4+
# --batch to prevent interactive command --yes to assume "yes" for questions
5+
6+
gpg --symmetric --cipher-algo AES256 --batch --yes --passphrase="$LARGE_SECRET_PASSPHRASE" \
7+
--output ./.github/secrets/keystore.properties.gpg ./app/android/keystore.properties
8+
9+
gpg --symmetric --cipher-algo AES256 --batch --yes --passphrase="$LARGE_SECRET_PASSPHRASE" \
10+
--output ./.github/secrets/note_room_key_store.jks.gpg ./app/android/note_room_key_store.jks
11+
12+
gpg --symmetric --cipher-algo AES256 --batch --yes --passphrase="$LARGE_SECRET_PASSPHRASE" \
13+
--output ./.github/secrets/api-7350020584032910214-328107-d8d3807d1e1a.json.gpg ./app/android/fastlane/api-7350020584032910214-328107-d8d3807d1e1a.json
14+
15+
gpg --symmetric --cipher-algo AES256 --batch --yes --passphrase="$LARGE_SECRET_PASSPHRASE" \
16+
--output ./.github/secrets/28F5CB4337.json.gpg ./app/iosApp/fastlane/28F5CB4337.json
17+
18+
gpg --symmetric --cipher-algo AES256 --batch --yes --passphrase="$LARGE_SECRET_PASSPHRASE" \
19+
--output ./.github/secrets/ios_distribution.p12.gpg ./app/iosApp/fastlane/ios_distribution.p12
20+
21+
gpg --symmetric --cipher-algo AES256 --batch --yes --passphrase="$LARGE_SECRET_PASSPHRASE" \
22+
--output ./.github/secrets/NoteDelight_Distribution_Profile.mobileprovision.gpg ./app/iosApp/fastlane/NoteDelight_Distribution_Profile.mobileprovision
0 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
0 Bytes
Binary file not shown.
-4 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)