Skip to content

Commit 7fbfabf

Browse files
committed
Update AvalynxLoader to version 0.0.3
Updated all references, examples, and documentation to reflect the new AvalynxLoader version 0.0.3. Ensured consistency across files, including README, package.json, and changelog.
1 parent d87ca77 commit 7fbfabf

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# AvalynxLoader Changelog
22

3-
## 0.0.2
3+
## 0.0.3
44
- [x] assetscomposer.json added
55

66
## 0.0.1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Replace `path/to/avalynx-loader.js` with the actual path to the file in your pro
4141
AvalynxLoader is also available via [jsDelivr](https://www.jsdelivr.com/). You can include it in your project like this:
4242

4343
```html
44-
<script src="https://cdn.jsdelivr.net/npm/avalynx-loader@0.0.2/dist/js/avalynx-loader.min.js"></script>
44+
<script src="https://cdn.jsdelivr.net/npm/avalynx-loader@0.0.3/dist/js/avalynx-loader.min.js"></script>
4545
```
4646

4747
## Installation via NPM ([Link](https://www.npmjs.com/package/avalynx-loader))

examples/loader-for-2-elements.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.9/build/styles/stackoverflow-light.min.css" id="hljsTheme">
1717
<script>hljs.highlightAll();</script>
1818

19-
<!-- AvalynxLoader 0.0.2 -->
20-
<script src="https://cdn.jsdelivr.net/npm/avalynx-loader@0.0.2/dist/js/avalynx-loader.min.js"></script>
19+
<!-- AvalynxLoader 0.0.3 -->
20+
<script src="https://cdn.jsdelivr.net/npm/avalynx-loader@0.0.3/dist/js/avalynx-loader.min.js"></script>
2121

2222
<!-- Example helper -->
2323
<link href="./css/helper.css" rel="stylesheet">

examples/loader-for-3-elements-with-load-button.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.9/build/styles/stackoverflow-light.min.css" id="hljsTheme">
1717
<script>hljs.highlightAll();</script>
1818

19-
<!-- AvalynxLoader 0.0.2 -->
20-
<script src="https://cdn.jsdelivr.net/npm/avalynx-loader@0.0.2/dist/js/avalynx-loader.min.js"></script>
19+
<!-- AvalynxLoader 0.0.3 -->
20+
<script src="https://cdn.jsdelivr.net/npm/avalynx-loader@0.0.3/dist/js/avalynx-loader.min.js"></script>
2121

2222
<!-- Example helper -->
2323
<link href="./css/helper.css" rel="stylesheet">

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "avalynx-loader",
33
"title": "AvalynxLoader",
44
"description": "AvalynxLoader is a lightweight JavaScript library designed to provide a loading overlay for DOM elements. Based on Bootstrap >=5.3 without any framework dependencies.",
5-
"version": "0.0.2",
5+
"version": "0.0.3",
66
"license": "MIT",
77
"main": "dist/js/avalynx-loader.js",
88
"module": "dist/js/avalynx-loader.esm.js",

src/js/avalynx-loader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* AvalynxLoader is a lightweight JavaScript library designed to provide a loading overlay for DOM elements. Based on Bootstrap >=5.3 without any framework dependencies.
55
*
6-
* @version 0.0.2
6+
* @version 0.0.3
77
* @license MIT
88
* @author https://github.com/avalynx/avalynx-loader/graphs/contributors
99
* @website https://github.com/avalynx/

0 commit comments

Comments
 (0)