-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from niezbop/feature/file_for_preferences
Preferences: use .uplift/preferences.xml rather than EditorPrefs for storage
- Loading branch information
Showing
7 changed files
with
170 additions
and
119 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
6 changes: 3 additions & 3 deletions
6
...bring_Upfile_UpliftSettings_Upset.cs.meta → ...tPreferences_UpliftSettings_Upset.cs.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
19 changes: 19 additions & 0 deletions
19
Assets/Plugins/Editor/Uplift/Schemas/UpliftPreferences.xsd
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,19 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<xs:schema | ||
attributeFormDefault="unqualified" elementFormDefault="qualified" | ||
xmlns:xs="http://www.w3.org/2001/XMLSchema" | ||
> | ||
<xs:include schemaLocation="Common.xsd"/> | ||
<xs:include schemaLocation="RepositoryTypes.xsd"/> | ||
|
||
<xs:element name="UpliftPreferences" type="UpliftPreferences"/> | ||
|
||
<xs:complexType name="UpliftPreferences"> | ||
<xs:sequence> | ||
<xs:element type="xs:boolean" name="UseExperimentalFeatures" default="false" /> | ||
<xs:element type="xs:boolean" name="TrustUnknowCertificates" default="false" /> | ||
<xs:element type="xs:boolean" name="UseGithubProxy" default="false" /> | ||
<xs:element type="xs:string" name="GithubProxyUrl" /> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:schema> |
8 changes: 8 additions & 0 deletions
8
Assets/Plugins/Editor/Uplift/Schemas/UpliftPreferences.xsd.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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