Skip to content

Commit

Permalink
feat: publish 1.0.1 (#247)
Browse files Browse the repository at this point in the history
* bump artifacts version

* feat: fontScale 설정 롤백

* refactor: EmptyFunctionBlock 에러 무시
  • Loading branch information
jisungbin committed Oct 9, 2022
1 parent b11eeb6 commit c3f673a
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 18 deletions.
4 changes: 2 additions & 2 deletions playground-version.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name-major=1
name-minor=1
name-patch=1
code=11
name-patch=2
code=12
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ import team.duckie.quackquack.playground.base.fontScale
import team.duckie.quackquack.playground.base.showComponentBounds
import team.duckie.quackquack.playground.realworld.BottomSheetPlayground
import team.duckie.quackquack.playground.realworld.ButtonPlayground
import team.duckie.quackquack.playground.realworld.EtcPlayground
import team.duckie.quackquack.playground.realworld.DrawerPlayground
import team.duckie.quackquack.playground.realworld.EtcPlayground
import team.duckie.quackquack.playground.realworld.FabPlayground
import team.duckie.quackquack.playground.realworld.NavigationPlayground
import team.duckie.quackquack.playground.realworld.SelectableImagePlayground
Expand Down Expand Up @@ -164,7 +164,10 @@ private fun PlaygroundDemo() {
minimumValue = 0,
)
fontScale = (
1f
preference[PreferenceConfigs.FontScaleKey]
?: 1f
).coerceAtLeast(
minimumValue = 1f,
)
showComponentBounds =
preference[PreferenceConfigs.ShowComponentBounds] ?: showComponentBounds
Expand Down
6 changes: 3 additions & 3 deletions quackquack-version/lint-compose.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
major=0
minor=7
patch=0
major=1
minor=0
patch=1
6 changes: 3 additions & 3 deletions quackquack-version/lint-core.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
major=0
minor=7
patch=0
major=1
minor=0
patch=1
6 changes: 3 additions & 3 deletions quackquack-version/lint-quack.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
major=0
minor=1
patch=0
major=1
minor=0
patch=1
6 changes: 3 additions & 3 deletions quackquack-version/ui-components.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
major=0
minor=9
patch=0
major=1
minor=0
patch=1
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,8 @@ import team.duckie.quackquack.ui.component.QuackBody1
import team.duckie.quackquack.ui.component.QuackBody2
import team.duckie.quackquack.ui.component.QuackBody3
import team.duckie.quackquack.ui.component.QuackBottomNavigation
import team.duckie.quackquack.ui.component.QuackBottomSheet
import team.duckie.quackquack.ui.component.QuackDropDown
import team.duckie.quackquack.ui.component.QuackDivider
import team.duckie.quackquack.ui.component.QuackDropDown
import team.duckie.quackquack.ui.component.QuackFab
import team.duckie.quackquack.ui.component.QuackGrayscaleTag
import team.duckie.quackquack.ui.component.QuackHeadLine1
Expand Down Expand Up @@ -394,6 +393,7 @@ inline fun QuackTextStyleBenchmark() {
QuackTextStyle.Title2
}

@Suppress("EmptyFunctionBlock") // TODO
@Composable
inline fun QuackBottomSheetBenchmark() {
}
Expand Down

0 comments on commit c3f673a

Please sign in to comment.