This repository has been archived by the owner on Mar 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed some little things still not progress on getting profile image and the script that counts all your friends
- Loading branch information
Showing
5 changed files
with
117 additions
and
38 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,12 +1,13 @@ | ||
<?xml version='1.0' encoding='utf-8'?> | ||
<widget id="com.roxyboxxy.vrchub" version="1.1.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> | ||
<widget id="com.roxyboxxy.vrchub" version="1.1.3" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> | ||
<name>VRChat Mobile</name> | ||
<description> | ||
A sample Apache Cordova application that responds to the deviceready event. | ||
</description> | ||
<author email="[email protected]" href="http://cordova.io"> | ||
Apache Cordova Team | ||
</author> | ||
<icon density="mdpi" height="57" platform="ios" src="res\icon\android\icon-96-xhdpi.png" width="57" /> | ||
<content src="index.html" /> | ||
<plugin name="cordova-plugin-whitelist" spec="1" /> | ||
<access origin="*" /> | ||
|
@@ -19,6 +20,7 @@ | |
<allow-intent href="itms:*" /> | ||
<allow-intent href="itms-apps:*" /> | ||
</platform> | ||
<plugin name="cordova-plugin-firebase" spec="^1.0.5" /> | ||
<engine name="android" spec="^7.0.0" /> | ||
<engine name="browser" spec="^5.0.4" /> | ||
</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
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 |
---|---|---|
@@ -0,0 +1,91 @@ | ||
<!DOCTYPE HTML> | ||
<!-- | ||
Forty by HTML5 UP | ||
html5up.net | @ajlkn | ||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) | ||
--> | ||
<html> | ||
<head> | ||
<title>Forty by HTML5 UP</title> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" /> | ||
<link rel="stylesheet" href="assets/css/main.css" /> | ||
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript> | ||
<script src="jquery-1.12.4.min.js"></script> | ||
|
||
<script src="popup.js"></script> | ||
<link rel="stylesheet" type="text/css" href="popup.css"> | ||
|
||
</head> | ||
<body class="is-preload"> | ||
|
||
<!-- Wrapper --> | ||
<div id="wrapper"> | ||
|
||
<!-- Header --> | ||
<header id="header" class="alt"> | ||
<a href="index.html" class="logo"><strong>VRChat Mobile</strong></a> | ||
<nav> | ||
<a href="#menu">Menu</a> | ||
</nav> | ||
</header> | ||
|
||
<!-- Menu --> | ||
<nav id="menu"> | ||
<ul class="actions stacked"> | ||
<li> | ||
<li><a href="index.html" class="button fit">Freinds</a></li> | ||
|
||
|
||
<div id="loginpanel"> | ||
<div> | ||
<div class="info">username:</div><input type="text" id="username" size="20"></input> | ||
</div> | ||
<div> | ||
<div class="info">password:</div><input type="password" id="password" size="20"></input> | ||
</div> | ||
<div> | ||
<button type="button" id="login">Login</button> | ||
</div> | ||
<hr /> | ||
</div> | ||
</li> | ||
<li><a id="logout" class="button fit">Logout</a></li> | ||
<li><a href="#settings" class="button fit">Settings</a></li> | ||
<li> | ||
<a>Version 1.1B</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
|
||
<!-- Banner --> | ||
|
||
|
||
<!-- Main --> | ||
|
||
|
||
<div id="userpanel"> | ||
</div> | ||
|
||
|
||
<!-- Contact --> | ||
|
||
|
||
<!-- Footer --> | ||
|
||
|
||
</div> | ||
|
||
<!-- Scripts --> | ||
<script src="assets/js/jquery.min.js"></script> | ||
<script src="assets/js/jquery.scrolly.min.js"></script> | ||
<script src="assets/js/jquery.scrollex.min.js"></script> | ||
<script src="assets/js/browser.min.js"></script> | ||
<script src="assets/js/breakpoints.min.js"></script> | ||
<script src="assets/js/util.js"></script> | ||
<script src="assets/js/main.js"></script> | ||
<script src="main.js"></script> | ||
<script src="popup.js"></script> | ||
|
||
</body> | ||
</html> |