Skip to content

Commit

Permalink
Update onboarding
Browse files Browse the repository at this point in the history
  • Loading branch information
weiran committed Dec 4, 2021
1 parent 14ac5ad commit 832ce1c
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions App/Services/OnboardingService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,22 @@ enum OnboardingService {
}

private static func items() -> [WhatsNew.Item] {
let defaultBrowserItem = WhatsNew.Item(
title: "Disable swipe gestures",
subtitle: "Added a setting to disable all swipe gestures, you can long tap for a menu instead. Thanks to @ballwood for the contribution.",
image: UIImage(systemName: "hand.draw.fill")
let pullToRefreshItem = WhatsNew.Item(
title: "Pull to refresh comments",
subtitle: "Thanks @ballwood.",
image: UIImage(systemName: "arrow.clockwise")
)
return [defaultBrowserItem]
let shareCommentItem = WhatsNew.Item(
title: "Share comments",
subtitle: "Long press on a comment to share a direct link.",
image: UIImage(systemName: "bubble.left")
)
let bugfixesItem = WhatsNew.Item(
title: "Fixes and improvements",
subtitle: "Feedback emails work with third party email apps.\n\nThumbnail cache size limited to 100MB.",
image: UIImage(systemName: "checkmark.seal")
)
return [pullToRefreshItem, shareCommentItem, bugfixesItem]
}
}

Expand Down

0 comments on commit 832ce1c

Please sign in to comment.