Skip to content

Commit

Permalink
docs: Remove 1.3.0 pre-release marker
Browse files Browse the repository at this point in the history
  • Loading branch information
Danielku15 committed May 15, 2024
1 parent bad57b3 commit 1c50528
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/getting-started/installation-vite.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
import { SinceBadge } from '@site/src/components/SinceBadge';

<SinceBadge since="1.3.0-alpha.1005" />
<SinceBadge since="1.3.0" />

:::info
**TL;DR:** AlphaTab comes with a Vite plugin which should be added to your Vite config to guarantee compatibility.
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/installation-webpack.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
import { SinceBadge } from '@site/src/components/SinceBadge';

<SinceBadge since="1.3.0-alpha.945" />
<SinceBadge since="1.3.0" />

:::info
**TL;DR:** AlphaTab comes with a WebPack 5 plugin which should be added to your WebPack config to guarantee compatibility.
Expand Down
4 changes: 2 additions & 2 deletions docs/reference/api/downloadmidi.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ description: Generates an SMF1.0 file and downloads it
sidebar_custom_props:
javaScriptOnly: true
category: Methods - Core
since: 1.3.0-alpha.720
since: 1.3.0
---

import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
import { SinceBadge } from '@site/src/components/SinceBadge';

<SinceBadge since="1.3.0-alpha.720" />
<SinceBadge since="1.3.0" />

import {TypeTable, TypeRow} from '@site/src/components/TypeTable';
import {ParameterTable, ParameterRow} from '@site/src/components/ParameterTable';
Expand Down
4 changes: 2 additions & 2 deletions docs/reference/api/midieventsplayed.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ audio playback elements like notes/rests played or metronome ticks.

Refer to the [related guide](/docs/guides/handling-midi-events) to learn more about this feature.

Also note that the provided data models changed significantly in `1.3.0-alpha.720`. We try to provide backwards compatibility
Also note that the provided data models changed significantly in `1.3.0`. We try to provide backwards compatibility
until some extend but highly encourage changing to the new models in case of problems.


Expand Down Expand Up @@ -85,7 +85,7 @@ The base class for all midi events. Check the `type` property to find out which
<ParameterRow platform="all" name="command" type="alphaTab.midi.MidiEventType">
The type of this event. (Deprecated since 1.3, use `type` instead)
</ParameterRow>
<ParameterRow platform="all" name="type" type="alphaTab.midi.MidiEventType" since="1.3.0-alpha.720">
<ParameterRow platform="all" name="type" type="alphaTab.midi.MidiEventType" since="1.3.0">
The type of this event.
</ParameterRow>
<ParameterRow platform="all" name="data1" type="number">
Expand Down
4 changes: 2 additions & 2 deletions docs/reference/settings/player/outputmode.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ description: The mode used for playing audio samples
sidebar_custom_props:
javaScriptOnly: true
category: Player - JavaScript Specific
since: 1.3.0-alpha.946
since: 1.3.0
---
import { SinceBadge } from '@site/src/components/SinceBadge';

<SinceBadge since="1.3.0-alpha.94" />
<SinceBadge since="1.3.0" />

import { PropertyDescription } from '@site/src/components/PropertyDescription';
import {TypeTable, TypeRow} from '@site/src/components/TypeTable';
Expand Down

0 comments on commit 1c50528

Please sign in to comment.