2.0a4 -> 2.0a5

Changed some filenames
Rewrote edit function to be more sane
Separated encryption and decryption functions from edit into libencryption.sh
Fixed a bug where an edit tag would be added regardless of create status
This commit is contained in:
Jon-William Lewis
2015-05-07 22:11:13 -05:00
parent 64e504ebcb
commit 3cb375f64b
22 changed files with 540 additions and 208 deletions

View File

@@ -1,7 +1,7 @@
S=sns.sh
PROD_STR="Simple Note System"
VER_STR=v2.0a3
VER_STR=v2.0a4
cat > $S << EOF
#!/bin/bash
@@ -15,21 +15,22 @@ VER_STR="$VER_STR"
EOF
echo "# Section: Functions" >> $S
cat ./functions/init_default_config.sns.sh >> $S
cat ./functions/w_conf.sns.sh >> $S
cat ./functions/pause.sns.sh >> $S
cat ./functions/help.sns.sh >> $S
cat ./functions/p_header.sh >> $S
cat ./functions/create.sns.sh >> $S
cat ./functions/delete.sns.sh >> $S
cat ./functions/edit.sns.sh >> $S
cat ./functions/print.sns.sh >> $S
cat ./functions/list.sns.sh >> $S
echo "# End Section: Functions" >> $S
cat ./init/stage1.sns.sh >> $S
cat ./init/stage2.sns.sh >> $S
cat ./init/stage3.sns.sh >> $S
echo "# Section: Functions" >> $S
cat ./src/includes/defaults.sh >> $S
cat ./src/includes/w_conf.sns.sh >> $S
cat ./src/includes/pause.sns.sh >> $S
cat ./src/includes/help.sns.sh >> $S
cat ./src/includes/p_header.sh >> $S
cat ./src/includes/libencryption.sh >> $S
cat ./src/includes/create.sns.sh >> $S
cat ./src/includes/delete.sns.sh >> $S
cat ./src/includes/edit.sns.sh >> $S
cat ./src/includes/print.sns.sh >> $S
cat ./src/includes/list.sns.sh >> $S
echo "# End Section: Functions" >> $S
cat ./src/main/stage1.sns.sh >> $S
cat ./src/main/stage2.sns.sh >> $S
cat ./src/main/stage3.sns.sh >> $S