Skip to content
This repository was archived by the owner on Nov 8, 2024. It is now read-only.
/ DuGR Public archive

Commit

Permalink
Clean repo
Browse files Browse the repository at this point in the history
  • Loading branch information
Nico-Duduf committed Jul 17, 2023
1 parent 64072d8 commit 2b87635
Show file tree
Hide file tree
Showing 17 changed files with 12,339 additions and 142 deletions.
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,9 @@ tools/build/build/
tools/build/output/
tools/dev/output/

.foldex.*
.foldex.*

# Ignore our own submodules (The best is to symlink them)
src/inc/modules/DuAEF.jsxinc
types/duaef/types.d.ts
src/inc/modules/setup.jsxinc
9 changes: 9 additions & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es3",
"checkJs": true,
"ignoreDeprecations": "5.0"
},
"include": ["./src/", "./types/", "./examples/"]
}
20 changes: 20 additions & 0 deletions rx_manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"title": "DuGR",
"hosts": [
{
"name": "aftereffects",
"title": "After Effects"
}
],
"os": [
{
"name": "mac",
"title": "macOS"
},
{
"name": "win",
"title": "Windows"
}
],
"userGuide": "http://dugr.rxlab.guide"
}
134 changes: 0 additions & 134 deletions src-docs/CODE_OF_CONDUCT.md

This file was deleted.

1 change: 0 additions & 1 deletion src-docs/README.md

This file was deleted.

19 changes: 18 additions & 1 deletion src-docs/docs/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,30 @@ h3 {
margin-top: 40px;
}

blockquote {
border-left-width: 3px;
border-color: #6f6f6f;
font-style: italic;
padding-top: 3px;
padding-bottom: 3px;
}

figcaption {
font-style: italic;
margin-bottom: 15px;
color: #636363;
}

blockquote figcaption {
font-style: normal;
margin-bottom: 0px;
}

figure {
margin-top: 25px;
}

.admonition{
.admonition {
margin-top: 25px;
margin-bottom: 25px;
margin-left: -50px;
Expand All @@ -54,6 +67,10 @@ figure {
border-left: 7px solid;
}

.admonition.tip {
border-left-color: #4bdf52;
}

.navbar-default {
border-bottom: 0;
background-color: #333;
Expand Down
Loading

0 comments on commit 2b87635

Please sign in to comment.