Search found 14 matches

by LasVegas
Mon Feb 21, 2022 9:01 am
Forum: Bug Reports
Topic: Rename in 2.1b53
Replies: 3
Views: 3424

Re: Rename in 2.1b53

It momentarily changes in kJams, but then switches back. It doesn't change at all in Finder. If, I rename the entry while changing a single character and then change it back it will make the change in the OS. I suspect that it's the OS that ignores the change because the name doesn't change alphabet...
by LasVegas
Mon Feb 21, 2022 8:27 am
Forum: Bug Reports
Topic: 2.1b53 Album pop-up in Unique Songs Playlist
Replies: 3
Views: 2554

Re: 2.1b53 Album pop-up in Unique Songs Playlist

I tried creating a new Unique Songs playlist and it did the same thing. That particular problem did change after relaunching after a restart though.
by LasVegas
Sun Feb 20, 2022 5:09 pm
Forum: Bug Reports
Topic: Playlists coming up all blank (filled with dashes)
Replies: 2
Views: 13147

Re: Playlists coming up all blank (filled with dashes)

I've seen this occur after removing songs from the playlist. The next time I enter the playlist, a number of the remaining songs have lost their info.
by LasVegas
Sun Feb 20, 2022 2:04 pm
Forum: Bug Reports
Topic: Rename in 2.1b53
Replies: 3
Views: 3424

Rename in 2.1b53

Using the menu options, Advanced: Title Case, Capital Case and Album Name All Caps no longer function.

I’ve run into this in Mac OS before. Since the spelling doesn’t change, Mac OS ignores the name change.
by LasVegas
Sun Feb 20, 2022 2:01 pm
Forum: Bug Reports
Topic: 2.1b53 Album pop-up in Unique Songs Playlist
Replies: 3
Views: 2554

2.1b53 Album pop-up in Unique Songs Playlist

When trying to select Album in Unique Songs list: Assert Fail: listP, in file: '../../../../_source/Music/CPlayListItem.cpp' at line 829
by LasVegas
Sat Apr 25, 2015 3:42 pm
Forum: General
Topic: karaoke archiver
Replies: 53
Views: 30916

Re: karaoke archiver

The full code to replace the script in Automator is:

Code: Select all

for f in "$@"
do
	FILETYPE="${f##*.}"	
MP=mp3
CDG=cdg
	if ( [ "$FILETYPE" = "$MP" ] || [ "$FILETYPE" = "$CDG" ] );
	then
		FILEPATH="${f%.*}.zip"
		echo "$FILEPATH"
		echo "$f"
		zip -j -m "$FILEPATH" "$f";
	fi >/dev/null
done
LasVegas
by LasVegas
Thu Apr 23, 2015 5:26 pm
Forum: General
Topic: karaoke archiver
Replies: 53
Views: 30916

Re: karaoke archiver

DeusExMachina wrote:feel free to post your changes in /Code.
Sorry. I have no idea how to do that... :(

LasVegas
by LasVegas
Thu Apr 23, 2015 1:49 pm
Forum: General
Topic: karaoke archiver
Replies: 53
Views: 30916

Re: karaoke archiver

DeusExMachina wrote:But as a work around, you could always enclose the shell script in a try block.
Yep! That solved it. Just ignore the error. I just replaced the last line of the 'if' loop with:

Code: Select all

fi >/dev/null
Works great!

Las Vegas
by LasVegas
Thu Apr 23, 2015 11:25 am
Forum: General
Topic: karaoke archiver
Replies: 53
Views: 30916

Re: karaoke archiver

You're right. I am running it as a Service rather than a Folder Action. It is receiving the list of files in the folder and the results consist of the full path of the zip file (echo "$FILEPATH"), the file to be compressed (echo "$f") and the results of the zip action indicating compression %. This ...
by LasVegas
Thu Apr 23, 2015 12:02 am
Forum: General
Topic: karaoke archiver
Replies: 53
Views: 30916

Re: karaoke archiver

SOLVED! It simply required adding '.zip' to the end of FILEPATH used for naming the final zip file: for f in "$@" do FILETYPE="${f##*.}" MP=mp3 CDG=cdg if ( [ "$FILETYPE" = "$MP" ] || [ "$FILETYPE" = "$CDG" ] ); then FILEPATH="${f%.*}.zip" echo "$FILEPATH" echo "$f" zip -j -m "$FILEPATH" "$f"; fi do...
by LasVegas
Wed Apr 22, 2015 2:13 pm
Forum: General
Topic: karaoke archiver
Replies: 53
Views: 30916

Re: karaoke archiver

DeusExMachina, I know this is a very old thread, but I really need this script to work in 10.10 (Yosemite). The problem I had was that with the code, as written, any songs with periods within the name fail to compress. I modified the code as follows: for f in "$@" do FILETYPE="${f##*.}" MP=mp3 CDG=c...
by LasVegas
Sat Apr 18, 2015 2:19 pm
Forum: Q & A
Topic: Elapsed vs Remaining Time
Replies: 2
Views: 2308

Elapsed vs Remaining Time

I know that I can switch the Elapsed Time to Remaining Time in kJams simply by clicking the indicator to toggle it, but I have a friend that I convinced to upgrade to kJams on his Windows system where clicking it doesn't to the trick. Is there a keyboard hotkey or something to accomplish this in the...
by LasVegas
Tue Nov 18, 2014 10:26 am
Forum: Feature Requests
Topic: Jump to first record after pressing key
Replies: 5
Views: 5386

Re: Jump to first record after pressing key

Thanks Dave.

Of course, It really wouldn't be neccessary on all columns. Just the important ones like; Song Name, Artist and Album. A quick search by column selected would suffice. Perhaps with a toggle to enable column search rather than prefixing the search?

Tony
by LasVegas
Sun Nov 16, 2014 7:14 pm
Forum: Feature Requests
Topic: Jump to first record after pressing key
Replies: 5
Views: 5386

Re: Jump to first record after pressing key

Please Dave! Turn this back on in kJams 2! Ideally, I would like it to work like Finder (and I assume, iTunes) that if I press a short sequence of keys, it will jump to the first item of the sorted column starting with those letters. IE: Currently sorted by Artist, type 'led' quickly; The song "All ...