This commit is contained in:
Johannes Millan 2025-11-30 13:32:39 +01:00
parent 939264e3d3
commit 1d4605621e
6 changed files with 31 additions and 6 deletions

View file

@ -1,3 +1,17 @@
## [16.4.2](https://github.com/johannesjo/super-productivity/compare/v16.4.1...v16.4.2) (2025-11-30)
### Bug Fixes
- **android:** correctly handle export cancellation to avoid misleading success toast ([06d9e49](https://github.com/johannesjo/super-productivity/commit/06d9e49466f189cf02d111b178ef3036459c6154))
- **android:** prevent crash by making share plugin detection synchronous ([292cdc7](https://github.com/johannesjo/super-productivity/commit/292cdc72164d1b7bdaacf993adbca22d25143fa3))
- **android:** restore broken metric sharing ([75ec726](https://github.com/johannesjo/super-productivity/commit/75ec72630c4c60d827d6ec6431267a9445e49968))
- **android:** use Share API for export to avoid permission issues [#5607](https://github.com/johannesjo/super-productivity/issues/5607) ([a248587](https://github.com/johannesjo/super-productivity/commit/a2485872bebba74a65ffb8a68c3c9e78a7d93b03))
- evaluate day string on daily summary ([9604d36](https://github.com/johannesjo/super-productivity/commit/9604d364756eefbcce167788f8e2b18a57d81926))
### Features
- add error handling for download operations ([e781bc8](https://github.com/johannesjo/super-productivity/commit/e781bc814158198b5d54e47f314b9c99cbaa89e3))
## [16.4.1](https://github.com/johannesjo/super-productivity/compare/v16.4.0...v16.4.1) (2025-11-28)
### Bug Fixes

View file

@ -20,8 +20,8 @@ android {
minSdkVersion 24
targetSdkVersion 35
compileSdk 35
versionCode 16_04_01_0000
versionName "16.4.1"
versionCode 16_04_02_0000
versionName "16.4.2"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
manifestPlaceholders = [
hostName : "app.super-productivity.com",

View file

@ -0,0 +1,11 @@
### Bug Fixes
* **android:** correctly handle export cancellation to avoid misleading success toast
* **android:** prevent crash by making share plugin detection synchronous
* **android:** restore broken metric sharing
* **android:** use Share API for export to avoid permission issues #5607
* evaluate day string on daily summary
### Features
* add error handling for download operations

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "superProductivity",
"version": "16.4.1",
"version": "16.4.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "superProductivity",
"version": "16.4.1",
"version": "16.4.2",
"license": "MIT",
"workspaces": [
"packages/*"

View file

@ -1,6 +1,6 @@
{
"name": "superProductivity",
"version": "16.4.1",
"version": "16.4.2",
"description": "ToDo list and Time Tracking",
"keywords": [
"ToDo",

View file

@ -1,6 +1,6 @@
// this file is automatically generated by git.version.ts script
export const versions = {
version: '16.4.1',
version: '16.4.2',
revision: 'NO_REV',
branch: 'NO_BRANCH',
};