diff --git a/CHANGELOG.md b/CHANGELOG.md index e2030ad..2da9a05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ # Changelog All notable changes to this project will be documented in this file. +## [1.5.0-beta1] - 2018-08-19 +### Added +- Logging! Now it's easier to debug the application + - Log files location is platform dependent + +### Changed +- Updated node packages + - electron - 2.0.2 -> 2.0.7 + - electron-updater - 2.21.10 -> 3.1.1 + - And more! + ## [1.4.2] - 2018-08-18 ### Fixed - Uncaught error while fetching access token in main process diff --git a/package.json b/package.json index 39c21d6..3cb44ad 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "audius", "productName": "Audius", - "version": "1.4.2", + "version": "1.5.0-beta1", "description": "A cross-platform app for downloading songs from YouTube and Spotify", "author": { "name": "Mihir Pathak", diff --git a/src/modules/AutoUpdater.js b/src/modules/AutoUpdater.js index 642edf9..d0822fa 100644 --- a/src/modules/AutoUpdater.js +++ b/src/modules/AutoUpdater.js @@ -13,7 +13,7 @@ var log = require('electron-log'); * Refer electron-builder docs */ log.info('[AutoUpdater.js] Checking for updates'); -// autoUpdater.channel = 'beta'; +autoUpdater.channel = 'beta'; autoUpdater.checkForUpdatesAndNotify(); // Done in two lines :)