From f396ef594ec3ebbfbb4e2d2d9707f82608c5335b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 16 Mar 2026 08:05:52 +0000 Subject: [PATCH 1/4] =?UTF-8?q?SpaceStudyShip-FE=20=EB=B2=84=EC=A0=84=20?= =?UTF-8?q?=EA=B4=80=EB=A6=AC=20:=20docs=20:=20v1.1.41=20README=20?= =?UTF-8?q?=EB=B2=84=EC=A0=84=20=EC=A0=95=EB=B3=B4=20=EC=97=85=EB=8D=B0?= =?UTF-8?q?=EC=9D=B4=ED=8A=B8=20[skip=20ci]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 795eab9..de485b4 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ samples, guidance on mobile development, and a full API reference. -## 최신 버전 : v1.1.36 (2026-03-10) +## 최신 버전 : v1.1.41 (2026-03-16) [전체 버전 기록 보기](CHANGELOG.md) From 887709bb64df0028e4b957df8b9aeec4585e3c9f Mon Sep 17 00:00:00 2001 From: EM-H20 Date: Mon, 16 Mar 2026 19:01:58 +0900 Subject: [PATCH 2/4] =?UTF-8?q?refactor=20:=20=ED=8B=B0=EC=BC=93=20?= =?UTF-8?q?=EB=92=B7=EB=A9=B4=20=ED=94=8C=EB=A6=BD=20=ED=84=B0=EC=B9=98=20?= =?UTF-8?q?=EC=98=81=EC=97=AD=EC=9D=84=20=EC=A0=84=EC=B2=B4=20=EC=B9=B4?= =?UTF-8?q?=EB=93=9C=EB=A1=9C=20=ED=99=95=EC=9E=A5=20#56?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../screens/exploration_detail_screen.dart | 87 ++++++++++--------- 1 file changed, 44 insertions(+), 43 deletions(-) diff --git a/lib/features/exploration/presentation/screens/exploration_detail_screen.dart b/lib/features/exploration/presentation/screens/exploration_detail_screen.dart index d643e53..d6eae41 100644 --- a/lib/features/exploration/presentation/screens/exploration_detail_screen.dart +++ b/lib/features/exploration/presentation/screens/exploration_detail_screen.dart @@ -318,18 +318,18 @@ class _ExplorationDetailScreenState List regions, int currentFuel, ) { - return SizedBox.expand( - child: ClipPath( - clipper: _TicketClipper(notchRadius: 12.w), - child: Container( - color: AppColors.spaceSurface, - child: Column( - children: [ - // 상단: 티켓코드 + 연료 + 시각적 플립 유도 (탭 → 플립 복귀) - GestureDetector( - onTap: _flipToFront, - behavior: HitTestBehavior.opaque, - child: Container( + return GestureDetector( + onTap: _flipToFront, + behavior: HitTestBehavior.translucent, + child: SizedBox.expand( + child: ClipPath( + clipper: _TicketClipper(notchRadius: 12.w), + child: Container( + color: AppColors.spaceSurface, + child: Column( + children: [ + // 상단: 티켓코드 + 연료 + Container( padding: EdgeInsets.fromLTRB( AppSpacing.s20, AppSpacing.s20, @@ -370,39 +370,40 @@ class _ExplorationDetailScreenState ], ), ), - ), - // 3열 아이콘 그리드 - Expanded( - child: regions.isNotEmpty - ? GridView.builder( - padding: EdgeInsets.fromLTRB( - AppSpacing.s20, - AppSpacing.s20, - AppSpacing.s20, - AppSpacing.s20, - ), - gridDelegate: SliverGridDelegateWithFixedCrossAxisCount( - crossAxisCount: 3, - childAspectRatio: 0.85, - crossAxisSpacing: AppSpacing.s12, - mainAxisSpacing: AppSpacing.s12, + // 3열 아이콘 그리드 + Expanded( + child: regions.isNotEmpty + ? GridView.builder( + padding: EdgeInsets.fromLTRB( + AppSpacing.s20, + AppSpacing.s20, + AppSpacing.s20, + AppSpacing.s20, + ), + gridDelegate: + SliverGridDelegateWithFixedCrossAxisCount( + crossAxisCount: 3, + childAspectRatio: 0.85, + crossAxisSpacing: AppSpacing.s12, + mainAxisSpacing: AppSpacing.s12, + ), + itemCount: regions.length, + itemBuilder: (context, index) { + final region = regions[index]; + return _buildGridCell(planet, region); + }, + ) + : SpaceEmptyState( + icon: Icons.public_rounded, + color: AppColors.secondary, + title: '아직 탐험할 지역이 없습니다', + subtitle: '향후 업데이트에서 추가됩니다!', + iconSize: 64, ), - itemCount: regions.length, - itemBuilder: (context, index) { - final region = regions[index]; - return _buildGridCell(planet, region); - }, - ) - : SpaceEmptyState( - icon: Icons.public_rounded, - color: AppColors.secondary, - title: '아직 탐험할 지역이 없습니다', - subtitle: '향후 업데이트에서 추가됩니다!', - iconSize: 64, - ), - ), - ], + ), + ], + ), ), ), ), From 43f46a1cbcde41d3ab40f9fb24f0b5107bd2cf0d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 16 Mar 2026 10:07:59 +0000 Subject: [PATCH 3/4] =?UTF-8?q?SpaceStudyShip-FE=20=EB=B2=84=EC=A0=84=20?= =?UTF-8?q?=EC=A0=95=EB=B3=B4=20=EA=B4=80=EB=A6=AC:=20chore:=20=EB=B2=84?= =?UTF-8?q?=EC=A0=84=201.1.42=20[skip=20ci]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pubspec.yaml | 2 +- version.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pubspec.yaml b/pubspec.yaml index 62c6fef..bdb1eda 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: space_study_ship description: "Space Study Ship - 우주 테마 게이미피케이션 학습 관리 앱" publish_to: "none" -version: 1.1.41+85 +version: 1.1.42+86 environment: sdk: ^3.9.2 dependencies: diff --git a/version.yml b/version.yml index 8683d7e..31232f7 100644 --- a/version.yml +++ b/version.yml @@ -34,11 +34,11 @@ # - 버전은 항상 높은 버전으로 자동 동기화됩니다 # =================================================================== -version: "1.1.41" # 사용자에게 표시되는 버전 -version_code: 86 # app build number +version: "1.1.42" # 사용자에게 표시되는 버전 +version_code: 87 # app build number project_type: "flutter" # spring, flutter, react, react-native, react-native-expo, node, python, basic metadata: - last_updated: "2026-03-16 07:59:43" + last_updated: "2026-03-16 10:07:58" last_updated_by: "EM-H20" default_branch: "main" integrated_from: "SUH-DEVOPS-TEMPLATE" From 7850cdf457d0d194fc71f7eed5ca66033d2ef020 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 16 Mar 2026 10:09:45 +0000 Subject: [PATCH 4/4] =?UTF-8?q?SpaceStudyShip-FE=20=EB=B2=84=EC=A0=84=20?= =?UTF-8?q?=EA=B4=80=EB=A6=AC=20:=20docs=20:=20v1.1.42=20=EB=A6=B4?= =?UTF-8?q?=EB=A6=AC=EC=A6=88=20=EB=AC=B8=EC=84=9C=20=EC=97=85=EB=8D=B0?= =?UTF-8?q?=EC=9D=B4=ED=8A=B8=20(PR=20#61)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.json | 29 ++++++++++++++++++++++++++--- CHANGELOG.md | 17 +++++++++++++++-- 2 files changed, 41 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.json b/CHANGELOG.json index 1b82113..524965f 100644 --- a/CHANGELOG.json +++ b/CHANGELOG.json @@ -1,11 +1,34 @@ { "metadata": { - "lastUpdated": "2026-03-16T08:05:29Z", - "currentVersion": "1.1.41", + "lastUpdated": "2026-03-16T10:09:45Z", + "currentVersion": "1.1.42", "projectType": "flutter", - "totalReleases": 28 + "totalReleases": 29 }, "releases": [ + { + "version": "1.1.42", + "project_type": "flutter", + "date": "2026-03-16", + "pr_number": 61, + "raw_summary": "## Summary by CodeRabbit\n\n# 릴리스 노트\n\n* **개선사항**\n * 탐색 상세 화면의 뒷면 보기 상호작용 개선 - 전체 뒷면 영역을 탭할 수 있도록 변경\n * 뒷면 보기 상단에 연료 게이지 표시 추가\n\n* **버전 업데이트**\n * v1.1.42로 업데이트", + "parsed_changes": { + "개선사항": { + "title": "개선사항", + "items": [ + "탐색 상세 화면의 뒷면 보기 상호작용 개선 - 전체 뒷면 영역을 탭할 수 있도록 변경", + "뒷면 보기 상단에 연료 게이지 표시 추가" + ] + }, + "버전_업데이트": { + "title": "버전 업데이트", + "items": [ + "v1.1.42로 업데이트" + ] + } + }, + "parse_method": "markdown" + }, { "version": "1.1.41", "project_type": "flutter", diff --git a/CHANGELOG.md b/CHANGELOG.md index 040861a..808f4fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,20 @@ # Changelog -**현재 버전:** 1.1.41 -**마지막 업데이트:** 2026-03-16T08:05:29Z +**현재 버전:** 1.1.42 +**마지막 업데이트:** 2026-03-16T10:09:45Z + +--- + +## [1.1.42] - 2026-03-16 + +**PR:** #61 + +**개선사항** +- 탐색 상세 화면의 뒷면 보기 상호작용 개선 - 전체 뒷면 영역을 탭할 수 있도록 변경 +- 뒷면 보기 상단에 연료 게이지 표시 추가 + +**버전 업데이트** +- v1.1.42로 업데이트 ---