[PR #93] [MERGED] feat(mobile): touchups to dependencies, setup, types, icons, etc #32

Closed
opened 2025-12-29 18:27:53 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/linsa-io/linsa/pull/93
Author: @NathanWalker
Created: 1/5/2024
Status: Merged
Merged: 1/11/2024
Merged by: @nikivdev

Base: devHead: feat/mobile-touchups


📝 Commits (1)

  • f1210fa feat(mobile): touchups to dependencies, setup, types, icons, etc

📊 Changes

60 files changed (+1176 additions, -265 deletions)

View changed files

📝 mobile/App_Resources/Android/app.gradle (+4 -11)
📝 mobile/App_Resources/Android/src/main/res/drawable-hdpi/background.png (+0 -0)
📝 mobile/App_Resources/Android/src/main/res/drawable-ldpi/background.png (+0 -0)
📝 mobile/App_Resources/Android/src/main/res/drawable-mdpi/background.png (+0 -0)
📝 mobile/App_Resources/Android/src/main/res/drawable-xhdpi/background.png (+0 -0)
📝 mobile/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png (+0 -0)
📝 mobile/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png (+0 -0)
mobile/App_Resources/Android/src/main/res/drawable/ic_launcher_background.xml (+74 -0)
mobile/App_Resources/Android/src/main/res/drawable/ic_launcher_foreground.webp (+0 -0)
mobile/App_Resources/Android/src/main/res/drawable/ic_launcher_foreground.xml (+0 -15)
mobile/App_Resources/Android/src/main/res/mipmap-hdpi/ic_launcher.png (+0 -0)
mobile/App_Resources/Android/src/main/res/mipmap-hdpi/ic_launcher.webp (+0 -0)
mobile/App_Resources/Android/src/main/res/mipmap-mdpi/ic_launcher.png (+0 -0)
mobile/App_Resources/Android/src/main/res/mipmap-mdpi/ic_launcher.webp (+0 -0)
mobile/App_Resources/Android/src/main/res/mipmap-xhdpi/ic_launcher.png (+0 -0)
mobile/App_Resources/Android/src/main/res/mipmap-xhdpi/ic_launcher.webp (+0 -0)
mobile/App_Resources/Android/src/main/res/mipmap-xxhdpi/ic_launcher.png (+0 -0)
mobile/App_Resources/Android/src/main/res/mipmap-xxhdpi/ic_launcher.webp (+0 -0)
mobile/App_Resources/Android/src/main/res/mipmap-xxxhdpi/ic_launcher.png (+0 -0)
mobile/App_Resources/Android/src/main/res/mipmap-xxxhdpi/ic_launcher.webp (+0 -0)

...and 40 more files

📄 Description

  • Proper icons including mipmap vectors for Android and ideal single icon for iOS
  • Dependency updates including types patches to improve resolution
  • Touchups to status bar coloring to match theme
  • iOS config setups to better support future evolution
  • A fun logo pulsator for example purposes

cc/ @nikitavoloboev

https://github.com/learn-anything/learn-anything.xyz/assets/457187/f5663cb4-d754-4228-a13e-ac597b20bb23


🔄 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/linsa-io/linsa/pull/93 **Author:** [@NathanWalker](https://github.com/NathanWalker) **Created:** 1/5/2024 **Status:** ✅ Merged **Merged:** 1/11/2024 **Merged by:** [@nikivdev](https://github.com/nikivdev) **Base:** `dev` ← **Head:** `feat/mobile-touchups` --- ### 📝 Commits (1) - [`f1210fa`](https://github.com/linsa-io/linsa/commit/f1210fab524efe6a911a038bd5d753c4166a9ff2) feat(mobile): touchups to dependencies, setup, types, icons, etc ### 📊 Changes **60 files changed** (+1176 additions, -265 deletions) <details> <summary>View changed files</summary> 📝 `mobile/App_Resources/Android/app.gradle` (+4 -11) 📝 `mobile/App_Resources/Android/src/main/res/drawable-hdpi/background.png` (+0 -0) 📝 `mobile/App_Resources/Android/src/main/res/drawable-ldpi/background.png` (+0 -0) 📝 `mobile/App_Resources/Android/src/main/res/drawable-mdpi/background.png` (+0 -0) 📝 `mobile/App_Resources/Android/src/main/res/drawable-xhdpi/background.png` (+0 -0) 📝 `mobile/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png` (+0 -0) 📝 `mobile/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png` (+0 -0) ➕ `mobile/App_Resources/Android/src/main/res/drawable/ic_launcher_background.xml` (+74 -0) ➕ `mobile/App_Resources/Android/src/main/res/drawable/ic_launcher_foreground.webp` (+0 -0) ➖ `mobile/App_Resources/Android/src/main/res/drawable/ic_launcher_foreground.xml` (+0 -15) ➖ `mobile/App_Resources/Android/src/main/res/mipmap-hdpi/ic_launcher.png` (+0 -0) ➕ `mobile/App_Resources/Android/src/main/res/mipmap-hdpi/ic_launcher.webp` (+0 -0) ➖ `mobile/App_Resources/Android/src/main/res/mipmap-mdpi/ic_launcher.png` (+0 -0) ➕ `mobile/App_Resources/Android/src/main/res/mipmap-mdpi/ic_launcher.webp` (+0 -0) ➖ `mobile/App_Resources/Android/src/main/res/mipmap-xhdpi/ic_launcher.png` (+0 -0) ➕ `mobile/App_Resources/Android/src/main/res/mipmap-xhdpi/ic_launcher.webp` (+0 -0) ➖ `mobile/App_Resources/Android/src/main/res/mipmap-xxhdpi/ic_launcher.png` (+0 -0) ➕ `mobile/App_Resources/Android/src/main/res/mipmap-xxhdpi/ic_launcher.webp` (+0 -0) ➖ `mobile/App_Resources/Android/src/main/res/mipmap-xxxhdpi/ic_launcher.png` (+0 -0) ➕ `mobile/App_Resources/Android/src/main/res/mipmap-xxxhdpi/ic_launcher.webp` (+0 -0) _...and 40 more files_ </details> ### 📄 Description - Proper icons including mipmap vectors for Android and ideal single icon for iOS - Dependency updates including types patches to improve resolution - Touchups to status bar coloring to match theme - iOS config setups to better support future evolution - A fun logo pulsator for example purposes cc/ @nikitavoloboev https://github.com/learn-anything/learn-anything.xyz/assets/457187/f5663cb4-d754-4228-a13e-ac597b20bb23 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-29 18:27:53 +01:00
adam closed this issue 2025-12-29 18:27:53 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/linsa#32