Skip to content

Commit c506cbb

Browse files
committed
chore(docs)
1 parent 548828f commit c506cbb

File tree

4 files changed

+26
-14
lines changed

4 files changed

+26
-14
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66

77
## URLs
88

9-
| Domain | Status |
10-
| ------------------------------- | ----------------------------------------------------------- |
11-
| https://text.0w.nz | The final prod domain. I dev here, so it will be broken lot |
12-
| https://xero.github.io/text0wnz | The github pages version of the site is guaranteed to work |
9+
| Domain | Status |
10+
| ---------------------------------- | ----------------------------------------------------------- |
11+
| https://text.0w.nz | The final prod domain. I dev here, so it will be broken lot |
12+
| https://xero.github.io/moebius-web | The github pages version of the site is guaranteed to work |
1313

1414
> [!WARNING]
1515
> _This project is under active development and is netcode is currently broken!_

docs/pre-commit

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,20 @@ if [ $RESULT -ne 0 ]; then
1010
exit 1
1111
fi
1212

13+
# git upstream
14+
printf "\n%s\n" "checking for git upstream..."
15+
git rev-parse --abbrev-ref --symbolic-full-name "@{u}" > /dev/null 2>&1
16+
RESULT=$?
17+
if [ $RESULT -ne 0 ]; then
18+
printf "\n%s\n%s\n" "no upstream branch configured for the current branch." "configure an upstream using: \`git branch --set-upstream-to=origin/<branch> <branch>\`"
19+
exit 1
20+
fi
21+
1322
printf "\n%s\n\n" "fetching git upstreams..."
14-
# syncing
23+
# git syncing
1524
git fetch
1625
LOCAL=$(git rev-parse @)
17-
#shellcheck disable=SC1083
18-
REMOTE=$(git rev-parse @{u})
26+
REMOTE=$(git rev-parse "@{u}")
1927

2028
if [ "$LOCAL" != "$REMOTE" ]; then
2129
printf "\n%s\n%s\n" "your branch is behind the remote." "pull and resolve before committing."

docs/sauce-format.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# SAUCE – Standard Architecture for Universal Comment Extensions
22

3-
by Olivier "Tasmaniac" Reubens / ACiD
3+
> Written by Olivier "Tasmaniac" Reubens / ACiD
4+
> No rights reserved, No patent pending
5+
> For comments/questions : Tas@acid.org
6+
> https://www.acid.org/info/sauce/sauce.htm
7+
8+
---
49

510
The Standard Architecture for Universal Comment Extensions or SAUCE as it is more commonly known, is an architecture or protocol for attaching meta data or comments to files. Mainly intended for ANSI art files, SAUCE has always had provisions for many different file types.
611

docs/xb-format.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
2-
31
# XB: eXtended BIN Format specification
42

5-
Written by Tasmanic Tasmaniac / ACiD 1996
6-
No rights reserved, No patent pending
7-
For comments/questions : Tas@acid.org
8-
http://uc2.unicall.be/tasmaniac/xbin.htm
3+
> Written by Olivier "Tasmaniac" Reubens / ACiD
4+
> No rights reserved, No patent pending
5+
> For comments/questions : Tas@acid.org
6+
> http://uc2.unicall.be/tasmaniac/xbin.htm
97
108
---
9+
1110
## Introduction
1211

1312
Out of a crying need from several ANSi artists, a new type of file is

0 commit comments

Comments
 (0)