3 Commits
0.2.0 ... main

Author SHA1 Message Date
8fbbb4f788 Bump version to 0.2.1 and update download URL
Incremented the module version from 0.2.0 to 0.2.1 and updated the corresponding download URL to reflect the new release. This ensures proper version tracking and correct download linkage for the updated module.
2025-02-03 07:57:27 -06:00
e6e8ae4f3f Fix incorrect Handlebars context reference in input names
Updated the Handlebars template to correctly reference the parent context for `item_id` using `../item_id` instead of `item_id`. This ensures the input field names are properly constructed within nested loops, avoiding potential data binding issues.
2025-02-03 07:55:52 -06:00
fb9eeba103 Rename log and manifest files in asset manager macros
- Renamed `000028.log` to `000041.log`
- Renamed `MANIFEST-000027` to `MANIFEST-000039`
- Updated binary files `CURRENT`, `LOG`, and `LOG.old`
2025-01-31 09:57:34 -06:00
7 changed files with 17 additions and 13 deletions

View File

@@ -1,8 +1,8 @@
{ {
"id": "asc-asset-manager", "id": "asc-asset-manager",
"title": "Asset Manager", "title": "Asset Manager",
"version": "0.2.0", "version": "0.2.1",
"download": "https://gitea.ascorrea.com/asc/asc-asset-manager/releases/download/0.2.0/module.zip", "download": "https://gitea.ascorrea.com/asc/asc-asset-manager/releases/download/0.2.1/module.zip",
"manifest": "https://gitea.ascorrea.com/asc/asc-asset-manager/releases/download/latest/module.json", "manifest": "https://gitea.ascorrea.com/asc/asc-asset-manager/releases/download/latest/module.json",
"compatibility": { "compatibility": {
"minimum": "12", "minimum": "12",

View File

@@ -1 +1 @@
MANIFEST-000027 MANIFEST-000039

View File

@@ -1,3 +1,7 @@
2025/01/23-08:35:35.351362 1728f3000 Recovering log #26 2025/01/29-15:45:18.681004 30ad38000 Recovering log #38
2025/01/23-08:35:35.351700 1728f3000 Delete type=3 #25 2025/01/29-15:45:18.681277 30ad38000 Delete type=0 #38
2025/01/23-08:35:35.351735 1728f3000 Delete type=0 #26 2025/01/29-15:45:18.681298 30ad38000 Delete type=3 #37
2025/01/29-15:46:39.436862 310dbb000 Level-0 table #42: started
2025/01/29-15:46:39.436930 310dbb000 Level-0 table #42: 0 bytes OK
2025/01/29-15:46:39.437031 310dbb000 Delete type=0 #40
2025/01/29-15:46:39.437558 310dbb000 Manual compaction at level-0 from '!macros!rdl3Dw3jRkibnQQC' @ 72057594037927935 : 1 .. '!macros!rdl3Dw3jRkibnQQC' @ 0 : 0; will stop at (end)

View File

@@ -1,3 +1,3 @@
2025/01/23-08:26:18.937414 170edb000 Recovering log #24 2025/01/27-20:40:12.716406 16fa73000 Recovering log #35
2025/01/23-08:26:18.937705 170edb000 Delete type=3 #23 2025/01/27-20:40:12.716718 16fa73000 Delete type=3 #33
2025/01/23-08:26:18.937733 170edb000 Delete type=0 #24 2025/01/27-20:40:12.716753 16fa73000 Delete type=0 #35

View File

@@ -11,14 +11,14 @@
<tbody> <tbody>
{{#each collection}} {{#each collection}}
<tr> <tr>
<td><input type="text" name="{{item_id}}-id-{{@index}}" value="{{id}}"></input></td> <td><input type="text" name="{{../item_id}}-id-{{@index}}" value="{{id}}"></input></td>
<td><input type="text" name="{{item_id}}-label-{{@index}}" value="{{label}}"></input></td> <td><input type="text" name="{{../item_id}}-label-{{@index}}" value="{{label}}"></input></td>
<td><button id="delete-row-{{@index}}" class="delete-row"><i class="delete-row fa-solid fa-trash-can"></i></button></td> <td><button id="delete-row-{{@index}}" class="delete-row"><i class="delete-row fa-solid fa-trash-can"></i></button></td>
</tr> </tr>
{{else}} {{else}}
<tr> <tr>
<td><input type="text" name="{{item_id}}-id-0" value="" placeholder="id"></input></td> <td><input type="text" name="{{../item_id}}-id-0" value="" placeholder="id"></input></td>
<td><input type="text" name="{{item_id}}-label-0" value="" placeholder="label"></input></td> <td><input type="text" name="{{../item_id}}-label-0" value="" placeholder="label"></input></td>
<td><button id="delete-row-0" class="delete-row"><i class="delete-row fa-solid fa-trash-can"></i></button></td> <td><button id="delete-row-0" class="delete-row"><i class="delete-row fa-solid fa-trash-can"></i></button></td>
</tr> </tr>
{{/each}} {{/each}}