-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bc06b74
commit d0c4ea2
Showing
12 changed files
with
186 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
"src/**", | ||
"lib/**", | ||
"examples/**", | ||
"docs/**", | ||
".idea/**", | ||
"*.{html,jpg}", | ||
"cache.json" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
## 1.0.0-beta.4 (2022-10-23) | ||
|
||
* Refactor with underscore.js | ||
* Optionally set attributes to any nodes not only the first one | ||
* Added more docs | ||
|
||
## 1.0.0-beta.3 (2022-10-21) | ||
|
||
* Apply additional plugins to tree | ||
|
||
## 1.0.0-beta.2 (2022-10-20) | ||
|
||
* First beta release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
<body> | ||
<yield></yield> | ||
<stack name="modals"></stack> | ||
<stack name="scripts"></stack> | ||
</body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,29 @@ | |
in Swiss Alp by <a href="https://github.com/thewebartisan7" class="text-muted text-decoration-none fst-italic" target="_blank">@thewebartisan7</a> | ||
</div> | ||
</x-footer> | ||
|
||
<x-modal | ||
id="modalWithComponents" | ||
backdrop="true" | ||
computed:keyboard="true" | ||
computed:scrollable="false" | ||
computed:centered="true" | ||
computed:size="lg" | ||
computed:fullscreen="lg" | ||
aware:close="true" | ||
dialogClass="modal-dialog-custom" | ||
contentClass="modal-content-custom" | ||
> | ||
<x-modal.header> | ||
<h5 class="modal-title" id="modalWithComponentsLabel">Changelog</h5> | ||
</x-modal.header> | ||
|
||
<x-modal.body> | ||
<markdown src="changelog.md"></markdown> | ||
</x-modal.body> | ||
|
||
<x-modal.footer></x-modal.footer> | ||
</x-modal> | ||
</x-body> | ||
</x-html> | ||
|
||
|
@@ -47,34 +70,3 @@ | |
<push name="scripts"> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> | ||
</push> | ||
|
||
<push name="modals"> | ||
<x-modal | ||
id="modalWithComponents" | ||
backdrop="true" | ||
computed:keyboard="true" | ||
computed:scrollable="false" | ||
computed:centered="true" | ||
computed:size="lg" | ||
computed:fullscreen="lg" | ||
aware:close="true" | ||
dialogClass="modal-dialog-custom" | ||
contentClass="modal-content-custom" | ||
> | ||
<x-modal.header> | ||
<h5 class="modal-title" id="modalWithComponentsLabel">Changelog</h5> | ||
</x-modal.header> | ||
|
||
<x-modal.body> | ||
<p> | ||
All notable changes to this project will be documented in this file. | ||
The format is based on Keep a Changelog and this project adheres to Semantic Versioning. | ||
</p> | ||
|
||
<h5>[1.0.0-beta.2] - 2022.10.20</h5> | ||
<p>Initial release.</p> | ||
</x-modal.body> | ||
|
||
<x-modal.footer></x-modal.footer> | ||
</x-modal> | ||
</push> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
### 1.0.0-beta.4 (2022-10-23) | ||
|
||
* Refactor with underscore.js | ||
* Optionally set attributes to any nodes not only the first one | ||
* Added more docs | ||
|
||
### 1.0.0-beta.3 (2022-10-21) | ||
|
||
* Apply additional plugins to tree | ||
|
||
### 1.0.0-beta.2 (2022-10-20) | ||
|
||
* First beta release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters