-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## [1.9.0] - 2021-07-13 Plastic SCM for Unity is now available as part of the Version Control Package! You can enable Plastic SCM via Window > Plastic SCM to get started! If you have previously used the Unity Asset Store Plastic SCM plug-in, you can now simply use this package. Make sure you delete the plug-in from your project. Removing a previously added Plastic SCM Asset Store Plug-In: - Select the PlasticSCM folder in the Assets\Plugins folder on the Project tab, then click Edit > Delete - Close the Unity Editor and open your project again. You will find the Plastic SCM menu item in the Window menu. ### Added - Added Checkin and Update confirmation notification - Added auto sign in when logged into Unity account ### Changed - Simplified UI: decluttered UI - Improved load time performance ### Fixed - Fixed view not switching to workspace after creating an Enterprise Gluon workspace - Fixed contextual menu not showing up in project view - Fixed SSO renew token after password change - Fixed some namespace collisions with Antlr3
- Loading branch information
Unity Technologies
committed
Jul 13, 2021
1 parent
dca99d0
commit d8981aa
Showing
80 changed files
with
1,251 additions
and
780 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
64 changes: 58 additions & 6 deletions
64
Editor/PlasticSCM/Assets/Images/iconemptygravatar.png.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
44 changes: 23 additions & 21 deletions
44
Editor/PlasticSCM/Assets/Layouts/CreateOrganizationPanel.uxml
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 |
---|---|---|
@@ -1,26 +1,28 @@ | ||
<UXML xmlns="UnityEngine.UIElements"> | ||
<VisualElement class="flex-container main"> | ||
<Label name="createLabel" class="title" /> | ||
<VisualElement class="field"> | ||
<TextField name="orgName"/> | ||
<Label name="orgNameNotification" class="notification"/> | ||
<VisualElement class="flex-container column main"> | ||
<VisualElement class="flex-container grow"> | ||
<Label name="createLabel" class="title"/> | ||
<VisualElement class="field"> | ||
<TextField name="orgName"/> | ||
<Label name="orgNameNotification" class="notification"/> | ||
</VisualElement> | ||
<VisualElement name="datacenter" class="field"> | ||
<Label name="datacenterLabel" class="field-label"/> | ||
</VisualElement> | ||
<VisualElement name="dataCenterRetryContainer" class="row hidden"> | ||
<Label name="dataCenterRetryAlert" class="alert-label"/> | ||
<Button name="dataCenterRetryButton"/> | ||
</VisualElement> | ||
<VisualElement class="field"> | ||
<Toggle name="encryptData"/> | ||
<Label name="encryptExplanation"/> | ||
<Button name="encryptLearnMore" class="anchor"/> | ||
</VisualElement> | ||
</VisualElement> | ||
<VisualElement name="datacenter" class="field"> | ||
<Label name="datacenterLabel" class="field-label"/> | ||
<VisualElement class="row flex-container flex-end"> | ||
<Button class="footerButton" name="back"/> | ||
<Button class="footerButton" name="create"/> | ||
</VisualElement> | ||
<VisualElement name="dataCenterRetryContainer" class="row hidden"> | ||
<Label name="dataCenterRetryAlert" class="alert-label" /> | ||
<Button name="dataCenterRetryButton"/> | ||
</VisualElement> | ||
<VisualElement name="encryptField" class="field"> | ||
<Toggle name="encryptData" /> | ||
<Label name="encryptExplanation"/> | ||
<Button name="encryptLearnMore" class="anchor"/> | ||
</VisualElement> | ||
</VisualElement> | ||
<VisualElement class="footer row flex-container main"> | ||
<VisualElement name="gettingDatacenters" /> | ||
<Button name="back" /> | ||
<Button name="create" /> | ||
<VisualElement name="gettingDatacenters" class="flex-end"/> | ||
</VisualElement> | ||
</UXML> |
Oops, something went wrong.