forked from ResearchKit/ResearchKit
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Update to RK 3.1.1 ## ⚙️ Release Notes - Merge ResearchKit's latest main branch and updates to 3.1.1 (#34) ## 📝 Code of Conduct & Contributing Guidelines By submitting creating this pull request, you agree to follow our [Code of Conduct](https://github.com/StanfordSpezi/.github/blob/main/CODE_OF_CONDUCT.md) and [Contributing Guidelines](https://github.com/StanfordSpezi/.github/blob/main/CONTRIBUTING.md): - [x] I agree to follow the [Code of Conduct](https://github.com/StanfordSpezi/.github/blob/main/CODE_OF_CONDUCT.md) and [Contributing Guidelines](https://github.com/StanfordSpezi/.github/blob/main/CONTRIBUTING.md). --------- Co-authored-by: Louie <[email protected]> Co-authored-by: aplummer-apple <[email protected]> Co-authored-by: Pariece McKinney <[email protected]> Co-authored-by: simon-apple <[email protected]>
- Loading branch information
1 parent
bb32d10
commit a900668
Showing
327 changed files
with
7,865 additions
and
1,457 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
name: Bug Report | ||
about: File a bug to help us improve ResearchKit | ||
title: '' | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots or screen recordings** | ||
Screenshots or screen recordings help us understand your problem with more clarity. | ||
|
||
**ResearchKit Version** | ||
- Version: [e.g. 3.0.1] | ||
|
||
**Device Information** | ||
- OS: [e.g. iOS 18.1/watchOS 11.0/visionOS 2.0] | ||
- Device: [e.g. iPhone 16 Pro] | ||
|
||
**Additional context** | ||
Add surrounding context to bring more clarity to your problem. |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: Feature Request | ||
about: Suggest an idea for ResearchKit | ||
title: '' | ||
labels: new feature | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
name: General Question | ||
about: Ask a general question about ResearchKit's capabilities | ||
title: '' | ||
labels: question | ||
assignees: '' | ||
|
||
--- | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
name: Technical Question | ||
about: Ask a question about ResearchKit's API | ||
title: '' | ||
labels: tech question | ||
assignees: '' | ||
|
||
--- | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'ResearchKit' | ||
s.version = '3.0.1' | ||
s.summary = 'ResearchKit is an open source software framework that makes it easy to create apps for medical research or for other research projects.' | ||
s.homepage = 'https://www.github.com/ResearchKit/ResearchKit' | ||
s.documentation_url = 'http://researchkit.github.io/docs/' | ||
s.license = { :type => 'BSD', :file => 'LICENSE' } | ||
s.author = { 'researchkit.org' => 'http://researchkit.org' } | ||
s.source = { :git => 'https://github.com/ResearchKit/ResearchKit.git', :tag => s.version.to_s } | ||
|
||
s.default_subspec = "ResearchKitAllTargets" | ||
|
||
s.subspec 'ResearchKitCore' do |ss| | ||
ss.vendored_frameworks = 'xcframework/ResearchKit.xcframework' | ||
end | ||
|
||
s.subspec 'ResearchKitUI' do |ss| | ||
ss.vendored_frameworks = 'xcframework/ResearchKitUI.xcframework' | ||
ss.dependency 'ResearchKit/ResearchKitCore' | ||
end | ||
|
||
s.subspec 'ResearchKitActiveTask' do |ss| | ||
ss.vendored_frameworks = 'xcframework/ResearchKitActiveTask.xcframework' | ||
ss.dependency 'ResearchKit/ResearchKitUI' | ||
ss.dependency 'ResearchKit/ResearchKitCore' | ||
end | ||
|
||
s.subspec 'ResearchKitAllTargets' do |ss| | ||
ss.dependency 'ResearchKit/ResearchKitCore' | ||
ss.dependency 'ResearchKit/ResearchKitUI' | ||
ss.dependency 'ResearchKit/ResearchKitActiveTask' | ||
end | ||
end | ||
|
Oops, something went wrong.