-
-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Tidy up home component (#571) * v1.3.3 (#570) * bump to v1.3.3 * Sticky navbar (#569) * collapse toggler on click * sticky navbar * remove custom scrollbar styling to fix padding issues with container * Remove dead code * onChange is a class method * initInfinitePagination as arrow to avoid explicit binding * component is already aware of redux, no need to bindActionCreators * Only import what's needed * fix subtitles (#572) fix subtitles, add multi-lang subtitle support * semver bump to 1.3.4
- Loading branch information
Showing
11 changed files
with
131 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ import Root from './containers/Root'; | |
import { history, configureStore } from './store/configureStore'; | ||
import './app.global.scss'; | ||
|
||
if (process.env.NODE_ENV === 'production') { | ||
if (process.env.NODE_ENV === 'production' && process.env.E2E_BUILD !== 'true') { | ||
Sentry.init({ | ||
dsn: 'https://[email protected]/1277263' | ||
}); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ import log from 'electron-log'; | |
import * as Sentry from '@sentry/electron/dist/main'; | ||
import MenuBuilder from './menu'; | ||
|
||
if (process.env.NODE_ENV === 'production') { | ||
if (process.env.NODE_ENV === 'production' && process.env.E2E_BUILD !== 'true') { | ||
Sentry.init({ | ||
dsn: 'https://[email protected]/1277263' | ||
}); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "PopcornTime", | ||
"description": "An experimental PopcornTime client", | ||
"homepage": "https://github.com/amilajack/popcorn-time-desktop", | ||
"version": "1.3.3", | ||
"version": "1.4.0", | ||
"main": "./main.prod.js", | ||
"author": { | ||
"name": "Amila Welihinda <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.