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
19 changes: 19 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
version: 2
updates:
- package-ecosystem: "bundler"
directory: "/"
schedule:
interval: "weekly"
commit-message:
prefix: "chore"
prefix-development: "chore"
include: "scope"

- package-ecosystem: "gradle"
directory: "/"
schedule:
interval: "weekly"
commit-message:
prefix: "chore"
prefix-development: "chore"
include: "scope"
25 changes: 25 additions & 0 deletions .github/workflows/foss-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Github Release

on:
push:
tags:
- "*.*.*"

permissions:
contents: read

jobs:
call-release-workflow:
uses: FossifyOrg/.github/.github/workflows/release.yml@main
with:
tag: ${{ github.ref_name }}
flavor: "foss"
package_name: "org.fossify.voicerecorder"

secrets:
ANDROID_KEYSTORE_BASE64: ${{ secrets.ANDROID_KEYSTORE_BASE64 }}
SIGNING_KEY_ALIAS: ${{ secrets.SIGNING_KEY_ALIAS }}
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }}
SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }}
SERVICE_ACCOUNT_JSON_KEY_BASE64: ""
FOSSIFYBOT_TOKEN: ${{ secrets.FOSSIFYBOT_TOKEN }}
46 changes: 46 additions & 0 deletions .github/workflows/gplay-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Google Play Release

on:
workflow_dispatch:
inputs:
track:
description: "Google Play Store release track"
required: false
type: choice
default: "beta"
options:
- internal
- alpha
- beta
- production
rollout:
description: "Rollout fraction (0.0-1.0)"
required: false
type: string
default: "0.05"
validate_only:
description: "Fastlane dry-run?"
required: false
type: boolean
default: false

permissions:
contents: read

jobs:
call-release-workflow:
uses: FossifyOrg/.github/.github/workflows/release.yml@main
with:
flavor: "gplay"
package_name: "org.fossify.voicerecorder"
track: ${{ github.event.inputs.track }}
rollout: ${{ github.event.inputs.rollout }}
validate_only: ${{ github.event.inputs.validate_only == 'true' }}

secrets:
ANDROID_KEYSTORE_BASE64: ${{ secrets.ANDROID_KEYSTORE_BASE64 }}
SIGNING_KEY_ALIAS: ${{ secrets.SIGNING_KEY_ALIAS }}
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }}
SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }}
SERVICE_ACCOUNT_JSON_KEY_BASE64: ${{ secrets.SERVICE_ACCOUNT_JSON_KEY_BASE64 }}
FOSSIFYBOT_TOKEN: ""
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,4 @@
keystore.jks
keystore.properties
fastlane/fastlane.json
Gemfile
Gemfile.lock
fastlane/report.xml
81 changes: 52 additions & 29 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,39 +1,62 @@
Changelog
==========
# Changelog

Version 1.1.3 *(2025-01-17)*
----------------------------
All notable changes to this project will be documented in this file.

* Fixed cut-off or corrupted recordings (https://github.com/FossifyOrg/Voice-Recorder/issues/81)
* Added more translations
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).

Version 1.1.2 *(2025-01-16)*
----------------------------
## [Unreleased]

* Added experimental notice when recording MP3 (https://github.com/FossifyOrg/Voice-Recorder/issues/81)
* Added more translations
## [1.1.3] - 2025-01-17

Version 1.1.1 *(2025-01-16)*
----------------------------
### Changed
- Added more translations

* Mark MP3 format as experimental (https://github.com/FossifyOrg/Voice-Recorder/issues/81)
* Added more translations
### Fixed
- Fixed cut-off or corrupted recordings (https://github.com/FossifyOrg/Voice-Recorder/issues/81)

Version 1.1.0 *(2025-01-11)*
----------------------------
## [1.1.2] - 2025-01-16

* Replaced checkboxes with switches (https://github.com/orgs/FossifyOrg/discussions/78)
* Removed support for Android 7 and older versions (https://github.com/orgs/FossifyOrg/discussions/241)
* Added button to cancel recording (https://github.com/FossifyOrg/Voice-Recorder/issues/57)
* Added option to keep screen on during recording (https://github.com/FossifyOrg/Voice-Recorder/issues/67)
* Fixed issue with delete recording button (https://github.com/FossifyOrg/Voice-Recorder/issues/40)
* Fixed issue with invalid button states (https://github.com/FossifyOrg/Voice-Recorder/issues/47)
* Fixed app not responding errors (https://github.com/FossifyOrg/Voice-Recorder/issues/22)
* Added option to move recordings when changing recordings folder
* Other minor bug fixes and improvements
* Added more translations
### Added
- Added experimental notice when recording MP3 (https://github.com/FossifyOrg/Voice-Recorder/issues/81)

Version 1.0.0 *(2024-02-17)*
----------------------------
### Changed
- Added more translations

* Initial release
## [1.1.1] - 2025-01-16

### Changed
- Mark MP3 format as experimental (https://github.com/FossifyOrg/Voice-Recorder/issues/81)
- Added more translations

## [1.1.0] - 2025-01-11

### Added
- Added button to cancel recording (https://github.com/FossifyOrg/Voice-Recorder/issues/57)
- Added option to keep screen on during recording (https://github.com/FossifyOrg/Voice-Recorder/issues/67)
- Added option to move recordings when changing recordings folder

### Changed
- Replaced checkboxes with switches (https://github.com/orgs/FossifyOrg/discussions/78)
- Other minor bug fixes and improvements
- Added more translations

### Fixed
- Fixed issue with delete recording button (https://github.com/FossifyOrg/Voice-Recorder/issues/40)
- Fixed issue with invalid button states (https://github.com/FossifyOrg/Voice-Recorder/issues/47)
- Fixed app not responding errors (https://github.com/FossifyOrg/Voice-Recorder/issues/22)

### Removed
- Removed support for Android 7 and older versions (https://github.com/orgs/FossifyOrg/discussions/241)

## [1.0.0] - 2024-02-17

### Added
- Initial release

[Unreleased]: https://github.com/FossifyOrg/Voice-Recorder/compare/1.1.3...HEAD
[1.1.3]: https://github.com/FossifyOrg/Voice-Recorder/compare/1.1.2...1.1.3
[1.1.2]: https://github.com/FossifyOrg/Voice-Recorder/compare/1.1.1...1.1.2
[1.1.1]: https://github.com/FossifyOrg/Voice-Recorder/compare/1.1.0...1.1.1
[1.1.0]: https://github.com/FossifyOrg/Voice-Recorder/compare/1.0.0...1.1.0
[1.0.0]: https://github.com/FossifyOrg/Voice-Recorder/releases/tag/1.0.0
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source "https://rubygems.org"

gem "fastlane"
gem "fastlane-plugin-fossify", "~> 1.0"
Loading
Loading