Skip to content

Commit 9ef3e81

Browse files
authored
Merge pull request #226 from lo-cafe/alpha
Alpha
2 parents 3c13270 + ebdd069 commit 9ef3e81

103 files changed

Lines changed: 3398 additions & 460 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.idea/.gitignore

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

TestFlight/WhatToTest.en-US.txt

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
1-
A big update is coming soon, sorry for the wait.
1+
# Added
22

3-
--- QUICK EXPRESS UPDATE ---
4-
- Fixed subs order
5-
- Fixed subs filtering
6-
- Fixed favoriting subs not working properly
3+
- Live Text
4+
- Whats new Sheet
5+
- Lock the app
6+
- Theme Store
7+
- Subscribed indicator / button when searching for subs
8+
- Add settings import / export
9+
- Add line spacing option for themes
10+
- New comments indicator
11+
- Added flairs in comments
12+
13+
# Fixed
14+
15+
- "Streamable" videos now working
16+
- Blur nsfw when searching for subs
17+
- Default search sort in settings
18+
- Save sort per subreddit
19+
- Save comment search per port
20+
- Support for themable user flairs
21+
- Add theming for load more button
22+
23+
Special thanks to rbertus2000, mmynk, Nelson Dane, Zander Bobronnikov and ben-wheeler for contributing to this release!

TestFlight/changelog.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"title": "What's new in Winston",
3+
"version": "1.0.0",
4+
"features": [
5+
{
6+
"subtitle": "We've added a cool new What's New sheet!",
7+
"systemImage": "star",
8+
"title": "What's New sheet"
9+
},
10+
{
11+
"subtitle": "Want to copy text you see in an image? Now you can!",
12+
"systemImage": "text.viewfinder",
13+
"title": "Live Text"
14+
},
15+
{
16+
"subtitle": "You can now lock Winston with a pin or biometrics.",
17+
"systemImage": "lock",
18+
"title": "Lock Winston"
19+
},
20+
{
21+
"subtitle": "Download other peoples themes with the all new Theme Store.",
22+
"systemImage": "paintpalette",
23+
"title": "Theme Store"
24+
},
25+
{
26+
"subtitle": "Wait didn't I read this already? With new comments indicators you dont need to ask yourself this question anymore!",
27+
"systemImage": "person",
28+
"title": "New Comments Indicator"
29+
},
30+
{
31+
"subtitle": "Show some flair with...flairs! Winston now displays flairs in comments.",
32+
"systemImage": "flag",
33+
"title": "User Flairs in Comments"
34+
}
35+
],
36+
37+
}

managed/CachedSub+CoreDataProperties.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ extension CachedSub {
2828
@NSManaged public var icon_img: String?
2929
@NSManaged public var key_color: String?
3030
@NSManaged public var name: String?
31-
@NSManaged public var over_18: Bool
31+
@NSManaged public var over18: Bool
3232
@NSManaged public var primary_color: String?
3333
@NSManaged public var restrict_commenting: Bool
3434
@NSManaged public var subscribers: Double
@@ -51,7 +51,7 @@ extension CachedSub {
5151
self.allow_galleries = x.allow_galleries ?? false
5252
self.allow_images = x.allow_images ?? false
5353
self.allow_videos = x.allow_videos ?? false
54-
self.over_18 = x.over_18 ?? false
54+
self.over18 = x.over18 ?? false
5555
self.restrict_commenting = x.restrict_commenting ?? false
5656
self.user_has_favorited = x.user_has_favorited ?? false
5757
self.user_is_banned = x.user_is_banned ?? false

winston.entitlements

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>com.apple.developer.associated-domains</key>
6+
<array>
7+
<string>applinks:app.winston.lo.cafe</string>
8+
</array>
9+
</dict>
10+
</plist>

winston.xcodeproj/project.pbxproj

Lines changed: 160 additions & 6 deletions
Large diffs are not rendered by default.

winston.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

winston.xcodeproj/xcuserdata/daniel.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
endingColumnNumber = "9223372036854775807"
1717
startingLineNumber = "50"
1818
endingLineNumber = "50"
19-
landmarkName = "sort(_:)"
20-
landmarkType = "7">
19+
landmarkName = "body"
20+
landmarkType = "24">
2121
</BreakpointContent>
2222
</BreakpointProxy>
2323
</Breakpoints>

0 commit comments

Comments
 (0)