Update feed URL

This commit is contained in:
Angelo Stavrow 2021-01-05 15:02:52 -05:00
parent d08daa95af
commit 749d5235e2
No known key found for this signature in database
GPG Key ID: 1A49C7064E060EEE
2 changed files with 6 additions and 6 deletions

View File

@ -2,10 +2,6 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>SUFeedURL</key>
<string>https://files.writefreely.org/apps/mac/appcast.xml</string>
<key>SUPublicEDKey</key>
<string>xLenuurDaQb2/dj2ScylLmJx0gSnBmacUsOAgUjErUc=</string>
<key>ATSApplicationFontsPath</key>
<string>.</string>
<key>CFBundleDevelopmentRegion</key>
@ -32,5 +28,9 @@
<string>public.app-category.social-networking</string>
<key>LSMinimumSystemVersion</key>
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
<key>SUFeedURL</key>
<string>https://writefreely-files.s3.amazonaws.com/apps/mac/appcast.xml</string>
<key>SUPublicEDKey</key>
<string>xLenuurDaQb2/dj2ScylLmJx0gSnBmacUsOAgUjErUc=</string>
</dict>
</plist>

View File

@ -2,8 +2,8 @@ import SwiftUI
import Sparkle
enum AppcastFeedUrl: String {
case release = "https://files.writefreely.org/apps/mac/appcast.xml"
case beta = "https://files.writefreely.org/apps/mac/appcast-beta.xml"
case release = "https://writefreely-files.s3.amazonaws.com/apps/mac/appcast.xml"
case beta = "https://writefreely-files.s3.amazonaws.com/apps/mac/appcast-beta.xml"
}
struct MacUpdatesView: View {