Skip to content

Commit

Permalink
fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Multivit4min committed Jul 10, 2020
1 parent 96a1b32 commit 2949eb9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

### 3.0.8 - 10.07.2020
* fix paths to local scripts

### 3.0.7 - 05.07.2020
* renamed functions to conform JS camelcase standard
* `getChannelByID` -> `getChannelById`
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ts3-nodejs-library",
"version": "3.0.7",
"version": "3.0.8",
"description": "TeamSpeak Server Query API",
"main": "lib/index.js",
"homepage": "https://github.com/Multivit4min/TS3-NodeJS-Library",
Expand Down
2 changes: 1 addition & 1 deletion src/node/ChannelGroup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { TeamSpeak } from "../TeamSpeak"
import { ChannelGroupEntry } from "../types/ResponseTypes"
import { TeamSpeakChannel } from "./Channel"
import { TeamSpeakClient } from "./Client"
import { Permission } from "util/Permission"
import { Permission } from "../util/Permission"

export class TeamSpeakChannelGroup extends Abstract<ChannelGroupEntry> {

Expand Down
2 changes: 1 addition & 1 deletion src/node/Client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { ClientDBEdit, ClientEdit } from "../types/PropertyTypes"
import { ClientType } from "../types/enum"
import { TeamSpeakChannel } from "./Channel"
import { TeamSpeakServerGroup } from "./ServerGroup"
import { Permission } from "util/Permission"
import { Permission } from "../util/Permission"

export class TeamSpeakClient extends Abstract<ClientEntry> {

Expand Down

0 comments on commit 2949eb9

Please sign in to comment.