Skip to content

Commit

Permalink
v2.0.6
Browse files Browse the repository at this point in the history
faet : 커뮤니티 카테고리(먹은 빵 자랑) 추가
  • Loading branch information
yunyeop authored Nov 4, 2023
2 parents ff32323 + c0b226d commit f877587
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 13 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,8 @@ android {
applicationId "com.daedongbread"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 23
versionName "2.0.5"
versionCode 24
versionName "2.0.6"
resValue "string", "build_config_package", "com.daedongbread"
multiDexEnabled true
vectorDrawables.useSupportLibrary = true
Expand Down
16 changes: 8 additions & 8 deletions ios/daedongbread.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -560,10 +560,10 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = daedongbread/daedongbreadDebug.entitlements;
CODE_SIGN_ENTITLEMENTS = daedongbread/daedongbreadDebug.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 14;
CURRENT_PROJECT_VERSION = 24;
DEVELOPMENT_TEAM = SZ42T8W24M;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = daedongbread/Info.plist;
Expand All @@ -573,7 +573,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.0.9;
MARKETING_VERSION = 2.0.6;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
Expand All @@ -596,10 +596,10 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = daedongbread/daedongbreadRelease.entitlements;
CODE_SIGN_ENTITLEMENTS = daedongbread/daedongbreadRelease.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 14;
CURRENT_PROJECT_VERSION = 24;
DEVELOPMENT_TEAM = SZ42T8W24M;
INFOPLIST_FILE = daedongbread/Info.plist;
INFOPLIST_KEY_CFBundleDisplayName = "대동빵지도";
Expand All @@ -608,7 +608,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.0.9;
MARKETING_VERSION = 2.0.6;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
Expand Down Expand Up @@ -694,7 +694,7 @@
CODE_SIGN_ENTITLEMENTS = daedongbread/daedongbread.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 14;
CURRENT_PROJECT_VERSION = 24;
DEVELOPMENT_TEAM = SZ42T8W24M;
INFOPLIST_FILE = daedongbread/Info.plist;
INFOPLIST_KEY_CFBundleDisplayName = "대동빵지도";
Expand All @@ -703,7 +703,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.0.9;
MARKETING_VERSION = 2.0.6;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
Expand Down
2 changes: 1 addition & 1 deletion ios/daedongbread/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>2.0.5</string>
<string>2.0.6</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "daedongbread",
"version": "2.0.3",
"version": "2.0.6",
"private": true,
"scripts": {
"postinstall": "patch-package",
Expand Down
2 changes: 1 addition & 1 deletion src/apis/community/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export type Post = {
bakeryInfo: BakeryInfo;
};

export type PostTopic = 'ALL' | 'BREAD_STORY' | 'EVENT' | 'REVIEW' | 'FREE_TALK';
export type PostTopic = 'ALL' | 'BREAD_STORY' | 'EVENT' | 'REVIEW' | 'FREE_TALK' | 'EATEN_BREAD';
export type ReportType = PostTopic | 'COMMENT';

export type Comment = {
Expand Down
1 change: 1 addition & 0 deletions src/components/Community/Post/PostSummary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ const topics: any = {
BREAD_STORY: '빵 이야기',
REVIEW: '리뷰',
FREE_TALK: '빵터지는 이야기',
EATEN_BREAD: '먹은 빵 자랑',
};

export const PostSummary = ({ post, isFirst, onPressLike, onPressMenu }: Props) => {
Expand Down
4 changes: 4 additions & 0 deletions src/containers/Community/CommunityContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ const menus: ToggleMenu[] = [
title: '빵이야기',
postTopic: 'BREAD_STORY',
},
{
title: '먹은 빵 자랑',
postTopic: 'EATEN_BREAD',
},
{
title: '리뷰',
postTopic: 'REVIEW',
Expand Down
4 changes: 4 additions & 0 deletions src/containers/Community/PostWriteContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ const topics: TopicForm[] = [
postTopic: 'BREAD_STORY',
value: '빵 이야기',
},
{
postTopic: 'EATEN_BREAD',
value: '먹은 빵 자랑',
},
{
postTopic: 'FREE_TALK',
value: '빵터지는 이야기',
Expand Down

0 comments on commit f877587

Please sign in to comment.