Skip to content

Commit

Permalink
nothing really
Browse files Browse the repository at this point in the history
  • Loading branch information
tillt committed Jul 30, 2024
1 parent 8f95069 commit 532caad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
3 changes: 0 additions & 3 deletions PlayEm/AppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@ - (void)application:(NSApplication*)application openURLs:(NSArray<NSURL*>*)urls

- (void)applicationDidFinishLaunching:(NSNotification*)aNotification
{
NSLog(@"%@", [[NSUserDefaults standardUserDefaults] dictionaryRepresentation]);

[[[self waveController] window] makeKeyAndOrderFront:self];

NSUserDefaults* userDefaults = [NSUserDefaults standardUserDefaults];
Expand All @@ -67,7 +65,6 @@ - (void)applicationDidFinishLaunching:(NSNotification*)aNotification

- (void)applicationWillTerminate:(NSNotification*)aNotification
{
//NSLog(@"%@", [[NSUserDefaults standardUserDefaults] dictionaryRepresentation]);
}

@end
2 changes: 1 addition & 1 deletion PlayEm/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<key>CFBundleShortVersionString</key>
<string>1.5</string>
<key>CFBundleVersion</key>
<string>7062</string>
<string>7064</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.music</string>
<key>LSMinimumSystemVersion</key>
Expand Down
3 changes: 2 additions & 1 deletion PlayEm/Window & ViewControllers/WaveWindowController.m
Original file line number Diff line number Diff line change
Expand Up @@ -1495,7 +1495,8 @@ - (IBAction)openDocument:(id)sender

if ([openDlg runModal] == NSModalResponseOK) {
for(NSURL* url in [openDlg URLs]) {
[self loadDocumentFromURL:[WaveWindowController encodeQueryItemsWithUrl:url frame:0LL playing:YES] meta:nil];
[self loadDocumentFromURL:[WaveWindowController encodeQueryItemsWithUrl:url frame:0LL playing:YES]
meta:nil];
}
} else {
return;
Expand Down

0 comments on commit 532caad

Please sign in to comment.