Skip to content

Commit

Permalink
Merge branch 'release/0.8.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
mangerlahn committed Oct 3, 2022
2 parents 64b84e9 + 3f68e1d commit 01c08df
Show file tree
Hide file tree
Showing 45 changed files with 2,325 additions and 377 deletions.
3 changes: 0 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
[submodule "Frameworks/Sparkle"]
path = Frameworks/Sparkle
url = https://github.com/sparkle-project/Sparkle.git
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Unreleased Changes
# 0.8.3
- Language Support for Catalan (Thanks Maite!)
- Language Support for Dutch (Thanks Eitot!)
- Language Support for Greek (Thanks Efthymis!)
- Language Support for Spanish (Thanks Darío!)
- Language Support for Simplified Chinese
- Hopefully fixed some crashes around updating apps.

# 0.8.2
- Language Support for Portuguese (Thanks Filipe!)
- It should also fix a crash on launch occurring on macOS 10.13. Sorry about that!

# 0.8.1
#### New and Improved:
Expand Down
1 change: 0 additions & 1 deletion Frameworks/Sparkle
Submodule Sparkle deleted from 286edd
158 changes: 116 additions & 42 deletions Latest.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

56 changes: 28 additions & 28 deletions Latest/Interface/Base.lproj/Main.storyboard

Large diffs are not rendered by default.

17 changes: 9 additions & 8 deletions Latest/Interface/Views/UpdateButtonCell.swift
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,7 @@ class UpdateButtonCell: NSButtonCell {

// Start a display link that continuously updates the activity indicator
if self.contentType == .indeterminate {
displayLink = DisplayLink(duration: nil, callback: { frame in
self.view.needsDisplay = true
})
displayLink?.start()
self.startDisplayLink(withDuration: nil)
} else {
self.displayLink = nil
}
Expand Down Expand Up @@ -69,13 +66,17 @@ class UpdateButtonCell: NSButtonCell {
}

self._oldUpdateProgress = oldValue
displayLink = DisplayLink(duration: 0.2, callback: { frame in
self.view.needsDisplay = true
})
displayLink?.start()
self.startDisplayLink(withDuration: 0.2)
}
}

private func startDisplayLink(withDuration duration: Double?) {
displayLink = DisplayLink(duration: duration, callback: { [weak self] frame in
self?.view.needsDisplay = true
})
displayLink?.start()
}


// MARK: - Interface Updates

Expand Down
42 changes: 42 additions & 0 deletions Latest/Interface/ar.lproj/Main.strings
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@

/* Class = "NSTextFieldCell"; title = "<dnl>"; ObjectID = "6va-ld-AXD"; */
"6va-ld-AXD.title" = "<dnl>";

/* Class = "NSWindow"; title = "<dnl>"; ObjectID = "IQv-IB-iLA"; */
"IQv-IB-iLA.title" = "<dnl>";

/* Class = "NSTextFieldCell"; title = "<dnl>"; ObjectID = "6YS-DP-XWA"; */
"6YS-DP-XWA.title" = "<dnl>";

/* Class = "NSTextFieldCell"; title = "<dnl>"; ObjectID = "SVA-bh-cUe"; */
"SVA-bh-cUe.title" = "<dnl>";

/* Class = "NSTextFieldCell"; title = "<dnl>"; ObjectID = "UPY-HP-f2p"; */
"UPY-HP-f2p.title" = "<dnl>";

/* Class = "NSTextFieldCell"; title = "<dnl>"; ObjectID = "VX8-qg-UOL"; */
"VX8-qg-UOL.title" = "<dnl>";

/* Class = "NSTextFieldCell"; title = "<dnl>"; ObjectID = "rK6-RZ-Ga6"; */
"rK6-RZ-Ga6.title" = "<dnl>";

/* Class = "NSTextFieldCell"; title = "Current Version"; ObjectID = "h6g-FG-nGh"; */
"h6g-FG-nGh.title" = "<dnl>";

/* Class = "NSTextFieldCell"; title = "<dnl>"; ObjectID = "uWn-a0-oM2"; */
"uWn-a0-oM2.title" = "<dnl>";

/* Class = "NSButtonCell"; title = "<dnl>"; ObjectID = "Gw7-NE-1lh"; */
"Gw7-NE-1lh.title" = "<dnl>";

/* Class = "NSTextFieldCell"; title = "<dnl>"; ObjectID = "NNm-bC-QYz"; */
"NNm-bC-QYz.title" = "<dnl>";

/* Class = "NSButtonCell"; title = "<dnl>"; ObjectID = "QRR-k0-TZ4"; */
"QRR-k0-TZ4.title" = "<dnl>";

/* Class = "NSMenuItem"; title = "Find and Replace…"; ObjectID = "1Gu-Ep-ZWZ"; */
"1Gu-Ep-ZWZ.title" = "";

/* Class = "NSMenuItem"; title = "Update"; ObjectID = "00n-xr-jcQ"; */
"00n-xr-jcQ.title" = "التحديث";
Loading

0 comments on commit 01c08df

Please sign in to comment.