fluncle 0.79.0 → 0.80.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 +9 -5
- package/package.json +1 -1
package/bin/fluncle.mjs
CHANGED
|
@@ -558,7 +558,7 @@ function parseVersion(version) {
|
|
|
558
558
|
var currentVersion;
|
|
559
559
|
var init_version = __esm(() => {
|
|
560
560
|
init_output();
|
|
561
|
-
currentVersion = "0.
|
|
561
|
+
currentVersion = "0.80.0".trim() ? "0.80.0".trim() : "0.1.0";
|
|
562
562
|
});
|
|
563
563
|
|
|
564
564
|
// src/update-notifier.ts
|
|
@@ -982,6 +982,7 @@ function mapTrack(track) {
|
|
|
982
982
|
videoGrain: track.videoGrain,
|
|
983
983
|
videoModel: track.videoModel,
|
|
984
984
|
videoModelReasoning: track.videoModelReasoning,
|
|
985
|
+
videoRegister: track.videoRegister,
|
|
985
986
|
videoUrl: track.videoUrl,
|
|
986
987
|
videoVehicle: track.videoVehicle
|
|
987
988
|
};
|
|
@@ -1952,6 +1953,7 @@ function mapTrack2(track) {
|
|
|
1952
1953
|
videoGrain: track.videoGrain,
|
|
1953
1954
|
videoModel: track.videoModel,
|
|
1954
1955
|
videoModelReasoning: track.videoModelReasoning,
|
|
1956
|
+
videoRegister: track.videoRegister,
|
|
1955
1957
|
videoUrl: track.videoUrl,
|
|
1956
1958
|
videoVehicle: track.videoVehicle
|
|
1957
1959
|
};
|
|
@@ -2464,7 +2466,7 @@ function parseVersion2(version) {
|
|
|
2464
2466
|
var currentVersion2, latestReleaseUrl = "https://api.github.com/repos/mauricekleine/fluncle/releases/latest";
|
|
2465
2467
|
var init_version2 = __esm(() => {
|
|
2466
2468
|
init_output();
|
|
2467
|
-
currentVersion2 = "0.
|
|
2469
|
+
currentVersion2 = "0.80.0".trim() ? "0.80.0".trim() : "0.1.0";
|
|
2468
2470
|
});
|
|
2469
2471
|
|
|
2470
2472
|
// ../../packages/registry/src/index.ts
|
|
@@ -3229,7 +3231,8 @@ async function trackVideoCommand(idOrLogId, files, onProgress) {
|
|
|
3229
3231
|
videoModelReasoning,
|
|
3230
3232
|
...squared ? { squared: true } : {},
|
|
3231
3233
|
...manifest.vehicle ? { videoVehicle: manifest.vehicle } : {},
|
|
3232
|
-
...manifest.grain ? { videoGrain: manifest.grain } : {}
|
|
3234
|
+
...manifest.grain ? { videoGrain: manifest.grain } : {},
|
|
3235
|
+
...manifest.register ? { videoRegister: manifest.register } : {}
|
|
3233
3236
|
});
|
|
3234
3237
|
return { logId: finalize.logId, ok: true, trackId: finalize.trackId, urls };
|
|
3235
3238
|
}
|
|
@@ -3237,7 +3240,7 @@ async function readManifestFields(renderPath) {
|
|
|
3237
3240
|
try {
|
|
3238
3241
|
const manifest = await Bun.file(renderPath).json();
|
|
3239
3242
|
const result = {};
|
|
3240
|
-
for (const key of ["vehicle", "grain", "model", "reasoning"]) {
|
|
3243
|
+
for (const key of ["vehicle", "grain", "model", "reasoning", "register"]) {
|
|
3241
3244
|
const value = manifest[key];
|
|
3242
3245
|
if (typeof value === "string" && value.trim()) {
|
|
3243
3246
|
result[key] = value.trim().slice(0, 120);
|
|
@@ -3476,6 +3479,7 @@ async function vehiclesCommand(limit) {
|
|
|
3476
3479
|
artists: track.artists,
|
|
3477
3480
|
grain: track.videoGrain,
|
|
3478
3481
|
logId: track.logId,
|
|
3482
|
+
register: track.videoRegister,
|
|
3479
3483
|
title: track.title,
|
|
3480
3484
|
vehicle: track.videoVehicle
|
|
3481
3485
|
}));
|
|
@@ -5334,7 +5338,7 @@ function vehicleRows(rows) {
|
|
|
5334
5338
|
return Math.max(width, coordinate2(row).length);
|
|
5335
5339
|
}, 0);
|
|
5336
5340
|
return rows.map((row) => {
|
|
5337
|
-
return `${coordinate2(row).padEnd(coordWidth)} ${foundDate(row.addedAt)} ${row.vehicle ?? COORD_FALLBACK2}`;
|
|
5341
|
+
return `${coordinate2(row).padEnd(coordWidth)} ${foundDate(row.addedAt)} ${row.vehicle ?? COORD_FALLBACK2} · ${row.register ?? COORD_FALLBACK2}`;
|
|
5338
5342
|
});
|
|
5339
5343
|
}
|
|
5340
5344
|
function trackDetailLines(track) {
|
package/package.json
CHANGED