From 903c440310fa60a8c473f2ef864c89a7ec69a2b2 Mon Sep 17 00:00:00 2001 From: Marvin <295208132+marvinctl@users.noreply.github.com> Date: Sun, 2 Aug 2026 20:38:49 +0530 Subject: [PATCH] fix: allow lowercase recording names --- CHANGELOG.md | 3 +++ app/src/main/res/layout/dialog_rename_recording.xml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 786f9e756..65fdcda2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Fixed +- Fixed automatic word capitalization when renaming recordings ([#397]) ## [1.7.1] - 2026-02-14 ### Changed @@ -164,6 +166,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#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 +[#397]: https://github.com/FossifyOrg/Voice-Recorder/issues/397 [Unreleased]: https://github.com/FossifyOrg/Voice-Recorder/compare/1.7.1...HEAD [1.7.1]: https://github.com/FossifyOrg/Voice-Recorder/compare/1.7.0...1.7.1 diff --git a/app/src/main/res/layout/dialog_rename_recording.xml b/app/src/main/res/layout/dialog_rename_recording.xml index a93c24dbd..e0d5226ae 100644 --- a/app/src/main/res/layout/dialog_rename_recording.xml +++ b/app/src/main/res/layout/dialog_rename_recording.xml @@ -20,7 +20,7 @@ android:id="@+id/rename_recording_title" android:layout_width="match_parent" android:layout_height="wrap_content" - android:inputType="textCapWords" + android:inputType="text" android:singleLine="true" android:textCursorDrawable="@null" android:textSize="@dimen/bigger_text_size" />