Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

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

[Unreleased]: https://github.com/FossifyOrg/Voice-Recorder/compare/1.6.0...HEAD
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ class MainActivity : SimpleActivity() {
binding.mainTabsHolder.removeAllTabs()
var tabDrawables = arrayOf(
org.fossify.commons.R.drawable.ic_microphone_vector,
R.drawable.ic_headset_vector
R.drawable.ic_playlist_play_vector
)
var tabLabels = arrayOf(R.string.recorder, R.string.player)
if (config.useRecycleBin) {
Expand Down
3 changes: 0 additions & 3 deletions app/src/main/res/drawable/ic_headset_vector.xml

This file was deleted.

3 changes: 3 additions & 0 deletions app/src/main/res/drawable/ic_playlist_play_vector.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportWidth="960" android:viewportHeight="960">
<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"/>
</vector>
2 changes: 1 addition & 1 deletion app/src/main/res/layout/fragment_player.xml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@
android:layout_marginBottom="@dimen/big_margin"
android:background="@drawable/circle_button_background"
android:contentDescription="@string/playpause"
android:padding="@dimen/activity_margin"
android:padding="@dimen/normal_margin"
android:src="@drawable/ic_play_vector" />

<ImageView
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven { setUrl("https://jitpack.io") }
maven { setUrl("https://www.jitpack.io") }
mavenLocal()
}
}
Expand Down
Loading