-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Make shipped apps updatable via appstore #8808
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
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
2bcfd8e
make it possible to update shipped apps via the appstore
georgehrke c8636ca
Merge branch 'master' into update_shipped_apps_from_appstore
georgehrke 020255b
add button for properly uninstalling apps
georgehrke c6dc9ae
Merge branch 'master' into update_shipped_apps_from_appstore
georgehrke c8a8c7e
read ocsid from shipped apps on install
georgehrke eea501b
various fixes as requested by pr reviewers
georgehrke 19129b3
use isset() instead of array_key_exists()
georgehrke 56a8010
remove console.log in apps.js
georgehrke 2c00ab1
update autoloader
georgehrke 724d027
add unit test
georgehrke 00b7f36
remove not needed unlink in installer test
georgehrke 6aab50f
fix unit tests
DeepDiver1975 fad3bd7
reenable checkCode()
DeepDiver1975 0fe8f77
Merge branch 'master' into update_shipped_apps_from_appstore
georgehrke 498aa66
add additional type check
georgehrke a110973
some additional type checks
georgehrke 1ab9bdc
remove unnecessary @return
georgehrke 5d4f3ba
fix php doc block
georgehrke 6bf0689
always return a bool in OC_App::updateApp
georgehrke 602404c
fix php doc block
georgehrke 5e9fa64
don't show update button when appstore is disabled or no writable dir…
georgehrke 0890ce4
Update preseed-config.php
georgehrke c378e76
skip certain tests for shipped apps
georgehrke 65028c4
don't skip code check for skipped apps
georgehrke 86f546f
disable code check for shipped apps
georgehrke 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
add additional type check
- Loading branch information
commit 498aa6664807cca87a1ca8d2fd0d3d609430bae8
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
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.
It seems like $appPath defined by \OC_App::getAppPath($app) on line 92 can also be of type false; however, stream_resolve_include_path() does only seem to accept string, maybe add an additional type check?