Skip to content

Commit

Permalink
Add guidelines about RSS in the Aggregation UI
Browse files Browse the repository at this point in the history
  • Loading branch information
livid committed Sep 19, 2023
1 parent f9e82f7 commit a22eac9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Planet/versioning.xcconfig
Original file line number Diff line number Diff line change
@@ -1 +1 @@
CURRENT_PROJECT_VERSION = 1659
CURRENT_PROJECT_VERSION = 1660
8 changes: 4 additions & 4 deletions PlanetLite/Croptop/AggregationSettings.swift
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ struct AggregationSettings: View {

TextEditor(text: $newSites)
.font(.system(size: 13, weight: .regular, design: .default))
.lineSpacing(8)
.lineSpacing(4)
.disableAutocorrection(true)
.cornerRadius(6)
.frame(height: 80)
.frame(height: 120)
.overlay(
RoundedRectangle(cornerRadius: 6)
.stroke(Color.secondary.opacity(0.25), lineWidth: 1.0)
Expand All @@ -63,9 +63,9 @@ struct AggregationSettings: View {
.frame(width: CONTROL_CAPTION_WIDTH + 10)

Text(
"Please enter the sites you wish to aggregate, one per line. You can use ENS (Ethereum Name Service) or IPNS (InterPlanetary Name System) addresses."
"Please enter the sites you wish to aggregate, listing one per line. You can use ENS (Ethereum Name Service) or IPNS (InterPlanetary Name System) addresses. If you want to aggregate RSS, Atom, or JSON feeds, provide the full URL."
)
.lineLimit(2)
.lineLimit(4)
.font(.footnote)
.foregroundColor(.secondary)
.fixedSize(horizontal: false, vertical: true)
Expand Down

0 comments on commit a22eac9

Please sign in to comment.