-
-
Notifications
You must be signed in to change notification settings - Fork 112
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 #12205 from keymanapp/fix/developer/12193-enforce-…
…version-string-when-no-followkeyboardversion fix(developer): enforce presence of Version field when FollowKeyboardVersion is not set, in package compiler
- Loading branch information
Showing
7 changed files
with
50 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,7 @@ | |
</StartMenu> | ||
<Info> | ||
<Name URL="">Absolute Path</Name> | ||
<Version>1.0</Version> | ||
</Info> | ||
<Files> | ||
<File> | ||
|
32 changes: 32 additions & 0 deletions
32
developer/src/kmc-package/test/fixtures/invalid/error_package_file_has_empty_version.kps
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,32 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Package> | ||
<System> | ||
<KeymanDeveloperVersion>15.0.266.0</KeymanDeveloperVersion> | ||
<FileVersion>7.0</FileVersion> | ||
</System> | ||
<Info> | ||
<!-- blank name --> | ||
<Name URL="">Invalid Email Address</Name> | ||
<Copyright URL="">© 2019 National Research Council Canada</Copyright> | ||
<Author URL="mailto:Eddie.Santos@nrc-cnrc.gc.ca">Eddie Antonio Santos</Author> | ||
<Version></Version> | ||
</Info> | ||
<Files> | ||
<File> | ||
<Name>basic.kmx</Name> | ||
<Description>Keyboard Basic</Description> | ||
<CopyLocation>0</CopyLocation> | ||
<FileType>.kmx</FileType> | ||
</File> | ||
</Files> | ||
<Keyboards> | ||
<Keyboard> | ||
<Name>Basic</Name> | ||
<ID>basic</ID> | ||
<Version>1.0</Version> | ||
<Languages> | ||
<Language ID="km">Central Khmer (Khmer, Cambodia)</Language> | ||
</Languages> | ||
</Keyboard> | ||
</Keyboards> | ||
</Package> |
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