This repository has been archived by the owner on Feb 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
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 #1 from f2bo/makepri-endpoint
Add support for compiling resources (PRI) and other fixes
- Loading branch information
Showing
6 changed files
with
244 additions
and
102 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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
var build = require('./server/lib/build.js'); | ||
|
||
module.exports = { makeAppx : build.makeAppx }; | ||
module.exports = { makeAppx : build.makeAppx, makePri: build.makePri }; |
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,21 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<resources targetOsVersion="10.0.0" majorVersion="1"> | ||
<index root="\" startIndexAt="\"> | ||
<default> | ||
<qualifier name="Language" value="en-US"/> | ||
<qualifier name="Contrast" value="standard"/> | ||
<qualifier name="Scale" value="100"/> | ||
<qualifier name="HomeRegion" value="001"/> | ||
<qualifier name="TargetSize" value="256"/> | ||
<qualifier name="LayoutDirection" value="LTR"/> | ||
<qualifier name="Theme" value="dark"/> | ||
<qualifier name="AlternateForm" value=""/> | ||
<qualifier name="DXFeatureLevel" value="DX9"/> | ||
<qualifier name="Configuration" value=""/> | ||
<qualifier name="DeviceFamily" value="Universal"/> | ||
<qualifier name="Custom" value=""/> | ||
</default> | ||
<indexer-config type="folder" foldernameAsQualifier="true" filenameAsQualifier="true" qualifierDelimiter="."/> | ||
<indexer-config type="resjson" initialPath=""/> | ||
</index> | ||
</resources> |
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.