Skip to content

Commit

Permalink
Release v2.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
amirisback committed Sep 2, 2024
1 parent d605c30 commit 7973920
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 19 deletions.
49 changes: 35 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,12 @@
## Version Release
This Is Latest Release

$version_release = 2.0.3
$version_release = 2.0.4

What's New??

* Avaiable For Android And Desktop *
* Update to libs.versions.toml *

## Include Library
<table>
Expand Down Expand Up @@ -76,24 +77,44 @@ allprojects {
### Step 2. Add the dependency (build.gradle : Module)

#### <Option 1> Groovy Gradle
```groovy
dependencies {
// library frogo-ui
implementation 'com.github.frogobox:frogo-ui:2.0.4'
dependencies {
// library frogo-ui
implementation 'com.github.frogobox:frogo-ui:2.0.3'

// library frogo-ui for desktop
implementation 'com.github.frogobox.frogo-ui:core-ui:2.0.3'
}
// library frogo-ui for desktop
implementation 'com.github.frogobox.frogo-ui:core-ui:2.0.4'
}
```

#### <Option 2> Kotlin DSL Gradle
```groovy
dependencies {
// library frogo-ui
implementation("com.github.frogobox:frogo-ui:2.0.4")
// library frogo-ui for desktop
implementation("com.github.frogobox.frogo-ui:core-ui:2.0.4")
}
```

dependencies {
// library frogo-ui
implementation("com.github.frogobox:frogo-ui:2.0.3")
#### <Option 3> libs.versions.toml
```yml
[versions]
frogoui = "2.0.4"

// library frogo-ui for desktop
implementation("com.github.frogobox.frogo-ui:core-ui:2.0.3")
}
[libraries]
frogo-ui = { group = "com.github.frogobox", name = "frogo-ui", version.ref = "frogoui" }
frogo-ui-core = { group = "com.github.frogobox.frogo-ui", name = "core-ui", version.ref = "frogoui" }

dependencies {
// library frogo-ui
implementation(libs.frogo.ui)

// library frogo-ui for desktop
implementation(libs.frogo.ui.core)
}
```

## Documentation
- Layouts
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
plugins {
id("com.android.application") version "8.3.2" apply false
id("com.android.library") version "8.3.2" apply false
id("org.jetbrains.kotlin.android") version DependencyGradle.KOTLIN_VERSION apply false
id("org.jetbrains.kotlin.jvm") version DependencyGradle.KOTLIN_VERSION apply false
id("org.jetbrains.kotlin.android") version "1.9.23" apply false
id("org.jetbrains.kotlin.jvm") version "1.9.23" apply false
}

buildscript {
Expand Down
1 change: 0 additions & 1 deletion buildSrc/src/main/kotlin/DependencyGradle.kt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
object DependencyGradle {

// dependencies version
const val KOTLIN_VERSION = "1.9.23" // https://kotlinlang.org/docs/releases.html#release-details
const val COMPOSE_MULTIPLATFORM_VERSION = "1.6.1" // https://github.com/JetBrains/compose-jb
const val COMPOSE_VERSION = "1.5.12" // https://developer.android.com/jetpack/androidx/releases/compose

Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/ProjectSetting.kt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ object ProjectSetting {

const val VERSION_MAJOR = 2
const val VERSION_MINOR = 0
const val VERSION_PATCH = 3
const val VERSION_PATCH = 4

// ---------------------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ liveCycle = "2.8.4"
viewPager2 = "1.1.0"
preference = "1.2.1"
roomKtx = "2.6.1"
work = "2.9.0"
work = "2.9.1"

# Compose Version
composeCompiler = "1.5.12" # https://developer.android.com/jetpack/androidx/releases/compose
Expand Down

0 comments on commit 7973920

Please sign in to comment.