Add files via upload

This commit is contained in:
Keb Helion 2020-02-14 15:18:41 -05:00 committed by GitHub
parent bf634f48f4
commit abd69ff3a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1 +1,220 @@
<b>Add you application to the repository... instructions</b>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
body {
background: #73758c;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #FFFFFF;
font-weight: 600;
text-decoration: none;
font-style: normal;
font-variant: normal;
text-transform: none;
}
h1 {
font-family: Arial, Helvetica, sans-serif;
font-size: 28px;
color: #CFB538;
font-weight: 800;
text-decoration: none;
font-style: normal;
font-variant: normal;
text-transform: none;
text-shadow: 3px 3px 3px rgba(63,64,76,1);
}
font.appname {
font-family: Arial, Helvetica, sans-serif;
font-size: 18px;
color: #CFB538;
font-weight: 800;
text-decoration: none;
font-style: normal;
font-variant: normal;
text-transform: none;
}
font.appdesc {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #ffffff;
font-weight: 500;
text-decoration: none;
font-style: normal;
font-variant: normal;
text-transform: none;
}
font.noresult {
font-family: Arial, Helvetica, sans-serif;
font-size: 18px;
color: #aaaaaa;
font-weight: 500;
text-decoration: none;
font-style: normal;
font-variant: normal;
text-transform: none;
}
font.caption {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #ffffff;
font-weight: 600;
text-decoration: none;
font-style: normal;
font-variant: normal;
text-transform: none;
}
font.pager {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #B2B5D9;
font-weight: 600;
text-decoration: none;
font-style: normal;
font-variant: normal;
text-transform: none;
}
div.iconContainer{
border-radius: 15px;
background: #000000;
padding: 5px;
width: 70px;
height: 70px;
text-align: center;
}
table.item {
background: #3E415E;
}
td {
vertical-align: top;
padding: 5px;
}
button.install {
font-family: Arial, Helvetica, sans-serif;
background-color: #008CBA;
font-size: 16px;
color: #ffffff;
font-weight: 600;
border-radius: 6px;
border: 2px solid #008CBA;
transition-duration: 0.3s;
}
button.install:hover {
background-color: #10afe3;
border: 2px solid #10afe3;
}
button.uninstall {
font-family: Arial, Helvetica, sans-serif;
background-color: #b34700;
font-size: 16px;
color: #ffffff;
font-weight: 600;
border-radius: 6px;
border: 2px solid #b34700;
transition-duration: 0.3s;
}
button.uninstall:hover {
background-color: #e34c22;
border: 2px solid #e34c22;
}
button.processing {
font-family: Arial, Helvetica, sans-serif;
background-color: #b59207;
font-size: 16px;
color: #ffffff;
font-weight: 600;
border-radius: 6px;
border: 2px solid #b59207;
transition-duration: 0.3s;
}
div.searchbox {
border-radius: 6px;
background: #ffffff;
padding: 4px;
border: 0px;
vertical-align: middle;
}
input.searchtextbox{
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #000000;
font-weight: 400;
text-decoration: none;
border: 0px;
outline-color: #ffffff;
}
#wrapper {
margin: 0 auto;
width: 600px;
}
#content {
float: left;
width: 600;
}
</style>
</head>
<body>
<div id="wrapper">
<div id="content">
<h1>"Project Athena" Applications Repository</h1>
<p>This repository stores the optional <b>tablet's applications</b> and <b>functionalities</b> provided by the contributions of the community members.</p>
<p>If you have created an Application and want to offer it to the community, this is where you can do it.</p>
Before going further:
1- If your applications is a core feature that you think that must be delivered out-of-the-box with Athena, you must instead consider to make your contribution directly in the "Project Athena" release. See instead this repository [link] and contact their maintainers.
2- If your application has any dependancy with an external server or services. (If it has to deal in any ways with another servers than a Project Athena Domain or Metaverse API) This repository is not where you should publish your application. It will have to be publish from a different source like the marketplace or another web site.
Conditions for acceptance:
1- You must include in your script a license reference making your script fully open source:
// Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
2- Avoid space and special character in your folder an file names. (Stay with: "a-z", "A-Z", "0-9", "-", "_", ".")
3- Add your appliction in a folder under the "applications"(link) directory. (Your main js file and your icon must be directly in that folder)
4- You must add your application to the metadata.js file (in the applications(link) directory) by generating a new one using this tool: [link]
Submit a Pull Request to add your application folder and the new metadata.js.
(If you are not comfortable with those procedure, contact Keb Helion on discord.)
Guidelines for the code reviewer:
1- Test the applications
2- Make sure that the JSON contain in metadata.js is valid before accept the commit. (This will be directly in production once commited)
3- Test the "More..." application in the Project Athena.
</p>
</div>
</div>
</body>
</html>