Skip to content

Commit

Permalink
Remove windows support
Browse files Browse the repository at this point in the history
  • Loading branch information
jakub-tucek committed Nov 23, 2018
1 parent 1f65b9e commit 8bbfce5
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 289 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
"ps": "^1.0.0",
"request": "^2.74.0",
"spotify-node-applescript": "^1.1.1",
"spotilocal": "^0.4.4",
"toastr": "^2.1.2",
"vue": "^1.0.26",
"vue-class-component": "^3.2.0"
Expand Down
3 changes: 1 addition & 2 deletions render/SpotifyClientFactory.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import {SpotifyClient}from './api/SpotifyClient';
import {SpotifyDarwin}from "./spotify/SpotifyDarwin";
import {SpotifyLinux}from "./spotify/SpotifyLinux";
import {SpotifyWindows}from "./spotify/SpotifyWindows";
import {SpotifyDefault}from "./spotify/SpotifyDefault";

const os = require('os');
Expand All @@ -15,7 +14,7 @@ export class SpotifyClientFactory {
case 'linux':
return new SpotifyLinux();
case 'win32':
return new SpotifyWindows();
// return new SpotifyWindows();
default:
return new SpotifyDefault()
}
Expand Down
56 changes: 0 additions & 56 deletions render/spotify/SpotifyWindows.ts

This file was deleted.

Loading

0 comments on commit 8bbfce5

Please sign in to comment.