[PR #3] [MERGED] Nightly #3

Closed
opened 2026-02-28 14:36:33 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mliem2k/playtivity/pull/3
Author: @mliem2k
Created: 7/4/2025
Status: Merged
Merged: 7/4/2025
Merged by: @mliem2k

Base: mainHead: nightly


📝 Commits (10+)

  • 4b80590 fix not logging in
  • 1048864 improve widget feel
  • c2747dd update logging to not use print
  • a8d061a add inapp updater
  • 14d4f5d update fetching version from github correctly
  • c01f852 Initial commit
  • f80a91b Improve authentication verification and error handling
  • 24289ef Make widget activity items clickable to open Spotify profiles
  • 3d282df fix most of depreceated functions
  • 66f92be update themes

📊 Changes

60 files changed (+9019 additions, -1521 deletions)

View changed files

📝 .gitignore (+5 -1)
BUILD_README.md (+628 -0)
WIDGET_CLICKABLE_IMPROVEMENTS.md (+112 -0)
📝 android/app/build.gradle.kts (+32 -17)
📝 android/app/proguard-rules.pro (+20 -0)
📝 android/app/src/main/AndroidManifest.xml (+24 -4)
📝 android/app/src/main/kotlin/com/mliem/playtivity/MainActivity.kt (+264 -31)
📝 android/app/src/main/kotlin/com/mliem/playtivity/widget/ImageCacheService.kt (+25 -11)
📝 android/app/src/main/kotlin/com/mliem/playtivity/widget/ImageDownloader.kt (+1 -5)
android/app/src/main/kotlin/com/mliem/playtivity/widget/LaunchSpotifyProfileCallback.kt (+0 -54)
📝 android/app/src/main/kotlin/com/mliem/playtivity/widget/PlaytivityWidgetProvider.kt (+318 -361)
📝 android/app/src/main/kotlin/com/mliem/playtivity/widget/PlaytivityWidgetReceiver.kt (+21 -4)
android/app/src/main/kotlin/com/mliem/playtivity/widget/RefreshWidgetCallback.kt (+0 -26)
📝 android/app/src/main/res/drawable/ic_refresh.xml (+2 -1)
android/app/src/main/res/layout/widget_activity_item.xml (+84 -0)
android/app/src/main/res/layout/widget_layout.xml (+99 -0)
📝 android/app/src/main/res/values/colors.xml (+5 -5)
android/app/src/main/res/xml/file_paths.xml (+14 -0)
android/app/src/main/res/xml/network_security_config.xml (+17 -0)
📝 android/app/src/main/res/xml/playtivity_widget_glance.xml (+3 -1)

...and 40 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/mliem2k/playtivity/pull/3 **Author:** [@mliem2k](https://github.com/mliem2k) **Created:** 7/4/2025 **Status:** ✅ Merged **Merged:** 7/4/2025 **Merged by:** [@mliem2k](https://github.com/mliem2k) **Base:** `main` ← **Head:** `nightly` --- ### 📝 Commits (10+) - [`4b80590`](https://github.com/mliem2k/playtivity/commit/4b80590f941f49bb64a6900204bba4c9625ea549) fix not logging in - [`1048864`](https://github.com/mliem2k/playtivity/commit/104886436f97c2c5640a14b8d824fd126b64c726) improve widget feel - [`c2747dd`](https://github.com/mliem2k/playtivity/commit/c2747dd4189611c36f8badebbd882f45df5e53dd) update logging to not use print - [`a8d061a`](https://github.com/mliem2k/playtivity/commit/a8d061a3b742345a7383855ca49be9b4e7968ae3) add inapp updater - [`14d4f5d`](https://github.com/mliem2k/playtivity/commit/14d4f5d304b45a6ef5498281a5cbf6928406140d) update fetching version from github correctly - [`c01f852`](https://github.com/mliem2k/playtivity/commit/c01f852407d209e8edb8b7d657b2da4269039e3c) Initial commit - [`f80a91b`](https://github.com/mliem2k/playtivity/commit/f80a91b48e632fa75957bcd20db242cc2294d486) Improve authentication verification and error handling - [`24289ef`](https://github.com/mliem2k/playtivity/commit/24289ef118ee31b179423b6c0f278a98a536e002) Make widget activity items clickable to open Spotify profiles - [`3d282df`](https://github.com/mliem2k/playtivity/commit/3d282df91a474a218dc6868aa493e3a3515855fd) fix most of depreceated functions - [`66f92be`](https://github.com/mliem2k/playtivity/commit/66f92be3e95a515031bdde6bcf1db28c50c5ca63) update themes ### 📊 Changes **60 files changed** (+9019 additions, -1521 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+5 -1) ➕ `BUILD_README.md` (+628 -0) ➕ `WIDGET_CLICKABLE_IMPROVEMENTS.md` (+112 -0) 📝 `android/app/build.gradle.kts` (+32 -17) 📝 `android/app/proguard-rules.pro` (+20 -0) 📝 `android/app/src/main/AndroidManifest.xml` (+24 -4) 📝 `android/app/src/main/kotlin/com/mliem/playtivity/MainActivity.kt` (+264 -31) 📝 `android/app/src/main/kotlin/com/mliem/playtivity/widget/ImageCacheService.kt` (+25 -11) 📝 `android/app/src/main/kotlin/com/mliem/playtivity/widget/ImageDownloader.kt` (+1 -5) ➖ `android/app/src/main/kotlin/com/mliem/playtivity/widget/LaunchSpotifyProfileCallback.kt` (+0 -54) 📝 `android/app/src/main/kotlin/com/mliem/playtivity/widget/PlaytivityWidgetProvider.kt` (+318 -361) 📝 `android/app/src/main/kotlin/com/mliem/playtivity/widget/PlaytivityWidgetReceiver.kt` (+21 -4) ➖ `android/app/src/main/kotlin/com/mliem/playtivity/widget/RefreshWidgetCallback.kt` (+0 -26) 📝 `android/app/src/main/res/drawable/ic_refresh.xml` (+2 -1) ➕ `android/app/src/main/res/layout/widget_activity_item.xml` (+84 -0) ➕ `android/app/src/main/res/layout/widget_layout.xml` (+99 -0) 📝 `android/app/src/main/res/values/colors.xml` (+5 -5) ➕ `android/app/src/main/res/xml/file_paths.xml` (+14 -0) ➕ `android/app/src/main/res/xml/network_security_config.xml` (+17 -0) 📝 `android/app/src/main/res/xml/playtivity_widget_glance.xml` (+3 -1) _...and 40 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-28 14:36:33 +03:00
Sign in to join this conversation.
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/playtivity#3
No description provided.