Fix storage secrets are writeable on macOS again by adding groupId in constructor

codemagic-setup
Hank Grabowski 2023-03-22 17:33:35 -04:00
rodzic 60f250b12a
commit e4047d4ffb
2 zmienionych plików z 34 dodań i 12 usunięć

Wyświetl plik

@ -1,12 +1,21 @@
# Relatica Change Log
## Unreleased Updates
* Changes
* Uses "Sentence Capitalization" keyboard to have shift on for first letter of beginning of each
sentence.
* Fixes
* New Features
## Version 0.3.0 (beta), 22 March 2023
* Changes
* New post/comment display format
* Comments only show up in post detailed view
* Clicking on "Comments" stats loads the post comment view
* Moved the utility buttons from the bottom of the post/comment to a popup menu on the upper right
* Moved the utility buttons from the bottom of the post/comment to a popup menu on the upper
right
* Show visibility of images in the gallery
* Notifications now show truncated post bodies not the full body
* Sort the notifications by unread by category and then unread chronological so:
@ -20,32 +29,39 @@
* Proper paging of notifications on refresh
* Drawer stability issues on Contacts Screen
* Eliminated excessive cropping of top of Contacts Screen
* Can go to account profiles of accounts never seen before from the Interactions Screen (list of which accounts,
* Can go to account profiles of accounts never seen before from the Interactions Screen (list of
which accounts,
liked, reshared, etc)
* Notifications refreshing more stable
* New Features
* Post/Comment Editing
* Being able to set the posts as private and a single group it is visible to (or "Followers", the default)
* Being able to set the posts as private and a single group it is visible to (or "Followers",
the default)
* Link Previews
* Use actual follow requests system not the "follow requests" in notifications if account is on server running
* Use actual follow requests system not the "follow requests" in notifications if account is on
server running
Friendica 2023.03 or later
* Server side search of: hashtags, statuses, and accounts
* Direct loading of status or account URL within the app so it renders within the Friendica network to allow for
* Direct loading of status or account URL within the app so it renders within the Friendica
network to allow for
interactions, commenting on, making follow requests of accounts, etc.
## Version 0.2.0 (beta), 15 March 2023
* Changes
* Uses Google's Material 3 UI instead of Material 2
* Drawer idiom replaces the menu screen idiom. Drawer contains list of logged in accounts at the top to quickly
* Drawer idiom replaces the menu screen idiom. Drawer contains list of logged in accounts at the
top to quickly
switch between, followed by the menu items previously on the menu screen.
* "Sign In Screen" now also the "Manage Accounts" screen
* Username/password settings split the username/servername field so can use the email address as the login like
* Username/password settings split the username/servername field so can use the email
address as the login like
with
the website
* Have sections listing logged in and logged out accounts.
* Can permanently delete previous credentials if no longer want them.
* Added back swiping down for refresh on timelines, notifications, and contacts. Also changed the progress indicator
* Added back swiping down for refresh on timelines, notifications, and contacts. Also changed
the progress indicator
to be a linear bar at the top
* Unread notifications counts no longer appear.
* "New Post" button is now a floating action button at the bottom right of the timeline
@ -57,7 +73,8 @@
* Added paging to notifications
* Ability to list who liked or reshared a post by clicking on the respective summary.
* Unread direct messages indicators show up in the notifications panel
* Data Pages manager allows for re-requesting data from server based on previous calls. Currently used only for
* Data Pages manager allows for re-requesting data from server based on previous calls.
Currently used only for
notifications.
## Version 0.1.0b3 (beta), 30 January 2023
@ -71,20 +88,23 @@
* "Groups (Lists)" (formerly "Group")
* Group timeline names are sorted alphabetically rather than in creation order
* Fixes
* Older Android Releases (5.0, 6.0, 7.0) LetsEncrypt certificate issue fixed by including certificate manually
* Older Android Releases (5.0, 6.0, 7.0) LetsEncrypt certificate issue fixed by including
certificate manually
* In Gallery mode single-clicking on the image brings up the Image View Screen
* Icon white boundary issues on iOS and Android
* Keyboard type on login screen for username field is now "email" type
* New Features
* A combined network status/refresh icon on timeline, notifications, and gallery panel
* More detailed user profile screen for users which now includes things like their description, handle and common
* More detailed user profile screen for users which now includes things like their description,
handle and common
name, etc.
* Paging in gallery list to incremental load of larger galleries (also sorted newest first)
* Image View Screen has a Carousel feature for swiping through images of a post, gallery, etc.
* Can copy post/comment Raw HTML text, image descriptions, and Direct Message text content
* Copy icon on posts, comments, image descriptions
* Long-press to copy on Direct messages
* Dialog Box "Menu" on posts/comments to more easily decide to navigate to it internally (Posts only), open in the
* Dialog Box "Menu" on posts/comments to more easily decide to navigate to it internally (Posts
only), open in the
system's default browser, or copy the URL
## Version 0.1.0b2 (beta), 27 January 2023

Wyświetl plik

@ -248,6 +248,7 @@ class _EditorScreenState extends State<EditorScreen> {
readOnly: isSubmitting,
enabled: !isSubmitting && canSpoilerText,
controller: spoilerController,
textCapitalization: TextCapitalization.sentences,
decoration: InputDecoration(
labelText: canSpoilerText
? '$statusType Spoiler Text (optional)'
@ -332,6 +333,7 @@ class _EditorScreenState extends State<EditorScreen> {
focusNode: focusNode,
readOnly: isSubmitting,
enabled: !isSubmitting,
textCapitalization: TextCapitalization.sentences,
maxLines: 10,
controller: controller,
decoration: InputDecoration(