Skip to content

Commit

Permalink
0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jschwind committed May 30, 2024
1 parent 794f149 commit 6e73231
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 12 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# AvalynxTable Changelog

## 0.0.3
- [x] optimizations in the project / composer added

## 0.0.2
- [x] Tests added
- [x] Filename fixed
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ Replace `path/to/avalynx-table.js` and `path/to/avalynx-table.css` with the actu
AvalynxTable is also available via [jsDelivr](https://www.jsdelivr.com/). You can include it in your project like this:

```html
<link href="https://cdn.jsdelivr.net/npm/avalynx-table@0.0.2/dist/css/avalynx-table.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/avalynx-table@0.0.2/dist/js/avalynx-table.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/avalynx-table@0.0.3/dist/css/avalynx-table.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/avalynx-table@0.0.3/dist/js/avalynx-table.min.js"></script>
```

Make sure to also include Bootstrap's JS/CSS in your project to ensure AvalynxTable displays correctly.
Expand Down
2 changes: 1 addition & 1 deletion dist/css/avalynx-table.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* A simple table system for web applications. Based on Bootstrap >=5.3 without any framework dependencies.
*
* @version 0.0.2
* @version 0.0.3
* @license MIT
* @author https://github.com/avalynx/avalynx-table/graphs/contributors
* @website https://github.com/avalynx/
Expand Down
2 changes: 1 addition & 1 deletion dist/js/avalynx-table.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* A simple table system for web applications. Based on Bootstrap >=5.3 without any framework dependencies.
*
* @version 0.0.2
* @version 0.0.3
* @license MIT
* @author https://github.com/avalynx/avalynx-table/graphs/contributors
* @website https://github.com/avalynx/
Expand Down
2 changes: 1 addition & 1 deletion dist/js/avalynx-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* A simple table system for web applications. Based on Bootstrap >=5.3 without any framework dependencies.
*
* @version 0.0.2
* @version 0.0.3
* @license MIT
* @author https://github.com/avalynx/avalynx-table/graphs/contributors
* @website https://github.com/avalynx/
Expand Down
6 changes: 3 additions & 3 deletions examples/table.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.9/build/styles/stackoverflow-light.min.css" id="hljsTheme">
<script>hljs.highlightAll();</script>

<!-- AvalynxTable 0.0.2 -->
<link href="https://cdn.jsdelivr.net/npm/avalynx-table@0.0.2/dist/css/avalynx-table.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/avalynx-table@0.0.2/dist/js/avalynx-table.min.js"></script>
<!-- AvalynxTable 0.0.3 -->
<link href="https://cdn.jsdelivr.net/npm/avalynx-table@0.0.3/dist/css/avalynx-table.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/avalynx-table@0.0.3/dist/js/avalynx-table.min.js"></script>

<!-- Example helper -->
<link href="./css/helper.css" rel="stylesheet">
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "avalynx-table",
"title": "AvalynxTable",
"description": "AvalynxTable is a simple table system for web applications. Based on Bootstrap >=5.3 without any framework dependencies.",
"version": "0.0.2",
"version": "0.0.3",
"license": "MIT",
"main": "dist/js/avalynx-table.js",
"module": "dist/js/avalynx-table.esm.js",
Expand Down
2 changes: 1 addition & 1 deletion src/css/avalynx-table.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* A simple table system for web applications. Based on Bootstrap >=5.3 without any framework dependencies.
*
* @version 0.0.2
* @version 0.0.3
* @license MIT
* @author https://github.com/avalynx/avalynx-table/graphs/contributors
* @website https://github.com/avalynx/
Expand Down
2 changes: 1 addition & 1 deletion src/js/avalynx-table.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* A simple table system for web applications. Based on Bootstrap >=5.3 without any framework dependencies.
*
* @version 0.0.2
* @version 0.0.3
* @license MIT
* @author https://github.com/avalynx/avalynx-table/graphs/contributors
* @website https://github.com/avalynx/
Expand Down
2 changes: 1 addition & 1 deletion src/js/avalynx-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* A simple table system for web applications. Based on Bootstrap >=5.3 without any framework dependencies.
*
* @version 0.0.2
* @version 0.0.3
* @license MIT
* @author https://github.com/avalynx/avalynx-table/graphs/contributors
* @website https://github.com/avalynx/
Expand Down

0 comments on commit 6e73231

Please sign in to comment.