Skip to content

Commit 63221bb

Browse files
committed
feat(docs): Remove beta notes
1 parent 95f09ae commit 63221bb

File tree

10 files changed

+22
-60
lines changed

10 files changed

+22
-60
lines changed

docs/src/pages/app-extensions/development-guide/index-api.md

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,6 @@ Contains the full path (String) to the root of the app on which this App Extensi
6161

6262
## api.compatibleWith
6363

64-
<q-badge label="@quasar/app v1.0.0-beta.18+" />
65-
6664
Ensure the App Extension is compatible with a package installed in the host app through a semver condition.
6765

6866
If the semver condition is not met, then @quasar/app errors out and halts execution.
@@ -79,8 +77,6 @@ api.compatibleWith('@quasar/app', '1.x')
7977

8078
## api.hasPackage
8179

82-
<q-badge label="@quasar/app v1.0.0-beta.18+" />
83-
8480
Determine if some package is installed in the host app through a semver condition.
8581

8682
Example of semver condition: `'1.x || >=2.5.0 || 5.0.0 - 7.2.3'`.
@@ -94,7 +90,7 @@ Example of semver condition: `'1.x || >=2.5.0 || 5.0.0 - 7.2.3'`.
9490
if (api.hasPackage('vuelidate')) {
9591
// hey, this app has it (any version of it)
9692
}
97-
if (api.hasPackage('quasar', '^1.0.0-beta.0')) {
93+
if (api.hasPackage('quasar', '^1.0.0')) {
9894
// hey, this app has v1 installed
9995
}
10096
```
@@ -116,8 +112,6 @@ if (api.hasExtension(extId)) {
116112

117113
## api.getPackageVersion
118114

119-
<q-badge label="@quasar/app v1.0.0-beta.18+" />
120-
121115
Get the version of a host app package.
122116

123117
```js
@@ -274,8 +268,6 @@ Always test with the `quasar describe` command to ensure you got the syntax righ
274268

275269
## api.getPersistentConf
276270

277-
<q-badge label="@quasar/app v1.0.0-beta.25+" />
278-
279271
Get the internal persistent config of this extension. Returns empty object if it has none.
280272

281273
```js
@@ -287,8 +279,6 @@ api.getPersistentConf()
287279

288280
## api.setPersistentConf
289281

290-
<q-badge label="@quasar/app v1.0.0-beta.25+" />
291-
292282
Set the internal persistent config of this extension. If it already exists, it is overwritten.
293283

294284
```js
@@ -302,8 +292,6 @@ api.setPersistentConf({
302292

303293
## api.mergePersistentConf
304294

305-
<q-badge label="@quasar/app v1.0.0-beta.25+" />
306-
307295
Deep merge into the internal persistent config of this extension. If extension does not have any config already set, this is essentially equivalent to setting it for the first time.
308296

309297
```js
@@ -317,8 +305,6 @@ api.mergePersistentConf({
317305

318306
## api.beforeDev
319307

320-
<q-badge label="@quasar/app v1.0.0-beta.18+" />
321-
322308
Prepare external services before `$ quasar dev` command runs, like starting some backend or any other service that the app relies on.
323309

324310
Can use async/await or directly return a Promise.
@@ -351,8 +337,6 @@ api.afterDev((api, { quasarConf }) => {
351337

352338
## api.beforeBuild
353339

354-
<q-badge label="@quasar/app v1.0.0-beta.16+" />
355-
356340
Run hook before Quasar builds app for production (`$ quasar build`). At this point, the distributables folder hasn't been created yet.
357341

358342
Can use async/await or directly return a Promise.

docs/src/pages/app-extensions/development-guide/install-api.md

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ Contains the full path (String) to the root of the app on which this App Extensi
4848

4949
## api.compatibleWith
5050

51-
<q-badge label="@quasar/app v1.0.0-beta.18+" />
52-
5351
Ensure the App Extension is compatible with a package installed in the host app through a semver condition.
5452

5553
If the semver condition is not met, then @quasar/app errors out and halts execution.
@@ -66,8 +64,6 @@ api.compatibleWith('@quasar/app', '1.x')
6664

6765
## api.hasPackage
6866

69-
<q-badge label="@quasar/app v1.0.0-beta.18+" />
70-
7167
Determine if some package is installed in the host app through a semver condition.
7268

7369
Example of semver condition: `'1.x || >=2.5.0 || 5.0.0 - 7.2.3'`.
@@ -81,7 +77,7 @@ Example of semver condition: `'1.x || >=2.5.0 || 5.0.0 - 7.2.3'`.
8177
if (api.hasPackage('vuelidate')) {
8278
// hey, this app has it (any version of it)
8379
}
84-
if (api.hasPackage('quasar', '^1.0.0-beta.0')) {
80+
if (api.hasPackage('quasar', '^1.0.0')) {
8581
// hey, this app has v1 installed
8682
}
8783
```
@@ -103,8 +99,6 @@ if (api.hasExtension(extId)) {
10399

104100
## api.getPackageVersion
105101

106-
<q-badge label="@quasar/app v1.0.0-beta.18+" />
107-
108102
Get the version of a host app package.
109103

110104
```js
@@ -223,8 +217,6 @@ Possibilities are limited only by your imagination.
223217

224218
## api.getPersistentConf
225219

226-
<q-badge label="@quasar/app v1.0.0-beta.25+" />
227-
228220
Get the internal persistent config of this extension. Returns empty object if it has none.
229221

230222
```js
@@ -236,8 +228,6 @@ api.getPersistentConf()
236228

237229
## api.setPersistentConf
238230

239-
<q-badge label="@quasar/app v1.0.0-beta.25+" />
240-
241231
Set the internal persistent config of this extension. If it already exists, it is overwritten.
242232

243233
```js
@@ -251,8 +241,6 @@ api.setPersistentConf({
251241

252242
## api.mergePersistentConf
253243

254-
<q-badge label="@quasar/app v1.0.0-beta.25+" />
255-
256244
Deep merge into the internal persistent config of this extension. If extension does not have any config already set, this is essentially equivalent to setting it for the first time.
257245

258246
```js

docs/src/pages/app-extensions/development-guide/uninstall-api.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,6 @@ The above example deletes "my-folder" from the root of the app.
7979

8080
## api.getPersistentConf
8181

82-
<q-badge label="@quasar/app v1.0.0-beta.25+" />
83-
8482
Get the internal persistent config of this extension. Returns empty object if it has none.
8583

8684
```js

docs/src/pages/options/rtl-support.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ To enable RTL UIs in UMD you need to include the RTL equivalent CSS tag for your
8686
<html>
8787
<head>
8888
...
89-
<!-- Replace "1.0.0-beta.0" (below) with your Quasar version. -->
90-
<link href="https://cdn.jsdelivr.net/npm/quasar@^1.0.0-beta.0/dist/quasar.rtl.min.css" rel="stylesheet" type="text/css">
89+
<!-- Replace "1.0.0" (below) with your Quasar version. -->
90+
<link href="https://cdn.jsdelivr.net/npm/quasar@^1.0.0/dist/quasar.rtl.min.css" rel="stylesheet" type="text/css">
9191
</head>
9292

9393
<body>
@@ -96,9 +96,9 @@ To enable RTL UIs in UMD you need to include the RTL equivalent CSS tag for your
9696
<!--
9797
We also need an RTL Quasar language pack; let's take Hebrew as an example;
9898
include this after Quasar JS tag;
99-
Replace "1.0.0-beta.0" (below) with your Quasar version.
99+
Replace "1.0.0" (below) with your Quasar version.
100100
-->
101-
<script src="https://cdn.jsdelivr.net/npm/quasar@^1.0.0-beta.0/dist/lang/he.umd.min.js"></script>
101+
<script src="https://cdn.jsdelivr.net/npm/quasar@^1.0.0/dist/lang/he.umd.min.js"></script>
102102
<script>
103103
Quasar.lang.set(Quasar.lang.he)
104104
</script>

docs/src/pages/quasar-cli/cli-documentation/supporting-ie.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ Running dev server on a Windows machine and consuming the output in IE11 might r
3636
If you are developing for UMD and want IE 11 support you will need to add the following HTML tag before the Vue and Quasar tags:
3737

3838
```
39-
<!-- replace 1.0.0-beta.16 with your version of Quasar -->
40-
<script src="https://cdn.jsdelivr.net/npm/quasar@1.0.0-beta.16/dist/quasar.ie.polyfills.umd.min.js"></script>
39+
<!-- replace "1.0.0" with your version of Quasar -->
40+
<script src="https://cdn.jsdelivr.net/npm/quasar@1.0.0/dist/quasar.ie.polyfills.umd.min.js"></script>
4141
```
4242

4343
## What does it do?

docs/src/pages/quasar-cli/developing-capacitor-apps/introduction.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,3 @@ desc: Introduction on one of the technologies behind Quasar hybrid mobile apps.
99
For running Capacitor mode you will need @quasar/app v1.2+ and also "quasar" v1.2+.
1010
:::
1111

12-
::: warning
13-
Capacitor support in Quasar CLI is currently in a short beta stage. Things may break, and you should not use this in a production environment yet. If you find any issues, please report them on the [Quasar Github Repo](https://github.com/quasarframework/quasar) after carefully reading these docs pages.
14-
:::

docs/src/pages/quasar-cli/developing-mobile-apps.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,4 @@ Capacitor was created by Ionic Framework as a more modern replacement for Cordov
1717
## More info
1818
Both tools enable you to run your website as a native app through a WebView. They both expose native device APIs to your JavaScript code, and allow you to write native code in the form of plugins, which can be called through JS. While Cordova supports a wide range of targets, Capacitor only supports iOS and Android.
1919

20-
::: warning Important
21-
Since Capacitor support in Quasar CLI is in beta stage, we currently recommend using **Cordova for production apps**.
22-
:::
23-
2420
Check the related links below to get started.

docs/src/pages/security/dos-and-donts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Although you may be tempted to use `eval()`, even if you know what you are doing
3030
![Don't be eval()](https://cdn.quasar.dev/img/dont-be-eval.png "Don't be eval()")
3131

3232
## Quasar Components
33-
Two Quasar components and two Plugins can be empowered to prevent the rendering of "insecure content". This is an opt-in feature (available starting in `quasar@1.0.0-beta.10`) that is performed by adding a `sanitize` type of boolean prop to the component. These components are discussed below.
33+
Two Quasar components and two Plugins can be empowered to prevent the rendering of "insecure content". This is an opt-in feature that is performed by adding a `sanitize` type of boolean prop to the component. These components are discussed below.
3434

3535
### QSelect
3636
If you are not customizing menu-related scoped-slots (i.e. `option` scoped slot), **DO** prevent the component from rendering HTML in the labels and sublabels with one or more of the `sanitize` properties. Generally speaking, this is not user-supplied data. If you are customizing this slot, it is your responsibility to do sanitization yourself.

docs/src/pages/start/umd.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,41 +27,41 @@ UMD is all about adding Quasar style and javascript tags. This is a full list. C
2727

2828
<!--
2929
Finally, add Quasar's CSS:
30-
Replace version below (1.0.3) with your desired version of Quasar.
30+
Replace version below (1.0.0) with your desired version of Quasar.
3131
Add ".rtl" for the RTL support (example: quasar.rtl.min.css).
3232
-->
33-
<link href="https://cdn.jsdelivr.net/npm/quasar@^1.0.3/dist/quasar.min.css" rel="stylesheet" type="text/css">
33+
<link href="https://cdn.jsdelivr.net/npm/quasar@^1.0.0/dist/quasar.min.css" rel="stylesheet" type="text/css">
3434
</head>
3535

3636
<body>
3737

38-
<!-- Do you want IE support? Replace "1.0.3" with your desired Quasar version -->
39-
<script src="https://cdn.jsdelivr.net/npm/quasar@^1.0.3/dist/quasar.ie.polyfills.umd.min.js"></script>
38+
<!-- Do you want IE support? Replace "1.0.0" with your desired Quasar version -->
39+
<script src="https://cdn.jsdelivr.net/npm/quasar@^1.0.0/dist/quasar.ie.polyfills.umd.min.js"></script>
4040

4141
<!-- You need Vue too -->
4242
<script src="https://cdn.jsdelivr.net/npm/vue@latest/dist/vue.min.js"></script>
4343

4444
<!--
4545
Add Quasar's JS:
46-
Replace version below (1.0.3) with your desired version of Quasar.
46+
Replace version below (1.0.0) with your desired version of Quasar.
4747
-->
48-
<script src="https://cdn.jsdelivr.net/npm/quasar@^1.0.3/dist/quasar.umd.min.js"></script>
48+
<script src="https://cdn.jsdelivr.net/npm/quasar@^1.0.0/dist/quasar.umd.min.js"></script>
4949

5050
<!--
5151
If you want to add a Quasar Language pack (other than "en-us").
5252
Notice "pt-br" in "i18n.pt-br.umd.min.js" for Brazilian Portuguese language pack.
53-
Replace version below (1.0.0-beta.0) with your desired version of Quasar.
53+
Replace version below (1.0.0) with your desired version of Quasar.
5454
Also check final <script> tag below to enable the language
5555
Language pack list: https://github.com/quasarframework/quasar/tree/dev/ui/lang
5656
-->
57-
<script src="https://cdn.jsdelivr.net/npm/quasar@^1.0.3/dist/lang/pt-br.umd.min.js"></script>
57+
<script src="https://cdn.jsdelivr.net/npm/quasar@^1.0.0/dist/lang/pt-br.umd.min.js"></script>
5858

5959
<!--
6060
If you want to make Quasar components (not your own) use a specific set of icons (unless you're using Material Icons already).
61-
Replace version below (1.0.3) with your desired version of Quasar.
61+
Replace version below (1.0.0) with your desired version of Quasar.
6262
Icon sets list: https://github.com/quasarframework/quasar/tree/dev/ui/icon-set
6363
-->
64-
<script src="https://cdn.jsdelivr.net/npm/quasar@^1.0.3/dist/icon-set/fontawesome-v5.umd.min.js"></script>
64+
<script src="https://cdn.jsdelivr.net/npm/quasar@^1.0.0/dist/icon-set/fontawesome-v5.umd.min.js"></script>
6565

6666
<script>
6767
// if using a Quasar language pack other than the default "en-us";

docs/src/pages/start/upgrade-guide.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ Simply replace the version string in all the CSS and JS tags that refer to Quasa
1717
```bash
1818
# run these commands inside
1919
# of a Quasar v1 project
20-
# (need global @quasar/cli to be >= 1.0.0-beta.3)
2120

2221
# check for upgradable packages
2322
$ quasar upgrade
@@ -208,11 +207,11 @@ $ npm install -g @quasar/cli
208207
209208
```bash
210209
Global packages
211-
@quasar/cli - 1.0.0-beta.0
210+
@quasar/cli - 1.0.0
212211

213212
Important local packages
214-
quasar - 1.0.0-beta.3 -- High performance, Material Design 2, full front end stack with Vue.js -- build SPA, SSR, PWA, Hybrid Mobile Apps and Electron apps, all simultaneously using the same codebase
215-
@quasar/app - 1.0.0-beta.5 -- Quasar Framework App CLI
213+
quasar - 1.0.0 -- High performance, Material Design 2, full front end stack with Vue.js -- build SPA, SSR, PWA, Hybrid Mobile Apps and Electron apps, all simultaneously using the same codebase
214+
@quasar/app - 1.0.0 -- Quasar Framework App CLI
216215
@quasar/extras - 1.0.0 -- Quasar Framework fonts, icons and animations
217216
```
218217

0 commit comments

Comments
 (0)