-
Notifications
You must be signed in to change notification settings - Fork 323
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
Project Sharing #6077
Merged
Merged
Project Sharing #6077
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
7585664
wip
mwu-tow a2e2437
Merge remote-tracking branch 'origin/develop' into develop
mwu-tow 9daa667
post merge
mwu-tow 0a5d279
wip
mwu-tow 60c822a
wip
mwu-tow 6ad81ec
cleanups, edge cases
mwu-tow 6a92572
Merge remote-tracking branch 'origin/develop' into wip/mwu/project-sh…
mwu-tow c704dba
cleanups
mwu-tow 550a570
respect PYTHON_PATH
mwu-tow c67f912
cleanups
mwu-tow b85c949
Merge remote-tracking branch 'origin/develop' into wip/mwu/project-sh…
mwu-tow 5fef3f7
cleanups
mwu-tow 2ed4b97
cleanups
mwu-tow 97053fb
Merge remote-tracking branch 'origin/develop' into wip/mwu/project-sh…
mwu-tow 9eab67c
fmt / cr
mwu-tow 5c2baed
let/const
mwu-tow fdd1257
Merge remote-tracking branch 'origin/develop' into wip/mwu/project-sh…
mwu-tow aa1ef2a
Tons of cleanups
mwu-tow 3ebe069
Merge remote-tracking branch 'origin/develop' into wip/mwu/project-sh…
mwu-tow 0021056
Merge remote-tracking branch 'origin/develop' into wip/mwu/project-sh…
mwu-tow ab2c2af
Cleanups, CR
mwu-tow 25698b0
Merge remote-tracking branch 'origin/develop' into wip/mwu/project-sh…
mwu-tow 1dd6902
Merge branch 'develop' into wip/mwu/project-sharing
mwu-tow 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 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
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,13 @@ | ||
/** @file File associations for client application. */ | ||
|
||
/** The extension for the source file, without the leading period character. */ | ||
export const SOURCE_FILE_EXTENSION = 'enso' | ||
|
||
/** The extension for the project bundle, without the leading period character. */ | ||
export const BUNDLED_PROJECT_EXTENSION = 'enso-project' | ||
|
||
/** The filename suffix for the source file, including the leading period character. */ | ||
export const SOURCE_FILE_SUFFIX = `.${SOURCE_FILE_EXTENSION}` | ||
|
||
/** The filename suffix for the project bundle, including the leading period character. */ | ||
export const BUNDLED_PROJECT_SUFFIX = `.${BUNDLED_PROJECT_EXTENSION}` |
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
Oops, something went wrong.
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.
Not sure if you realized (the docs here weren't helpful TBH), but the option not always is "project to open" - in cloud (i.e. when we receive LS endpoints instead of PM endpoint) this is a name of project we connect to - so not project to open (as it is, technically, already opened), but project name.
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.
As discussed on the call, no change needed here,