[PR #164] [MERGED] Release: 1.1.0 #1493

Closed
opened 2026-03-03 19:07:20 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/PlayCover/PlayCover/pull/164
Author: @lixin9311
Created: 8/16/2022
Status: Merged
Merged: 8/17/2022
Merged by: @lixin9311

Base: masterHead: Staging-1.1.0


📝 Commits (10+)

  • 04df3f1 i18n: add and improve zh-Hans translation
  • 7336de5 spelling and grammar
  • cd86817 Merge branch 'PlayCover:master' into translate/zh-cn
  • 307b2de Merge branch 'PlayCover:master' into translate/zh-cn
  • 952c5b7 i18n: improve translation of Sideloadly
  • 6a3faec Update translation of 利用
  • 7b35878 fix kerning
  • 7d24cae fix kerning
  • 64bbf66 add kerning & improve translation
  • 2aa5398 add kerning

📊 Changes

104 files changed (+4410 additions, -2612 deletions)

View changed files

📝 .github/workflows/1.build_release.yml (+57 -14)
.github/workflows/2.nightly_release.yml (+110 -0)
.github/workflows/SwiftLint.yml (+20 -0)
📝 .gitignore (+1 -1)
.swiftlint.yml (+12 -0)
📝 Cartfile.resolved (+1 -1)
📝 PlayCover.xcodeproj/project.pbxproj (+115 -51)
📝 PlayCover/AppInstaller/Installer.swift (+146 -47)
📝 PlayCover/AppInstaller/Utils/Entitlements.swift (+65 -53)
📝 PlayCover/AppInstaller/Utils/IPA.swift (+19 -17)
📝 PlayCover/AppInstaller/Utils/TempAllocator.swift (+16 -15)
📝 PlayCover/AppInstaller/Utils/Unarchiver.swift (+7 -6)
PlayCover/Assets.xcassets/AppIcon.appiconset/1024.png (+0 -0)
PlayCover/Assets.xcassets/AppIcon.appiconset/128.png (+0 -0)
PlayCover/Assets.xcassets/AppIcon.appiconset/16.png (+0 -0)
PlayCover/Assets.xcassets/AppIcon.appiconset/256.png (+0 -0)
PlayCover/Assets.xcassets/AppIcon.appiconset/32.png (+0 -0)
PlayCover/Assets.xcassets/AppIcon.appiconset/512.png (+0 -0)
PlayCover/Assets.xcassets/AppIcon.appiconset/64.png (+0 -0)
📝 PlayCover/Assets.xcassets/AppIcon.appiconset/Contents.json (+68 -1)

...and 80 more files

📄 Description

Changes:

  • Updated localizations and a new localization system (some localizations may be broken)
  • Sparkle updater
  • High resolutions (1080p, 1440p and 4K with a 16:9 aspect ratio)
  • M2 MacBook Air notch fix
  • Starting to deal with keymapping jankness
  • Genshin account switcher
  • Refreshed UI on launcher and app settings
  • Menu bar rework with shortcuts
  • Reworked main app grid
  • Updated help tab
  • Disable display sleep mode for apps
  • Added an iPad model identifier picker for 1st, 3rd and 5th generation 12,9” iPad Pros.

Fixes:

  • Fixed Swift deprecations
  • Fixed an issue where PlayCover would crash when started on some audio bit rates
  • Fixed an issue where the reset app settings button would not reset app settings.
  • Removed unused assets and code
  • Removed old and deprecated objective C code
  • Removed tabs

TODOs:

  • Appcast update in CI
  • Dynamic configuration for JB Bypass

🔄 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/PlayCover/PlayCover/pull/164 **Author:** [@lixin9311](https://github.com/lixin9311) **Created:** 8/16/2022 **Status:** ✅ Merged **Merged:** 8/17/2022 **Merged by:** [@lixin9311](https://github.com/lixin9311) **Base:** `master` ← **Head:** `Staging-1.1.0` --- ### 📝 Commits (10+) - [`04df3f1`](https://github.com/PlayCover/PlayCover/commit/04df3f18ab2a41b629c88802cacb1776aa5207e7) i18n: add and improve zh-Hans translation - [`7336de5`](https://github.com/PlayCover/PlayCover/commit/7336de53f1ab3038215274ce450b248d2d5ae985) spelling and grammar - [`cd86817`](https://github.com/PlayCover/PlayCover/commit/cd8681759ec2f1b4fd48fdd606940e8e9fa8dbcc) Merge branch 'PlayCover:master' into translate/zh-cn - [`307b2de`](https://github.com/PlayCover/PlayCover/commit/307b2de59ee62a9e82a1817e04fd741dc9c110bb) Merge branch 'PlayCover:master' into translate/zh-cn - [`952c5b7`](https://github.com/PlayCover/PlayCover/commit/952c5b73a354f696d60bd063041f640fe06cf9f8) i18n: improve translation of Sideloadly - [`6a3faec`](https://github.com/PlayCover/PlayCover/commit/6a3faec4df1e6be2a91cfc7c77b2f80cb03aad79) Update translation of 利用 - [`7b35878`](https://github.com/PlayCover/PlayCover/commit/7b3587868053438c9cfc6a702de080a45a3bc1ff) fix kerning - [`7d24cae`](https://github.com/PlayCover/PlayCover/commit/7d24cae95c804ce32adfec423015073a9d5fc21f) fix kerning - [`64bbf66`](https://github.com/PlayCover/PlayCover/commit/64bbf66d554de62692ae3a130aba63be180915ca) add kerning & improve translation - [`2aa5398`](https://github.com/PlayCover/PlayCover/commit/2aa5398fb87253b3394926b266a8b5274e31722c) add kerning ### 📊 Changes **104 files changed** (+4410 additions, -2612 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/1.build_release.yml` (+57 -14) ➕ `.github/workflows/2.nightly_release.yml` (+110 -0) ➕ `.github/workflows/SwiftLint.yml` (+20 -0) 📝 `.gitignore` (+1 -1) ➕ `.swiftlint.yml` (+12 -0) 📝 `Cartfile.resolved` (+1 -1) 📝 `PlayCover.xcodeproj/project.pbxproj` (+115 -51) 📝 `PlayCover/AppInstaller/Installer.swift` (+146 -47) 📝 `PlayCover/AppInstaller/Utils/Entitlements.swift` (+65 -53) 📝 `PlayCover/AppInstaller/Utils/IPA.swift` (+19 -17) 📝 `PlayCover/AppInstaller/Utils/TempAllocator.swift` (+16 -15) 📝 `PlayCover/AppInstaller/Utils/Unarchiver.swift` (+7 -6) ➖ `PlayCover/Assets.xcassets/AppIcon.appiconset/1024.png` (+0 -0) ➖ `PlayCover/Assets.xcassets/AppIcon.appiconset/128.png` (+0 -0) ➖ `PlayCover/Assets.xcassets/AppIcon.appiconset/16.png` (+0 -0) ➖ `PlayCover/Assets.xcassets/AppIcon.appiconset/256.png` (+0 -0) ➖ `PlayCover/Assets.xcassets/AppIcon.appiconset/32.png` (+0 -0) ➖ `PlayCover/Assets.xcassets/AppIcon.appiconset/512.png` (+0 -0) ➖ `PlayCover/Assets.xcassets/AppIcon.appiconset/64.png` (+0 -0) 📝 `PlayCover/Assets.xcassets/AppIcon.appiconset/Contents.json` (+68 -1) _...and 80 more files_ </details> ### 📄 Description ## Changes: - Updated localizations and a new localization system (some localizations may be broken) - Sparkle updater - High resolutions (1080p, 1440p and 4K with a 16:9 aspect ratio) - M2 MacBook Air notch fix - Starting to deal with keymapping jankness - Genshin account switcher - Refreshed UI on launcher and app settings - Menu bar rework with shortcuts - Reworked main app grid - Updated help tab - Disable display sleep mode for apps - Added an iPad model identifier picker for 1st, 3rd and 5th generation 12,9” iPad Pros. ## Fixes: - Fixed Swift deprecations - Fixed an issue where PlayCover would crash when started on some audio bit rates - Fixed an issue where the reset app settings button would not reset app settings. - Removed unused assets and code - Removed old and deprecated objective C code - Removed tabs TODOs: - [x] ~~Appcast update in CI~~ - [x] Dynamic configuration for JB Bypass --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 19:07:20 +03:00
Sign in to join this conversation.
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/PlayCover#1493
No description provided.