Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Update documentation for .NET 9 and MAUI #957

Open
wants to merge 17 commits into
base: gh-pages
Choose a base branch
from

Conversation

YBTopaz8
Copy link
Member

@YBTopaz8 YBTopaz8 commented Mar 4, 2025

This PR comprehensively updates the Parse .NET SDK documentation to align with the recent .NET 9 and MAUI support. These changes are made in the spirit of fostering an open, welcoming, and collaborative community, as outlined in our Contributor Covenant Code of Conduct.

Changes include:

  • Revised "Getting Started" guide for .NET 9 / MAUI.
  • Updated code examples to use ParseClient.Instance and current APIs.
  • Clarified MAUI-specific initialization and usage patterns.
  • Removed references to deprecated platforms and features (e.g., Xamarin, Facebook Utils).
  • Improved explanations of key concepts (Objects, Queries, Users, Roles, Files, Analytics).
  • Added best practices for asynchronous operations and error handling.
  • Addressed several inaccuracies and omissions in the previous documentation.

YBTopaz8 added 3 commits March 4, 2025 00:17
- Initial Setups Added
- Used `ParseClient.Instance` for simplicity's sake.
Updated the instructions on Parse RegisterSubClass, indicating the best order to use for Init.

- Removed info on Progress reporting (WIP..)

More changes on comments.
@YBTopaz8
Copy link
Member Author

YBTopaz8 commented Mar 7, 2025

Pretty happy with the docs as of now.
I think it covers all we need and a little more.
More coming too after testing!

Copy link
Member

@mtrezza mtrezza left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry, took a while to review... it looks good, just what has been changed in the asses/symbols.svg file?

@mtrezza
Copy link
Member

mtrezza commented Mar 27, 2025

Thanks for this PR; It takes a while to review this, because of its size. I've completed the files.md and analytics.md files. Just a quick feedback for future edits: I often find two whitespaces between sentences in your edits, not sure if that's your writing style or a technical auto-format issue. I also see a lot of cursive and bold usage, I'm trimming that down as well. We do not mention unrelated 3rd parties or company names (even if they are popular) in doc examples. I'm working my way through it, thanks for your patience.

@mtrezza
Copy link
Member

mtrezza commented Apr 1, 2025

@YBTopaz8 Have some of the docs changes been written by AI? The changes look quite strange at some places, and there are many changes that do not add much value, they are mere rewordings, making this a lot of unnecessary work to review. Also the formatting looks quite strange in many places.

@YBTopaz8
Copy link
Member Author

YBTopaz8 commented Apr 1, 2025

Besides visual studio code's, Auto complete, I'd say no.

AI can't help since the syntax is now quite different.

Are there any inconsistencies you'd like for me to check?

I'll rapidly fix them as I do have some time if it helps

@mtrezza
Copy link
Member

mtrezza commented Apr 1, 2025

Interesting. No worries, I'll review this, you have had a lot of work already with the SDK refactor. Just for future PRs I'd like to point out that a change like this adds little value but it makes reviewing quite time consuming. And there are many of these. I understand that there may be semantic preferences, but if we go after that we'd be constantly rewriting the docs as everyone has a slightly different preference. We generally pursue a "least changes PR policy" - only change what's necessary to speed up review time.

- Storing data on Parse is built around the `ParseObject`. Each `ParseObject` contains key-value pairs of JSON-compatible data. This data is schemaless, which means that you don't need to specify ahead of time what keys exist on each `ParseObject`. You simply set whatever key-value pairs you want, and our backend will store it.
+ Data storage in Parse is centered around the `ParseObject`.  Each `ParseObject` holds key-value pairs of JSON-compatible data.  This data is schemaless, meaning you don't predefine keys. You set key-value pairs, and the backend stores them.

@YBTopaz8
Copy link
Member Author

YBTopaz8 commented Apr 1, 2025

Very very well noted.
Sorry for the hiccups.

I'll be ensuring the next rounds are better.

Still learning how things are structured doc-wise :)

(And thank you for your patience!)

Copy link
Member

@mtrezza mtrezza left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you please revert any unnecessary wording changes in these files:

  • _includes/dotnet/objects.md
  • _includes/dotnet/queries.md
  • _includes/dotnet/roles.md
  • _includes/dotnet/users.md

There are also several formatting errors such as lists with spaces before the bullet point item, or double space between sentences. If you revert the wording, they should largely disappear anyway. There may be parts where you feel that a rewording or restructuring of the text makes sense, but they should be justifiable, beyond semantic preference. Also, if you feel that introducing new headings makes the docs easier to navigate, please feel free to add/keep them; I see you have added some.

The other files are good, apart from a few minor formatting issues that I'll correct now.

Comment on lines +79 to +80
// IMPORTANT: Change "parseXAMARIN/.NET MAUIpushsample" to match your namespace.
[Application(Name = "parseXAMARIN/.NET MAUIpushsample.ParseApplication")]
Copy link
Member

@mtrezza mtrezza Apr 1, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this really a recommendable app name, with spaces and special chars like dot and slash? Looks like you did a find/replace here. Maybe keep it simple:

Suggested change
// IMPORTANT: Change "parseXAMARIN/.NET MAUIpushsample" to match your namespace.
[Application(Name = "parseXAMARIN/.NET MAUIpushsample.ParseApplication")]
// Important: change "parsepushexample" to match your namespace
[Application(Name = "parsepushexample.ParseApplication")]

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Underscores or no spaces!
My fault here, for not checking that one after doing a quick replacement of Xamarin to MAUI.

On that!

Comment on lines +5 to +7
platform: dotnet/dotnet MAUI
language: csharp
display_platform: .NET MAUI
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What effect do these changes have? I'm not sure how the docs are compiled and how these params are used, but to make sure we understand why we're changing these.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The aim is to lay more emphasis on the fact that Maui is supported too. As Maui is quite new and not very "known", it's really to put it on a spotlight.

Otherwise, it can be removed.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But what do these parameters do? What are the effects if we change them? I'm unsure but they don't seem to be just text but be part of a logic.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Text that affects this.
Title will change the title in the browser tab, the rest we can revert
Though I'd argue setting display_platform as .NET/MAUI or something will be good. Else, it's still fine.
image

@YBTopaz8
Copy link
Member Author

YBTopaz8 commented Apr 1, 2025

All Good

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants