Skip to content

Commit 42df8be

Browse files
committed
Popcorn Time, Beta 2.5
1 parent 3ec42cb commit 42df8be

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

dist/mac/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
<key>CFBundleDisplayName</key>
1414
<string>Popcorn Time</string>
1515
<key>CFBundleShortVersionString</key>
16-
<string>0.1.1</string>
16+
<string>0.2.0</string>
1717
<key>CFBundleVersion</key>
18-
<string>0.1.1</string>
18+
<string>0.2.0</string>
1919
<key>CFBundleDocumentTypes</key>
2020
<array>
2121
<dict>

dist/windows/windows-installer.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; Installer Variables
22
#define AppName "Popcorn Time"
3-
#define AppVersion "Beta 2"
3+
#define AppVersion "Beta 2.5"
44
#define AppPublisher "Popcorn Time Team"
55
#define AppURL "https://github.com/popcorn-time/popcorn-app"
66
#define AppExeName "run.bat"

js/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ if( (typeof __isNewInstall != 'undefined' && __isNewInstall == true) ||
264264
// General Device Stats
265265
userTracking.event('Device Stats', 'Version', Settings.get('version') + (isDebug ? '-debug' : '') ).send();
266266
userTracking.event('Device Stats', 'Type', getOperatingSystem().capitalize()).send();
267-
userTracking.event('Device Stats', 'Operating System', os.type() + os.release()).send();
267+
userTracking.event('Device Stats', 'Operating System', os.type() +' '+ os.release()).send();
268268
userTracking.event('Device Stats', 'CPU', os.cpus()[0].model +' @ '+ (os.cpus()[0].speed/1000).toFixed(1) +'GHz' +' x '+ os.cpus().length ).send();
269269
userTracking.event('Device Stats', 'RAM', Math.round(os.totalmem() / 1024 / 1024 / 1024)+'GB' ).send();
270270
userTracking.event('Device Stats', 'Uptime', Math.round(os.uptime() / 60 / 60)+'hs' ).send();

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Popcorn-Time",
33
"main": "app://host/index.html",
4-
"version": "0.1.1",
4+
"version": "0.2.0",
55
"window": {
66
"title": "Popcorn Time",
77
"icon": "images/icon.png",

0 commit comments

Comments
 (0)