Skip to content
This repository was archived by the owner on Jun 11, 2023. It is now read-only.

Commit 263d7e7

Browse files
committed
bump v1.5.0-beta1
1 parent 35c55c8 commit 263d7e7

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## [1.5.0-beta1] - 2018-08-19
5+
### Added
6+
- Logging! Now it's easier to debug the application
7+
- Log files location is platform dependent
8+
9+
### Changed
10+
- Updated node packages
11+
- electron - 2.0.2 -> 2.0.7
12+
- electron-updater - 2.21.10 -> 3.1.1
13+
- And more!
14+
415
## [1.4.2] - 2018-08-18
516
### Fixed
617
- Uncaught error while fetching access token in main process

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "audius",
33
"productName": "Audius",
4-
"version": "1.4.2",
4+
"version": "1.5.0-beta1",
55
"description": "A cross-platform app for downloading songs from YouTube and Spotify",
66
"author": {
77
"name": "Mihir Pathak",

src/modules/AutoUpdater.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ var log = require('electron-log');
1313
* Refer electron-builder docs
1414
*/
1515
log.info('[AutoUpdater.js] Checking for updates');
16-
// autoUpdater.channel = 'beta';
16+
autoUpdater.channel = 'beta';
1717
autoUpdater.checkForUpdatesAndNotify();
1818

1919
// Done in two lines :)

0 commit comments

Comments
 (0)