Compare commits
No commits in common. "9df3c33c6ca6564c9c01ff8d455ee4158c7d484c" and "cb3fd43dbdc4eef2bb347ea58c01a01578c46154" have entirely different histories.
9df3c33c6c
...
cb3fd43dbd
|
@ -1,12 +1,7 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 2024.3 (126)
|
## 2024.3 (125)
|
||||||
Bugfixes:
|
This build fixes a bug when displaying HTML in certain posts.
|
||||||
- Fix an issue displaying post HTML in certain edge cases
|
|
||||||
- Fix crash when video attachment playback ends
|
|
||||||
- Fix excessive CPU usage when scrubbing video attachment
|
|
||||||
- Fix video attachment thubmnails being flipped on Compose screen
|
|
||||||
- Pleroma: Fix editing attachment descriptions not working
|
|
||||||
|
|
||||||
## 2024.2 (124)
|
## 2024.2 (124)
|
||||||
Features/Improvements:
|
Features/Improvements:
|
||||||
|
|
|
@ -120,15 +120,6 @@ class VideoControlsViewController: UIViewController {
|
||||||
fatalError("init(coder:) has not been implemented")
|
fatalError("init(coder:) has not been implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
deinit {
|
|
||||||
if let timestampObserverToken {
|
|
||||||
player.removeTimeObserver(timestampObserverToken)
|
|
||||||
}
|
|
||||||
if let scrubberObserverToken {
|
|
||||||
player.removeTimeObserver(scrubberObserverToken)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override func viewDidLoad() {
|
override func viewDidLoad() {
|
||||||
super.viewDidLoad()
|
super.viewDidLoad()
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
// https://help.apple.com/xcode/#/dev745c5c974
|
// https://help.apple.com/xcode/#/dev745c5c974
|
||||||
|
|
||||||
MARKETING_VERSION = 2024.3
|
MARKETING_VERSION = 2024.3
|
||||||
CURRENT_PROJECT_VERSION = 126
|
CURRENT_PROJECT_VERSION = 125
|
||||||
CURRENT_PROJECT_VERSION = $(inherited)$(CURRENT_PROJECT_VERSION_BUILD_SUFFIX_$(CONFIGURATION))
|
CURRENT_PROJECT_VERSION = $(inherited)$(CURRENT_PROJECT_VERSION_BUILD_SUFFIX_$(CONFIGURATION))
|
||||||
|
|
||||||
CURRENT_PROJECT_VERSION_BUILD_SUFFIX_Debug=-dev
|
CURRENT_PROJECT_VERSION_BUILD_SUFFIX_Debug=-dev
|
||||||
|
|
Loading…
Reference in New Issue