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.messages"

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.messages"
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
162 changes: 100 additions & 62 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,82 +1,120 @@
Changelog
==========
# Changelog

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

* Fixed incorrect cursor position when reopening the app (#349)
* Fixed scrolling issue on conversation details screen (#359)
* 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.6 *(2025-03-24)*
----------------------------
## [Unreleased]

* Fixed crash when viewing messages
* Fixes incorrect author name in group messages (#180)
* Removed storage permission requirement (#309)
* Other minor fixes and improvements
* Added more translations
## [1.1.7] - 2025-04-01

Version 1.1.5 *(2025-02-02)*
----------------------------
### Changed
- Added more translations

* Fixed issue with third party intents (#294)
* Fixed toast error when receiving MMS messages (#287)
* Fixed RTL layout issue in threads (#279)
* Added more translations
### Fixed
- Fixed incorrect cursor position when reopening the app (#349)
- Fixed scrolling issue on conversation details screen (#359)

Version 1.1.4 *(2025-01-23)*
----------------------------
## [1.1.6] - 2025-03-24

* Fixed issue with forwarding messages (https://github.com/FossifyOrg/Messages/issues/288)
* Added more translations
### Changed
- Other minor fixes and improvements
- Added more translations

Version 1.1.3 *(2025-01-05)*
----------------------------
### Fixed
- Fixed crash when viewing messages
- Fixes incorrect author name in group messages (#180)

* Fixed issues with conversation date
update (https://github.com/FossifyOrg/Messages/issues/225, https://github.com/FossifyOrg/Messages/issues/274)
* Added more translations
### Removed
- Removed storage permission requirement (#309)

Version 1.1.2 *(2025-01-05)*
----------------------------
## [1.1.5] - 2025-02-02

* Fixed issues with conversation date
update (https://github.com/FossifyOrg/Messages/issues/225, https://github.com/FossifyOrg/Messages/issues/274)
* Added more translations
### Changed
- Added more translations

Version 1.1.1 *(2025-01-04)*
----------------------------
### Fixed
- Fixed issue with third party intents (#294)
- Fixed toast error when receiving MMS messages (#287)
- Fixed RTL layout issue in threads (#279)

* Improved third party SMS/MMS intent
parsing (https://github.com/FossifyOrg/Messages/issues/217, https://github.com/FossifyOrg/Messages/issues/243)
* Modified short code check to exclude emails (https://github.com/FossifyOrg/Messages/issues/115)
* Fixed issue with messages draft deletion (https://github.com/FossifyOrg/Messages/issues/13)
* Fixed multiple toast errors for MMS
messages (https://github.com/FossifyOrg/Messages/issues/70, https://github.com/FossifyOrg/Messages/issues/262)
* Fixed some layout issues in message thread (https://github.com/FossifyOrg/Messages/issues/135)
* Other minor bug fixes and improvements
* Added more translations
## [1.1.4] - 2025-01-23

Version 1.1.0 *(2024-12-27)*
----------------------------
### Changed
- Added more translations

* Replaced checkboxes with switches
* Removed support for Android 7 and older versions
* Fixed various issues related to importing/exporting messages
* Fixed keyword blocking for MMS messages
* Fixed issue with messages draft deletion
* Improved app lock logic and interface
* Other minor bug fixes and improvements
* Added more translations
### Fixed
- Fixed issue with forwarding messages (https://github.com/FossifyOrg/Messages/issues/288)

Version 1.0.1 *(2024-02-09)*
----------------------------
## [1.1.3] - 2025-01-05

### Changed
- Added more translations

### Fixed
- Fixed issues with conversation date
update (https://github.com/FossifyOrg/Messages/issues/225, https://github.com/FossifyOrg/Messages/issues/274)

* Minor bug fixes and improvements
* Added some translations
## [1.1.2] - 2025-01-05

Version 1.0.0 *(2024-01-24)*
----------------------------
### Changed
- Added more translations

* Initial release
### Fixed
- Fixed issues with conversation date
update (https://github.com/FossifyOrg/Messages/issues/225, https://github.com/FossifyOrg/Messages/issues/274)

## [1.1.1] - 2025-01-04

### Changed
- Improved third party SMS/MMS intent
parsing (https://github.com/FossifyOrg/Messages/issues/217, https://github.com/FossifyOrg/Messages/issues/243)
- Modified short code check to exclude emails (https://github.com/FossifyOrg/Messages/issues/115)
- Other minor bug fixes and improvements
- Added more translations

### Fixed
- Fixed issue with messages draft deletion (https://github.com/FossifyOrg/Messages/issues/13)
- Fixed multiple toast errors for MMS
messages (https://github.com/FossifyOrg/Messages/issues/70, https://github.com/FossifyOrg/Messages/issues/262)
- Fixed some layout issues in message thread (https://github.com/FossifyOrg/Messages/issues/135)

## [1.1.0] - 2024-12-27

### Changed
- Replaced checkboxes with switches
- Improved app lock logic and interface
- Other minor bug fixes and improvements
- Added more translations

### Fixed
- Fixed various issues related to importing/exporting messages
- Fixed keyword blocking for MMS messages
- Fixed issue with messages draft deletion

### Removed
- Removed support for Android 7 and older versions

## [1.0.1] - 2024-02-09

### Changed
- Minor bug fixes and improvements
- Added some translations

## [1.0.0] - 2024-01-24

### Added
- Initial release

[Unreleased]: https://github.com/FossifyOrg/Messages/compare/1.1.7...HEAD
[1.1.7]: https://github.com/FossifyOrg/Messages/compare/1.1.6...1.1.7
[1.1.6]: https://github.com/FossifyOrg/Messages/compare/1.1.5...1.1.6
[1.1.5]: https://github.com/FossifyOrg/Messages/compare/1.1.4...1.1.5
[1.1.4]: https://github.com/FossifyOrg/Messages/compare/1.1.3...1.1.4
[1.1.3]: https://github.com/FossifyOrg/Messages/compare/1.1.2...1.1.3
[1.1.2]: https://github.com/FossifyOrg/Messages/compare/1.1.1...1.1.2
[1.1.1]: https://github.com/FossifyOrg/Messages/compare/1.1.0...1.1.1
[1.1.0]: https://github.com/FossifyOrg/Messages/compare/1.0.1...1.1.0
[1.0.1]: https://github.com/FossifyOrg/Messages/compare/1.0.0...1.0.1
[1.0.0]: https://github.com/FossifyOrg/Messages/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