fluncle 0.122.0 → 0.123.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/fluncle.mjs +4 -2
- package/package.json +1 -1
package/bin/fluncle.mjs
CHANGED
|
@@ -557,7 +557,7 @@ function parseVersion(version) {
|
|
|
557
557
|
var currentVersion;
|
|
558
558
|
var init_version = __esm(() => {
|
|
559
559
|
init_output();
|
|
560
|
-
currentVersion = "0.
|
|
560
|
+
currentVersion = "0.123.0".trim() ? "0.123.0".trim() : "0.1.0";
|
|
561
561
|
});
|
|
562
562
|
|
|
563
563
|
// src/update-notifier.ts
|
|
@@ -961,6 +961,7 @@ function mapTrack(track) {
|
|
|
961
961
|
addedToSpotify: track.addedToSpotify,
|
|
962
962
|
album: track.album,
|
|
963
963
|
albumImageUrl: track.albumImageUrl,
|
|
964
|
+
analyzedAt: track.analyzedAt,
|
|
964
965
|
analyzedFrom: track.analyzedFrom,
|
|
965
966
|
artists: track.artists,
|
|
966
967
|
bpm: track.bpm,
|
|
@@ -1718,6 +1719,7 @@ function mapTrack2(track) {
|
|
|
1718
1719
|
addedToSpotify: track.addedToSpotify,
|
|
1719
1720
|
album: track.album,
|
|
1720
1721
|
albumImageUrl: track.albumImageUrl,
|
|
1722
|
+
analyzedAt: track.analyzedAt,
|
|
1721
1723
|
analyzedFrom: track.analyzedFrom,
|
|
1722
1724
|
artists: track.artists,
|
|
1723
1725
|
bpm: track.bpm,
|
|
@@ -2255,7 +2257,7 @@ function parseVersion2(version) {
|
|
|
2255
2257
|
var currentVersion2, latestReleaseUrl = "https://api.github.com/repos/mauricekleine/fluncle/releases/latest";
|
|
2256
2258
|
var init_version2 = __esm(() => {
|
|
2257
2259
|
init_output();
|
|
2258
|
-
currentVersion2 = "0.
|
|
2260
|
+
currentVersion2 = "0.123.0".trim() ? "0.123.0".trim() : "0.1.0";
|
|
2259
2261
|
});
|
|
2260
2262
|
|
|
2261
2263
|
// ../../packages/registry/src/index.ts
|
package/package.json
CHANGED