Wykres commitów

50 Commity (cb543bbf5f41c3b81a561f3954caaa9ccf7b3931)

Autor SHA1 Wiadomość Data
renovate[bot] cb543bbf5f
chore(deps): update com.android.tools.build:gradle to v8.9.1 (#1717)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-27 20:35:19 -05:00
James Rich 7effb9f73c
chore(dependencies): Upgrade Kotlin to 2.1.20 and KSP to 2.1.20-1.0.31 (#1711)
The Kotlin version has been bumped to 2.1.20 and Kotlin Symbol Processing (KSP) has been updated to version 2.1.20-1.0.31 in the `libs.versions.toml` file.
2025-03-23 22:09:54 -05:00
renovate[bot] 1728dc58ba
chore(deps): update com.google.firebase:firebase-bom to v33.11.0 (#1698)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-23 20:28:14 -05:00
renovate[bot] 0538e73d7d
chore(deps): update hilt to v2.56 (#1695)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-23 20:27:36 -05:00
renovate[bot] 559b47355d
chore(deps): update com.github.mik3y:usb-serial-for-android to v3.9.0 - abandoned (#1666)
* chore(deps): update com.github.mik3y:usb-serial-for-android to v3.9.0

* fix: Use SerialInputOutputManager.start() according to change https://github.com/mik3y/usb-serial-for-android/releases/tag/v3.9.0

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: James Rich <2199651+jamesarich@users.noreply.github.com>
2025-03-14 06:14:24 -05:00
renovate[bot] 3f54051cb2
chore(deps): update protobuf.kotlin to v4.30.1 (#1642)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-13 19:06:17 -05:00
renovate[bot] 18d5f1cfb3
chore(deps): update androidx.compose:compose-bom to v2025.03.00 (#1673)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-13 17:33:20 -05:00
renovate[bot] ee6d481b72
chore(deps): update navigation to v2.8.9 (#1672)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-13 17:32:53 -05:00
James Rich a9df1da44f
fix: add crashlytics version reference (#1644)
Signed-off-by: James Rich <james.a.rich@gmail.com>
2025-03-05 19:00:58 -06:00
renovate[bot] 888688176c
chore(deps): update com.android.tools.build:gradle to v8.9.0 (#1639)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-04 14:41:23 -06:00
renovate[bot] 24f218ef2c
chore(deps): update com.google.firebase:firebase-bom to v33.10.0 (#1623)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-02-27 16:24:16 -06:00
renovate[bot] b58c674de8
chore(deps): update navigation to v2.8.8 (#1620)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-02-27 16:23:48 -06:00
renovate[bot] 1a333dbd4a
chore(deps): update com.google.devtools.ksp to v2.1.10-1.0.31 (#1622)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-02-27 16:23:26 -06:00
renovate[bot] 6a0ce49aa3
chore(deps): update com.android.tools.build:gradle to v8.8.2 (#1619)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-02-27 16:22:49 -06:00
renovate[bot] 4cf2b74bcc
chore(deps): update androidx.datastore:datastore to v1.1.3 (#1618)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-02-27 16:22:13 -06:00
renovate[bot] 1ae57a1693
chore(deps): update androidx.constraintlayout:constraintlayout to v2.2.1 (#1617)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-02-27 16:21:40 -06:00
renovate[bot] 2cc66d6b57
chore(deps): update gradle to v8.13 (#1614)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-02-27 16:19:09 -06:00
James Rich 4242afef9c
feat: Introduce Version Catalog for Dependency Management (#1607)
* feat: Introduce Version Catalog for Dependency Management

This commit introduces a version catalog via `libs.versions.toml` to centralize and manage project dependencies. It replaces the previous hardcoded dependency versions in `app/build.gradle` with references to the version catalog. This change enhances maintainability and organization by centralizing dependency management.

- Added `gradle/libs.versions.toml` to define dependencies and their versions.
- Updated `app/build.gradle` to utilize dependencies from the version catalog.

* chore: migrate plugins to version catalog

* chore: sort lines in `libs.versions.toml`

-Sorts `versions`, `dependencies`, and `plugins` references alphabetically.

* feat: pin ZXing Core dependency

*   Suppressed warning about updating zxing-core to avoid confusion.
*   Added a note to avoid updating zxing-core.

* refactor: Enforce consistent `implementation()` calls in `build.gradle`

-   Ensures all library dependencies are called with `implementation(libs.xxx)` instead of `implementation libs.xxx` in `build.gradle`.

* feat: use version catalog bundles

- Updated dependencies in the app build.gradle to use bundles where possible.

* fix: fix ui test dependency declarations

* chore: comments for clarity

* fix: remove material3 from this PR
2025-02-24 18:42:37 -06:00
renovate[bot] ca199c7a12
chore(deps): update gradle to v8.12.1 2025-02-15 17:14:55 +00:00
renovate[bot] 6bc15f026f chore(deps): update gradle to v8.12 2025-01-02 07:25:15 -03:00
renovate[bot] c7841b18e7 chore(deps): update gradle to v8.11.1 2024-11-21 07:41:29 -03:00
renovate[bot] 3dea4cf605 chore(deps): update gradle to v8.11 2024-11-19 10:03:17 -03:00
renovate[bot] 831dceccb4 chore(deps): update gradle to v8.10.2 2024-09-28 09:13:28 -03:00
renovate[bot] 63797ab97a chore(deps): update gradle to v8.10.1 2024-09-09 18:52:37 -03:00
renovate[bot] 3c7a4b2f5f chore(deps): update gradle to v8.10 2024-08-18 06:27:06 -03:00
renovate[bot] 4e7bc62059 chore(deps): update gradle to v8.9 2024-07-13 07:09:41 -03:00
renovate[bot] 8d2c832528 chore(deps): update gradle to v8.8 2024-06-30 11:37:48 -03:00
renovate[bot] 622d24a0db chore(deps): update gradle to v8.7 2024-03-31 16:19:15 -03:00
renovate[bot] c99c503507 chore(deps): update gradle to v8.6 2024-02-02 23:56:07 -03:00
renovate[bot] 58b098e95a chore(deps): update gradle to v8.5 2023-12-01 06:06:14 -03:00
renovate[bot] 553c0fbab0 chore(deps): update gradle to v8.4 2023-10-05 22:28:44 -03:00
renovate[bot] 6387e75a59 chore(deps): update gradle to v8.3 2023-09-04 19:07:11 -03:00
andrekir 605600eeaf chore: update gradle wrapper to 8.2.1
Command: `./gradle wrapper --gradle-version=8.2.1`
Release Notes: https://docs.gradle.org/8.2.1/release-notes.html
2023-07-27 06:09:54 -03:00
andrekir f3356db1c9 chore: update gradle wrapper to 7.5 2023-02-08 00:02:05 -03:00
andrekir a9784f3747 chore: upgrade gradle 2023-01-31 18:49:27 -03:00
andrekir 4c46f2ae1c upgrade gradle libs 2022-11-02 15:38:26 -03:00
andrekir c4e220f1a0 update gradle 2022-06-07 08:31:29 -03:00
andrekir 2bd5354059 update gradle 2022-01-31 22:01:33 -03:00
Kevin Hester 3ada630e25 update libs 2021-08-29 15:14:01 -07:00
Kevin Hester 59e430d30d WIP color fixes 2021-05-09 09:02:53 +08:00
Kevin Hester 3afbc76c63 1.1.8 generate an APK for github fix #200 (sorry for laziness ;-)) 2020-11-11 12:50:27 +08:00
Kevin Hester f61cd45847 update to new gradle/android studio 4.1 2020-10-21 17:50:54 +08:00
geeksville d25223ba71 update libs 2020-05-30 13:34:48 -07:00
geeksville df1a3d8c3b update gradle to 6.4 2020-05-29 14:11:43 -07:00
geeksville 40853723ab update to dev07 compose 2020-03-29 13:38:50 -07:00
geeksville 5b60253e00 update ide to canary 4 2020-03-29 11:49:35 -07:00
Kevin Hester c3260a3fd7 minor fixes to work with virgin build trees 2020-02-27 13:07:11 -08:00
geeksville 6d4e0e0184 turn on Jetpack Compose for GUI building 2020-01-21 19:16:03 -08:00
geeksville 8c3b9ce30d update to latest IDE 2020-01-20 16:13:40 -08:00
geeksville 0bb9d8258a initial checkin of virgin project 2020-01-20 15:53:22 -08:00