Skip to content

Commit

Permalink
Dev (#194)
Browse files Browse the repository at this point in the history
* fix/connect-bottombutton-1: iso 큰 화면에서는 하단 버튼 깨짐 해결 (#191)

* chore(home): 홈 화면과 커넥트 화면에서 유저 리스트 유지 (#187)

* chore(home): 홈 화면과 커넥트 화면에서 유저 리스트 유지
* fix/import : useFocusEffect 추가

* feat(connect): 커넥트 카드 업데이트 방식 수정 및 버그 수정 (#190)

* feat(connect): 커넥트 카드 업데이트 방식 수정 및 버그 수정
* chore(connect): 커넥트 요청하면 목록에서 바로사라지도록 수정
* fix(home): 커넥트 요청 후 다음 유저의 백카드가 보이는 문제 해결
* fix/lint: import 문 수정

* fix: 커뮤니티 게시글에서 누락된 북마크 색상 변경 추가 (#193)

* Style/UI ux improvements: 채팅, 커넥트, 커뮤니티 페이지 및 스플래시 화면 ui/ux 업데이트 (#192)

Co-authored-by: sooyeon_nine <124496650+KooSuYeon@users.noreply.github.com>
Co-authored-by: Seungho Lee <poream3387@gmail.com>
Co-authored-by: suyeon <stgood@kookmin.ac.kr>
4 people authored Dec 2, 2024
1 parent 5b71ae2 commit 6c6c91c
Showing 23 changed files with 1,274 additions and 2,351 deletions.
3 changes: 2 additions & 1 deletion .env.dev
Original file line number Diff line number Diff line change
@@ -4,4 +4,5 @@ EXPO_PUBLIC_WS_URL=wss://difeapp.com/ws
EXPO_PUBLIC_MOCK_LOGIN=true
EXPO_PUBLIC_MOCK_EMAIL=test1@gmail.com
EXPO_PUBLIC_MOCK_PASSWORD=password1234!
EXPO_PUBLIC_SHOW_CHAT_STATUS=true
EXPO_PUBLIC_SHOW_CHAT_STATUS=true
EXPO_PUBLIC_SHOW_REFRESH_TIMER=true
5 changes: 4 additions & 1 deletion App.jsx
Original file line number Diff line number Diff line change
@@ -95,6 +95,7 @@ import LikeUserOneToOne from "@pages/connect/LikeUserOneToOne";
import LandingPage from "@pages/login/LandingPage";
import SetPasswordPage from "@pages/login/SetPasswordPage";
import ChatBookmarkPage from "@pages/chat/ChatBookmarkPage";
import { MatchQueueProvider } from "context/MatchQueueContext";

const iconMapping = {
Chat: { active: ChatAc32, default: ChatDf24 },
@@ -265,7 +266,9 @@ function AppContent() {
return isLoggedIn ? (
<WebSocketProvider>
<PostModifyProvider>
<MainNavigator />
<MatchQueueProvider>
<MainNavigator />
</MatchQueueProvider>
</PostModifyProvider>
</WebSocketProvider>
) : (
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
@@ -6,9 +6,9 @@ We follow Conventional Commits

Reference (참조)

- [A Simplified Convention for Naming Branches and Commits in Git](https://dev.to/varbsan/a-simplified-convention-for-naming-branches-and-commits-in-git-il4)
- [A Simplified Convention for Naming Branches and Commits in Git](https://dev.to/varbsan/a-simplified-convention-for-naming-branches-and-commits-in-git-il4)

- [Naming conventions for Git Branches — a Cheatsheet](https://medium.com/@abhay.pixolo/naming-conventions-for-git-branches-a-cheatsheet-8549feca2534)
- [Naming conventions for Git Branches — a Cheatsheet](https://medium.com/@abhay.pixolo/naming-conventions-for-git-branches-a-cheatsheet-8549feca2534)

### Commits

@@ -19,17 +19,17 @@ Reference (참조)
#### prefix

- feat: 새로운 기능 구현
- fix: 버그 수정
- refactor: 코드 개선 및 리팩토링
- docs: 문서화 작업
- chore: 비즈니스 로직과 어플리케이션 로직과 연관 없는 각종 작업들
- style: 코드의 포맷 및 오타 수정 등
- test: 테스트 작성
- perf: 성능 작업
- ci: CI 작업
- build: 빌드 및 패키지 관리 등
- revert: 이전 변경 사항을 되돌리는 revert
- feat: 새로운 기능 구현
- fix: 버그 수정
- refactor: 코드 개선 및 리팩토링
- docs: 문서화 작업
- chore: 비즈니스 로직과 어플리케이션 로직과 연관 없는 각종 작업들
- style: 코드의 포맷 및 오타 수정 등
- test: 테스트 작성
- perf: 성능 작업
- ci: CI 작업
- build: 빌드 및 패키지 관리 등
- revert: 이전 변경 사항을 되돌리는 revert

### Branches

@@ -46,6 +46,6 @@ Reference (참조)
### Others

- PR이 Merge가 되면 사용했던 브랜치는 삭제한다.
- 코드 리뷰를 위해 모든 팀원을 Reviewer 지정을 한다.
- 코드의 가독성과 손쉬운 Documentation 관리를 위해 주석은 가능하면 작성하지 않는다.
- PR이 Merge가 되면 사용했던 브랜치는 삭제한다.
- 코드 리뷰를 위해 모든 팀원을 Reviewer 지정을 한다.
- 코드의 가독성과 손쉬운 Documentation 관리를 위해 주석은 가능하면 작성하지 않는다.
2 changes: 1 addition & 1 deletion app.config.js
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@ export default {
userInterfaceStyle: "light",
splash: {
image: "src/assets/splash.png",
resizeMode: "contain",
resizeMode: "cover",
backgroundColor: "#ffffff",
},
assetBundlePatterns: ["**/*"],
Loading

0 comments on commit 6c6c91c

Please sign in to comment.