Skip to content

Commit fe9de75

Browse files
committed
Release v0.1.0
1 parent 54f4fe5 commit fe9de75

5 files changed

Lines changed: 14 additions & 6 deletions

File tree

functions/src/api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import bent from 'bent';
22
import moment from 'moment';
33
import { info, debug } from 'console';
44

5-
const VERSION = "0.0.0"
5+
const VERSION = "0.1.0"
66

77
export namespace HypixelAPI {
88

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hypixel-events",
3-
"version": "0.0.0",
3+
"version": "0.1.0",
44
"license": "MIT",
55
"author": {
66
"name": "iHDeveloper",

src/app/app.component.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ export class AppComponent implements AfterViewInit, RendererManager {
1717
context: CanvasRenderingContext2D;
1818

1919
constructor(
20-
private timelineManager: TimelineManager,
21-
private calendar: CalendarService
20+
private timelineManager: TimelineManager
2221
) {
2322
}
2423

@@ -32,7 +31,7 @@ export class AppComponent implements AfterViewInit, RendererManager {
3231
/**
3332
* Update the size of the canvas when the window changes.
3433
*/
35-
@HostListener('window:resize', ['$event'])
34+
@HostListener('window:resize', [])
3635
onResize() {
3736
this.updateSize(this.frame.nativeElement as HTMLCanvasElement);
3837
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
export const environment = {
22
production: true,
3+
version: '0.1.0-BETA',
34
firebase: {
5+
apiKey: "AIzaSyC7Dhf1uOqqN2kWYqjw8A5-FlTwh9fXnXw",
6+
authDomain: "ihdeveloper.firebaseapp.com",
7+
databaseURL: "https://ihdeveloper.firebaseio.com",
8+
projectId: "ihdeveloper",
9+
storageBucket: "ihdeveloper.appspot.com",
10+
messagingSenderId: "791354586060",
11+
appId: "1:791354586060:web:412a16174ab392a4486369",
12+
measurementId: "G-HHYM4MMTS3",
413
emulator: undefined
514
}
615
};

src/environments/environment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
export const environment = {
66
production: false,
7-
version: '0.0.0',
7+
version: '0.1.0-BETA',
88
firebase: {
99
apiKey: "AIzaSyC7Dhf1uOqqN2kWYqjw8A5-FlTwh9fXnXw",
1010
authDomain: "ihdeveloper.firebaseapp.com",

0 commit comments

Comments
 (0)