Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
aritchie committed Sep 20, 2024
1 parent 7f4bf48 commit bfa3363
Show file tree
Hide file tree
Showing 7 changed files with 51 additions and 59 deletions.
17 changes: 4 additions & 13 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -179,28 +179,19 @@ export default defineConfig({
items:[
{
label: 'Client',
items:[
{ label: 'v4.0', link: 'release-notes/client/v40' },
{ label: 'v3.0', link: 'release-notes/client/v30' },
]
link: 'release-notes/client'
},
{
label: 'Mediator',
items:[
{ label: 'v1.0', link: 'release-notes/mediator/v10' }
]
link: 'release-notes/mediator'
},
{
label: 'Framework',
items:[
{ label: 'v4.0', link: 'release-notes/framework/v40' }
]
link: 'release-notes/framework'
},
{
label: 'Server',
items:[
{ label: 'v2.0', link: 'release-notes/client/v20' },
]
link: 'release-notes/client'
}
]
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,34 @@
---
title: 3.0 Releases
title: Client Release
tableOfContents: false
---

import Aside from '../../../../components/Alert.tsx';
import RN from '../../../../components/ReleaseNote.astro';
import Aside from '../../../components/Alert.tsx';
import RN from '../../../components/ReleaseNote.astro';
import GitHubIssue from '../../../components/GitHubIssue.tsx';

# 4.0.0 - TBD 2024

## Core
* <RN type="enhancement" breaking={true}>Shiny will now only target .NET 8 or higher</RN>

## Push
* <RN type="enhancement" platform="iOS">You can now IFDEF IOS to get an AppleNotification that contains the raw NSDictionary</RN>
* <RN type="enhancement" platform="iOS">We now maintain our own Firebase FOCUSED (slim) binding that is used by Shiny.Push.FirebaseMessaging</RN>

## Locations
* <RN type="fix">The base GpsDelegate calculations could receive a batch and trigger multiple calculations. This has been made into a synchronized operation</RN>

## PLANNED
### Locations
* <RN type="enhancement" platform="iOS">GPS background will now request background permission right away</RN>

### Local Notifications
* <RN type="enhancement" breaking={true}>RequestAccess & RequestRequiredAccess(Notification) now return a NotificationAccessState which includes states for all the various permissions needed for a notification</RN>
* <RN type="enhancement">INotificationManager.GetCurrentAccess added which allows you to get current permission set without requesting access from user</RN>
* <RN type="enhancement" platform="iOS" breaking={true}>IAppleNotificationManager now allows more ways to control the native platform</RN>



# 3.3.3 - April 8, 2024

Expand Down
29 changes: 0 additions & 29 deletions src/content/docs/release-notes/client/v40.mdx

This file was deleted.

10 changes: 10 additions & 0 deletions src/content/docs/release-notes/framework.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: 4.0 Releases
tableOfContents: false
---

import Aside from '../../../components/Alert.tsx';
import RN from '../../../components/ReleaseNote.astro';

# 4.1.0
TODO
10 changes: 0 additions & 10 deletions src/content/docs/release-notes/framework/v40.mdx

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
---
title: 1.0 Releases
title: Shiny Mediator Releases
tableOfContents: false
---

import Aside from '../../../../components/Alert.tsx';
import RN from '../../../../components/ReleaseNote.astro';
import Aside from '../../../components/Alert.tsx';
import RN from '../../../components/ReleaseNote.astro';

# 2.0.0 - TBD
<RN type="feature">Blazor now supports offline and replay middleware</RN>
<RN type="enhancement">OpenApiGenerator now allows DateOnly, TimeOnly, and Stream results</RN>
<RN type="fix">OpenApiGenerator now tacks on global namespace to all object types</RN>
<RN type="fix">Registration source generator did not default the library namespace</RN>

# 1.8.1 - September 14, 2024
<RN type="fix">OpenApiGenerator was not writing return results if they were arrays</RN>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: v2.0
title: Server
---

# TODO

0 comments on commit bfa3363

Please sign in to comment.