diff --git a/AltSystem.toc b/AltSystem.toc index e541ac4..a085d34 100644 --- a/AltSystem.toc +++ b/AltSystem.toc @@ -2,7 +2,7 @@ ## Title: AltSystem ## Notes: Enhances RP gameplay with a custom rolling system ## Author: Rukira -## Version: 1.1 +## Version: 2.0 ## Dependencies: totalRP3, totalRP3_Extended ## SavedVariables: AltSystemDB diff --git a/docs/4-redesign.md b/docs/4-redesign.md new file mode 100644 index 0000000..4a11115 --- /dev/null +++ b/docs/4-redesign.md @@ -0,0 +1,12 @@ +# Feature: Major Redesign +This redesign of the Addon's window will start by following the following [design](./roll_tab_design.png) + +- The window will be a tabbed window +- The 'Use Skills' tab will correspond to the current roll screen +- The 'Build Skills' tab will be a new screen, to be implemented later. For now, leave it empty. +- The 'Log' should record all rolls made by the user, and be displayed in a scrollable list. + - They should be displayed in the same style as the announced rolls, even when the announce option is off +- The log should store a maximum of 100 rolls + +## Implementation details +TODO \ No newline at end of file diff --git a/docs/Changelog.md b/docs/Changelog.md index dd05c6a..e69de29 100644 --- a/docs/Changelog.md +++ b/docs/Changelog.md @@ -1,3 +0,0 @@ -- Adding default 'Unskilled (-4)' option -- The roll window now remembers all user selections (skill, item, armor type, shield, pet, announce and channel) across sessions -- Fixed an issue where the wrong rolls were displayed when in a large enough group \ No newline at end of file diff --git a/docs/roll_tab_design.png b/docs/roll_tab_design.png new file mode 100644 index 0000000..5754915 Binary files /dev/null and b/docs/roll_tab_design.png differ diff --git a/package.sh b/package.sh index 6febfa8..194f78f 100755 --- a/package.sh +++ b/package.sh @@ -7,7 +7,7 @@ OUTPUT_FILE="$OUTPUT_DIR/$ADDON_NAME.zip" STAGING_DIR="$(mktemp -d)" mkdir -p "$STAGING_DIR/$ADDON_NAME" -rsync -a --exclude='.DS_Store' --exclude='__MACOSX' --exclude='.git' "$SCRIPT_DIR/" "$STAGING_DIR/$ADDON_NAME/" +rsync -a --exclude='.DS_Store' --exclude='__MACOSX' --exclude='.git' --exclude='docs' "$SCRIPT_DIR/" "$STAGING_DIR/$ADDON_NAME/" cd "$STAGING_DIR" && \ zip -r "$OUTPUT_FILE" "$ADDON_NAME"