This repository has been archived by the owner on Jan 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding xpk target to gruntfile, plus signature file.
- Loading branch information
Max Waterman
committed
Oct 26, 2013
1 parent
e7e7cb9
commit 237bdc5
Showing
7 changed files
with
112 additions
and
40 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
File renamed without changes.
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<widget xmlns="http://www.w3.org/ns/widgets" xmlns:tizen="http://tizen.org/ns/widgets" id="https://github.com/01org/webapps-scientific-calculator" version="1.1.0" viewmodes="fullscreen"> | ||
<widget xmlns="http://www.w3.org/ns/widgets" xmlns:tizen="http://tizen.org/ns/widgets" id="https://github.com/01org/webapps-scientific-calculator" version="<%= packageInfo.version %>" viewmodes="fullscreen"> | ||
<tizen:application id="UaW22rtxQw.calculator" package="UaW22rtxQw" required_version="2.1"/> | ||
<content src="index.html"/> | ||
<icon src="icon_128.png"/> | ||
<name>calculator</name> | ||
<name><%= packageInfo.name %></name> | ||
</widget> |
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,17 @@ | ||
{ | ||
"name": "<%= packageInfo.name %>", | ||
"version": "<%= packageInfo.version %>", | ||
"default_locale": "en_US", | ||
"description": "<%= packageInfo.description %>", | ||
"icons": { | ||
"128": "icon_128.png" | ||
}, | ||
"app": { | ||
"launch": { | ||
"local_path": "index.html" | ||
} | ||
}, | ||
"manifest_version": 2, | ||
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; style-src 'self' 'unsafe-inline'" | ||
} | ||
|
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,15 @@ | ||
-----BEGIN RSA PRIVATE KEY----- | ||
MIICXgIBAAKBgQDPNDdHYc/RWxhzvJJtInOTcKc5wkbK9Kb2bIeRDCAMaiodcjBO | ||
gV78AZurh4vV0Fw2324O5FDPhAVRK45OJxtbawkntkkmI2bkEAocNDHPC8LOVHV+ | ||
1/5uVFiktmToFx+HE9Jgl3fSX/4onTNR8okmhL/Dax7VU6ZjN2KNqAP3KQIDAQAB | ||
AoGBAKNphOcxBtsPwvsUD08uyoPPZrMwuvA5fqv97/S+4U+pMsnCUsK3WRfalND0 | ||
t53LE87a60unWOwwLJlVhoewY+uLNB4EUQVyYzNvZVrhsZWB5wr7FB/2HQVCfti2 | ||
qxzkG3ndL7OR4vvoEU34FpPLrLuYS72xYOZIxD9w9bDt7rYBAkEA185PLSU5g0+t | ||
CXNHlPeGaeTc5jyi2r1kckkAQmyYekTyL8LgHsqfJVM3DNyqQqpSZ73+cwNdOv2y | ||
vMlYs22bCQJBAPXLw58+zOZC6Tsvm+Ur4me8arqDLb34SEh9AhtAwWqW0KPw/NpR | ||
JRui4UWBjvDNK3qXhyZ+eJfg8cDWCjua4yECQQCgg9mscKWon9jK0K4LhVi65vnP | ||
XoabQIe34ciJn5CCUUn6cG6XOIrLDmxB6tfRIjKM62qZTYVI3W7WsMSDISFRAkEA | ||
nxp02EHYdDxfqJYavW94sFmAZJbBJzTt5S42DNoP2SUijNxTcCYSdR8r3sgMdMb6 | ||
G/K14y7+dKGBG6fxG8AYwQJAQSpjHy+BMxkmnMRGh/9rLMAZFPiwdu9w60P1rENs | ||
NF35jnVL29uKBAbAHGYgYSVNc/bSj8wSLAa9dLaH1htuzg== | ||
-----END RSA PRIVATE KEY----- |