-
Notifications
You must be signed in to change notification settings - Fork 572
Fixing libopenshot version warning message + Sentry.io fixes #4333
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
jonoomph
merged 15 commits into
release-20210819
from
fixing-libopenshot-warning-message
Aug 22, 2021
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
26c3af9
Don't make paths to other drives relative
JacksonRG 5cf818a
Check for windows drives after covering other cases
JacksonRG b7fe67f
Return cleaned path as JSON object
JacksonRG 01cdd72
Update json_data.py
ferdnyc 09013ca
Merge
ferdnyc a088921
Merge pull request #4211 from OpenShot/path_exception
jonoomph 3e1f826
added guards where we were getting exceptions (#4210)
JacksonRG c0059bd
Fixing a bug when detecting libopenshot version mismatch. We can't ac…
jonoomph 5a8fb61
Adding some protection around certain timeline JS bounding box operat…
jonoomph d42bd14
Adding a "Select a Color" context menu for color keyframes, so it's s…
jonoomph 8bfb595
Trying to prevent the accessing of 2 occasionally uninitialized vars …
jonoomph 1fae0e3
Fixing invalid default step value for QSpinBox widgets (sentry)
jonoomph 846362a
Merge pull request #4334 from OpenShot/sentry_fixes
jonoomph fd7b7f5
Fixing spelling error and changing Blender log to warning instead of …
jonoomph 114b5eb
Merge branch 'fixing-libopenshot-warning-message' of github.com:OpenS…
jonoomph File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
|
@@ -183,10 +183,7 @@ def main(): | |
argv = [sys.argv[0]] | ||
argv.extend(extra_args) | ||
argv.extend(args.remain) | ||
try: | ||
app = OpenShotApp(argv) | ||
except Exception: | ||
app.show_errors() | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. app was never initialized in the except block... and below a few lines, we call |
||
app = OpenShotApp(argv) | ||
|
||
# Setup Qt application details | ||
app.setApplicationName('openshot') | ||
|
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was preventing the OpenShotApp from initializing