Merge branch 'Ranchero-Software:main' into improve-markdown

This commit is contained in:
descodess
2021-10-24 14:05:40 +02:00
committed by GitHub
333 changed files with 5019 additions and 20401 deletions

View File

@@ -1,5 +1,26 @@
# iOS Release Notes
### 6.0.1 TestFlight build 608 - 28 Aug 2021
Fixed our top crashing bug — it could happen when updating a table view
### 6.0.1 TestFlight build 607 - 21 Aug 2021
Fixed bug where BazQux-synced feeds might stop updating
Fixed bug where words prepended with $ wouldnt appear in Twitter feeds
Fixed bug where newlines would be just a space in Twitter feeds
Fixed a crashing bug in Twitter rendering
Fixed bug where hitting b key to open in browser wouldnt always work
Fixed a crashing bug due to running code off the main thread that needed to be on the main thread
Fixed bug where article unread indicator could have wrong alpha in specific circumstances
Fixed bug using right arrow key to move focus to Article view
Fixed bug where long press could trigger a crash
Fixed bug where external URLs in Feedbin feeds might be lost
Fixed bug where favicons wouldnt be found when a home page URL has non-ASCII characters
Fixed bug where iCloud syncing could stop prematurely when the sync database has records not in the local database
Fixed bug where creating a new folder in iCloud and moving feeds to it wouldnt sync correctly
### 6.0 TestFlight build 604 - 31 May 2021
This is a final candidate

35
Technotes/Themes.md Normal file
View File

@@ -0,0 +1,35 @@
# Themes
## `.nnwtheme` Structure
An `.nnwtheme` comprises of three files:
- `Info.plist`
- `template.html`
- `stylesheet.css`
### Info.plist
The `Info.plist` requires the following keys/types:
|Key|Type|Notes|
|---|---|---|
|`ThemeIdentifier`|`String`|Unique identifier for the theme, e.g. using reverse domain name.|
|`Name`|`String`|Theme name|
|`CreatorHomePage`|`String`||
|`CreatorName`|`String`||
|`Version`|`Integer`||
### template.html
This provides a starting point for editing the structure of the page. Theme variables are documented in the header.
### stylesheet.css
This provides a starting point for editing the style of the page.
## Add Themes Directly to NetNewsWire with URL Scheme
On iOS and macOS, themes can be opened directly in NetNewsWire using the below URL scheme:
`netnewswire://theme/add?url={url}`
When using this URL scheme the theme being shared must be zipped.
Parameters:
- `url`: (mandatory, URL-encoded): The theme's location.