You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,11 @@ All notable changes starting with v0.1.34 to this project will be documented in
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
# v0.1.54 (2022-01-18)
9
+
-**added:** added `--update-animation-url` flag to `update-metadata`.
10
+
-**added:** added [instructions](docs/multiple_asset_files.md) for uploading with multiple asset files.
11
+
-**changed:** validate `<FILE_PATHS>` for `update-metadata` command as json and fix docs to specify json instead of assets.
12
+
8
13
# v0.1.53 (2022-01-12)
9
14
-**fixed:** Include files as objects with `uri` and `type` keys in the `files` key of the `properties` key when updating metadata files.
10
15
-**changed:** File objects are now appended to the `files` key with the `update-metadata` command and in order to update the `image` key, you have to pass the `--update-image` flag. This was done to make it possible to have multiple asset files and associated links for each NFT, in which case you can run `update-metadata` multiple times without the `--update-image` flag to append multiple links to the `files` key.
Copy file name to clipboardExpand all lines: README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,7 @@ Upload gigabytes of files with one command. Files are read and posted to [arweav
20
20
*[Pricing Comparison](#pricing-comparison)
21
21
*[Roadmap](#roadmap)
22
22
*[Transactions Prior to v0.1.51](#potential-issue-with-transactions-uploaded-prior-to-version-0.1.51)
23
+
*[Showing Love](#showing-love)
23
24
24
25
## Installation
25
26
@@ -436,3 +437,6 @@ file size | num files | arweave | bundlr | arweave total | bundlr total | arweav
436
437
437
438
## Potential Issue with Transactions Uploaded Prior to Version 0.1.51
438
439
The way arloader was formatting transactions for upload was not entirely compatible with the Arweave protocol prior to version 1.51. For transactions bigger than 256 KB it is possible that even though your transactions are visible and are showing more than 25 confirmations that they were not written to the Arweave blockchain. If you would like assistance determining whether your transactions were impacted, please open an issue and I will be happy to help, including paying for any necessary re-uploading.
440
+
441
+
## Showing Love
442
+
If arloader was useful and the spirit moves you, I'd love to have one of your NFTs in my collection: `F4B7659xdVcTqQEHShLsxp7w8wckMyBmT9GM8bGDqTUW`.
Copy file name to clipboardExpand all lines: docs/multiple_asset_files.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,11 +2,11 @@
2
2
3
3
There isn't a single command you can run if you have multiple media files per NFT, i.e., an mp4 and a png file. But you can run separate commands for each to get all of your files uploaded with your metadata files updated to include links to all of your media files.
4
4
5
-
Here is an example from a an upload of a series of glb and png files
5
+
Here is an example from a an upload of a series of glb and png files.
This will append the links from the manifest file to the `files` key in the metadata file. If you want to update the `image` key as well, pass the `--update-image` flag. Arloader defaults to using the id link (`https://arweave.net/<BUNDLE_ITEM_ID>`) for the `image` key, but you can pass the `--link-file` flag to use the file path based link. If you pass `--link-file`, the `files` key will get both the id based and file path based links appended.
101
+
This will append the links from the manifest file to the `files` key in the metadata file.Arloader defaults to using the id link (`https://arweave.net/<BUNDLE_ITEM_ID>`) for the `image` key, but you can pass the `--link-file` flag to use the file path based link. If you pass `--link-file`, the `files` key will get both the id based and file path based links appended.
102
+
103
+
If you want to update the `image` key as well, pass the `--update-image` flag. If you want to update the `animation_url` key as well, pass the `--update-animation-url` flag.
0 commit comments