Skip to content

Commit 51a854b

Browse files
authored
feat: update player tab icon (#303)
* feat: update player tab icon Replaced it with playlist play icon. * docs: update changelog * perf: optimize vector drawable * build: update jitpack url * feat: update play button size
1 parent f817a0c commit 51a854b

6 files changed

Lines changed: 8 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
### Changed
1313
- Removed per-item overflow menu from recordings list in favor of long-press options ([#229])
14+
- Updated player tab icon ([#256])
1415

1516
## [1.6.0] - 2025-12-16
1617
### Changed
@@ -151,6 +152,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
151152
[#185]: https://github.com/FossifyOrg/Voice-Recorder/issues/185
152153
[#229]: https://github.com/FossifyOrg/Voice-Recorder/issues/229
153154
[#247]: https://github.com/FossifyOrg/Voice-Recorder/issues/247
155+
[#256]: https://github.com/FossifyOrg/Voice-Recorder/issues/256
154156
[#273]: https://github.com/FossifyOrg/Voice-Recorder/issues/273
155157

156158
[Unreleased]: https://github.com/FossifyOrg/Voice-Recorder/compare/1.6.0...HEAD

app/src/main/kotlin/org/fossify/voicerecorder/activities/MainActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ class MainActivity : SimpleActivity() {
191191
binding.mainTabsHolder.removeAllTabs()
192192
var tabDrawables = arrayOf(
193193
org.fossify.commons.R.drawable.ic_microphone_vector,
194-
R.drawable.ic_headset_vector
194+
R.drawable.ic_playlist_play_vector
195195
)
196196
var tabLabels = arrayOf(R.string.recorder, R.string.player)
197197
if (config.useRecycleBin) {

app/src/main/res/drawable/ic_headset_vector.xml

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="960" android:viewportHeight="960">
2+
<path android:fillColor="#FFFFFF" android:pathData="M96 622q-20.4 0-34.2-13.8T48 574q0-20.4 13.8-34.2T96 526h288q20.4 0 34.2 13.8T432 574q0 20.4-13.8 34.2T384 622H96zm0-192q-20.4 0-34.2-13.8T48 382q0-20.4 13.8-34.2T96 334h480q20.4 0 34.2 13.8T624 382q0 20.4-13.8 34.2T576 430H96zm0-192q-20.4 0-34.2-13.8T48 190q0-20.4 13.8-34.2T96 142h480q20.4 0 34.2 13.8T624 190q0 20.4-13.8 34.2T576 238H96zm613.2 598.8q-6 3.6-12 3.6t-12-2.4q-6-2.4-9.6-7.8t-3.6-12.6V522.4q0-7.2 3.6-12.6t9.6-7.8q6-2.4 12-2.4t12 3.6L930 649.6q6 3.6 8.4 9t2.4 11.4q0 6-2.4 11.4t-8.4 9L709.2 836.8z"/>
3+
</vector>

app/src/main/res/layout/fragment_player.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@
147147
android:layout_marginBottom="@dimen/big_margin"
148148
android:background="@drawable/circle_button_background"
149149
android:contentDescription="@string/playpause"
150-
android:padding="@dimen/activity_margin"
150+
android:padding="@dimen/normal_margin"
151151
android:src="@drawable/ic_play_vector" />
152152

153153
<ImageView

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencyResolutionManagement {
1010
repositories {
1111
google()
1212
mavenCentral()
13-
maven { setUrl("https://jitpack.io") }
13+
maven { setUrl("https://www.jitpack.io") }
1414
mavenLocal()
1515
}
1616
}

0 commit comments

Comments
 (0)