fluncle 0.37.0 → 0.38.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 +2 -2
- package/package.json +1 -1
package/bin/fluncle.mjs
CHANGED
|
@@ -3602,7 +3602,7 @@ async function submitCommand(input) {
|
|
|
3602
3602
|
spotifyUrl: selected.spotifyUrl,
|
|
3603
3603
|
title: selected.title
|
|
3604
3604
|
});
|
|
3605
|
-
console.log("Logged.
|
|
3605
|
+
console.log("Logged. I'll give it a listen.");
|
|
3606
3606
|
}
|
|
3607
3607
|
async function selectCandidate(candidates) {
|
|
3608
3608
|
return await selectWithKeyboard(candidates, {
|
|
@@ -3789,7 +3789,7 @@ function parseVersion(version) {
|
|
|
3789
3789
|
var currentVersion, latestReleaseUrl = "https://api.github.com/repos/mauricekleine/fluncle/releases/latest";
|
|
3790
3790
|
var init_version = __esm(() => {
|
|
3791
3791
|
init_output();
|
|
3792
|
-
currentVersion = "0.
|
|
3792
|
+
currentVersion = "0.38.0".trim() ? "0.38.0".trim() : "0.1.0";
|
|
3793
3793
|
});
|
|
3794
3794
|
|
|
3795
3795
|
// src/commands/track.ts
|
package/package.json
CHANGED