Skip to content
This repository was archived by the owner on Jan 12, 2026. It is now read-only.

Commit 1cfd20e

Browse files
committed
Release 1.2.0
1 parent 26560fd commit 1cfd20e

File tree

3 files changed

+31
-3
lines changed

3 files changed

+31
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Added
11+
### Changed
12+
### Fixed
13+
14+
## [1.2.0] - 2024-05-26
15+
1016
### Added
1117
- Support for isometric exercises
1218
- Deleting Sets / Exercises / Plans
@@ -18,7 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1824
### Fixed
1925
- Navigation to same page again
2026
- Double back presses
21-
- Swipe gesture on Text field
27+
- Swipe gesture on reps and weight text field
2228
- Elements squashing on small screens
2329
- Empty exercises
2430
- Invalid reference

app/build.gradle.kts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,11 @@ android {
1515
applicationId = "com.looker.kenko"
1616
minSdk = 26
1717
targetSdk = 34
18-
versionCode = 101010
19-
versionName = "1.1.1"
18+
// 1.2.0 -> 102000
19+
// 1.12.2 -> 112020
20+
// 1.12.10 -> 112100
21+
versionCode = 102000
22+
versionName = "1.2.0"
2023

2124
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
2225
vectorDrawables {
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Added:
2+
3+
* Support for isometric exercises
4+
* Deleting Sets / Exercises / Plans
5+
6+
Changed:
7+
8+
* Error message height
9+
* Chips type in `Select Exercise`
10+
11+
Fixed:
12+
13+
* Navigation to same page again
14+
* Double back presses
15+
* Swipe gesture on Text field
16+
* Elements squashing on small screens
17+
* Empty exercises
18+
* Invalid reference
19+
* False reference icon

0 commit comments

Comments
 (0)