Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ jobs:
- name: TypeScript
run: npm run typecheck

- name: Vitest(テスト+カバレッジ)
run: npm run test:coverage

bundle:
name: Metro bundle smoke test
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
# dependencies
node_modules/

# testing
coverage/

# Expo
.expo/
dist/
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
- **2種類の手帳**
- **プロフィール帳式** — 最初からかわいい飾り枠つき。工程フローや自由帳ページを作れる
- **ノート式** — 白紙のキャンバスに、テキスト・写真・シールを自由に配置してコラージュ
- **工程フロー** — 工程をチェックリストで並べる。完了するとシールが弾ける演出。**if分岐**(はい/いいえ)で条件分けもできる
- **工程フロー** — 工程をチェックリストで並べる。完了するとシールが弾ける演出。**if分岐**(はい/いいえ)で条件分けもでき、分岐の中にさらにif分岐を**入れ子**にして深い条件分けも作れる
- **フリーコラージュ** — テキストカード・写真・シールをドラッグ/拡大/回転で自由配置。カード同士を**つなぎ線**で結べる
- **シール** — 星・花・ハート・リボン・きらめきの5種類。好きな大きさ・角度で貼れる
- **飾り枠** — シンプル/オーロラ滲み/星屑ちらし/リボン留め
Expand Down
4 changes: 2 additions & 2 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"expo": {
"name": "かわいくデコれる手帳",
"slug": "kawaii-deconote",
"version": "0.1.0",
"version": "0.2.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"scheme": "kawaiideconote",
Expand All @@ -15,7 +15,7 @@
},
"android": {
"package": "io.github.pppzet.kawaiideconote",
"versionCode": 1,
"versionCode": 2,
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#F3E9F7"
Expand Down
Loading
Loading