Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
derbenx authored Jan 15, 2024
1 parent 06c4005 commit aa19fc4
Show file tree
Hide file tree
Showing 13 changed files with 659 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<p align="center">
<h1>Family Tree app for nextcloud</h1>
<h3>A Nextcloud app that lets you design freeform family trees.</h3>
</p>
28 changes: 28 additions & 0 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?xml version="1.0"?>
<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
<id>familytree</id>
<name>Family Tree</name>
<summary>Family Tree</summary>
<description><![CDATA[
# familytree
A Nextcloud app that lets you build your own family tree.
]]></description>
<version>1.2.1</version>
<licence>agpl</licence>
<author mail="[email protected]" homepage="https://derben.ca">DerBen</author>
<namespace>familytree</namespace>
<category>tools</category>
<website>https://github.com/derbenx/nextcloud-familytree</website>
<bugs>https://github.com/derbenx/nextcloud-familytree/issues</bugs>
<screenshot>https://raw.githubusercontent.com/derbenx/nextcloud-familytree/familytree.png</screenshot>
<dependencies>
<nextcloud min-version="25" max-version="29"/>
</dependencies>
<navigations>
<navigation>
<name>Family Tree</name>
<route>familytree.page.index</route>
</navigation>
</navigations>
</info>
12 changes: 12 additions & 0 deletions appinfo/routes.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php
/**
* Create your routes in here. The name is the lowercase name of the controller
* without the controller part, the stuff after the hash is the method.
* The controller class has to be registered in the application.php file since
* it's instantiated in there
*/
return [
'routes' => [
['name' => 'page#index', 'url' => '/', 'verb' => 'GET'],
]
];
11 changes: 11 additions & 0 deletions css/css.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#can{top:0px;left:0px;position:fixed;}
table,.inp { width:95%; }
tr,td,input,#r,#s { min-height:25px !important; height:25px !important; }
#addPer,#updPer,#delPer,#cent,#nt,#st,#lt,#fu,#sh { padding:0px 7px 0px 7px !important; font-size: 13px !important; min-height:23px !important; height:23px !important; }
#bg {min-height:23px !important; height:23px !important;}
td { border:1px dotted green; color:black; text-align:center; }
tr:hover {background:none !important; }
#ln,#hp { width:49%; height:150px; }
#inp { z-index:99;position:relative; background:grey; color:black; }
#sh,#fu { z-index:99;position:relative; }

Binary file added familytree.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added familytreess.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/Solitaire.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions img/app.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/familytree.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit aa19fc4

Please sign in to comment.