diff --git a/GITHUB_CHANGELOG.md b/GITHUB_CHANGELOG.md index 5e8a045c92..0ccb30d345 100644 --- a/GITHUB_CHANGELOG.md +++ b/GITHUB_CHANGELOG.md @@ -1,4 +1,4 @@ -Lawnchair 16 Development 0 SNAPSHOT 2 is here! Contributors are encouraged to target this branch instead of +Lawnchair 16 Development 0 SNAPSHOT 3 is here! Contributors are encouraged to target this branch instead of older (i.e., Lawnchair `15-dev`). ### Snapshot 3 @@ -17,6 +17,8 @@ Not a lot of errors left to go! * ATLEAST check to almost every launcher3 source file * `Utils` module (stripped) * Fix Dagger duplicated classes (because of Dagger dependency ksp/kapt mixing) +* Build reproducibility improvements by specifying dependencies in `build.gradle` files +* Fix some of the issues in both `lawn` and `src` modules ### Snapshot 2 diff --git a/TELEGRAM_CHANGELOG.txt b/TELEGRAM_CHANGELOG.txt index 742146a845..04ccc1a860 100644 --- a/TELEGRAM_CHANGELOG.txt +++ b/TELEGRAM_CHANGELOG.txt @@ -1,7 +1,11 @@ -Lawnchair 16 Development 0 SNAPSHOT 2 is here! Contributors are encouraged to target this branch instead of +Lawnchair 16 Development 0 SNAPSHOT 3 is here! Contributors are encouraged to target this branch instead of older (i.e., Lawnchair `15-dev`). -### Snapshot 3 (Upcoming) +### Snapshot 3 + +This is a developer-focused change log: + +Not a lot of errors left to go! * Finish correctly implementing all Dagger functions (?) * Merge Lawnchair 15 Beta 1 into Bubble Tea @@ -12,6 +16,9 @@ older (i.e., Lawnchair `15-dev`). * Publish `platform_frameworks_libs_systemui` to pe 16-dev branch * ATLEAST check to almost every launcher3 source file * `Utils` module (stripped) +* Fix Dagger duplicated classes (because of Dagger dependency ksp/kapt mixing) +* Build reproducibility improvements by specifying dependencies in `build.gradle` files +* Fix some of the issues in both `lawn` and `src` modules ### Snapshot 2 diff --git a/build.gradle b/build.gradle index 397b04061b..6f467826dd 100644 --- a/build.gradle +++ b/build.gradle @@ -16,7 +16,7 @@ plugins { id 'com.google.protobuf' version "0.9.5" id 'app.cash.licensee' version "1.13.0" id 'dev.rikka.tools.refine' version "4.4.0" - id 'com.diffplug.spotless' version '7.2.0' + id 'com.diffplug.spotless' version '7.2.1' // Thanks Dagger! id 'org.jetbrains.kotlin.kapt' version '2.2.0' @@ -507,7 +507,7 @@ spotless { kotlin { target("lawnchair/src/**/*.kt") ktlint().customRuleSets([ - "io.nlopez.compose.rules:ktlint:0.4.24", + "io.nlopez.compose.rules:ktlint:0.4.25", ]).editorConfigOverride([ "ktlint_compose_compositionlocal-allowlist": "disabled", "ktlint_compose_lambda-param-event-trailing": "disabled",