Skip to content

Commit c3f673a

Browse files
authored
feat: publish 1.0.1 (#247)
* bump artifacts version * feat: fontScale 설정 롤백 * refactor: EmptyFunctionBlock 에러 무시
1 parent b11eeb6 commit c3f673a

File tree

7 files changed

+21
-18
lines changed

7 files changed

+21
-18
lines changed

playground-version.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
name-major=1
22
name-minor=1
3-
name-patch=1
4-
code=11
3+
name-patch=2
4+
code=12

playground/src/main/kotlin/team/duckie/quackquack/playground/MainActivity.kt

+5-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ import team.duckie.quackquack.playground.base.fontScale
4040
import team.duckie.quackquack.playground.base.showComponentBounds
4141
import team.duckie.quackquack.playground.realworld.BottomSheetPlayground
4242
import team.duckie.quackquack.playground.realworld.ButtonPlayground
43-
import team.duckie.quackquack.playground.realworld.EtcPlayground
4443
import team.duckie.quackquack.playground.realworld.DrawerPlayground
44+
import team.duckie.quackquack.playground.realworld.EtcPlayground
4545
import team.duckie.quackquack.playground.realworld.FabPlayground
4646
import team.duckie.quackquack.playground.realworld.NavigationPlayground
4747
import team.duckie.quackquack.playground.realworld.SelectableImagePlayground
@@ -164,7 +164,10 @@ private fun PlaygroundDemo() {
164164
minimumValue = 0,
165165
)
166166
fontScale = (
167-
1f
167+
preference[PreferenceConfigs.FontScaleKey]
168+
?: 1f
169+
).coerceAtLeast(
170+
minimumValue = 1f,
168171
)
169172
showComponentBounds =
170173
preference[PreferenceConfigs.ShowComponentBounds] ?: showComponentBounds

quackquack-version/lint-compose.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
major=0
2-
minor=7
3-
patch=0
1+
major=1
2+
minor=0
3+
patch=1

quackquack-version/lint-core.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
major=0
2-
minor=7
3-
patch=0
1+
major=1
2+
minor=0
3+
patch=1

quackquack-version/lint-quack.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
major=0
2-
minor=1
3-
patch=0
1+
major=1
2+
minor=0
3+
patch=1

quackquack-version/ui-components.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
major=0
2-
minor=9
3-
patch=0
1+
major=1
2+
minor=0
3+
patch=1

ui-components-benchmark-app/src/main/kotlin/team/duckie/quackquack/ui/benchmark/app/benchmark.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,8 @@ import team.duckie.quackquack.ui.component.QuackBody1
2626
import team.duckie.quackquack.ui.component.QuackBody2
2727
import team.duckie.quackquack.ui.component.QuackBody3
2828
import team.duckie.quackquack.ui.component.QuackBottomNavigation
29-
import team.duckie.quackquack.ui.component.QuackBottomSheet
30-
import team.duckie.quackquack.ui.component.QuackDropDown
3129
import team.duckie.quackquack.ui.component.QuackDivider
30+
import team.duckie.quackquack.ui.component.QuackDropDown
3231
import team.duckie.quackquack.ui.component.QuackFab
3332
import team.duckie.quackquack.ui.component.QuackGrayscaleTag
3433
import team.duckie.quackquack.ui.component.QuackHeadLine1
@@ -394,6 +393,7 @@ inline fun QuackTextStyleBenchmark() {
394393
QuackTextStyle.Title2
395394
}
396395

396+
@Suppress("EmptyFunctionBlock") // TODO
397397
@Composable
398398
inline fun QuackBottomSheetBenchmark() {
399399
}

0 commit comments

Comments
 (0)