From dc7ae987d0ec9cf9b3309548cc8b570576753803 Mon Sep 17 00:00:00 2001 From: BrandonPacewic Date: Wed, 3 Jul 2024 15:22:52 -0700 Subject: [PATCH] General project cleanups --- .clang-format | 23 ------- .gitattributes | 62 ------------------- .github/ISSUE_TEMPLATE/bug-report.md | 2 +- .github/ISSUE_TEMPLATE/feature-request.md | 2 +- .../ISSUE_TEMPLATE/not-sure-if-it-s-a-bug.md | 2 +- .../pull_request_template.md | 36 ----------- .gitignore | 33 +--------- .gitmodules | 2 +- README.md | 2 +- 9 files changed, 6 insertions(+), 158 deletions(-) delete mode 100644 .clang-format delete mode 100644 .github/PULL_REQUEST_TEMPLATE/pull_request_template.md diff --git a/.clang-format b/.clang-format deleted file mode 100644 index 6a172f9b45..0000000000 --- a/.clang-format +++ /dev/null @@ -1,23 +0,0 @@ -Language: CSharp -BasedOnStyle: LLVM -AlignAfterOpenBracket: DontAlign -AlignArrayOfStructures: Left -AlignConsecutiveAssignments: Consecutive -AllowShortBlocksOnASingleLine: false -AllowShortCaseLabelsOnASingleLine: false -AllowShortEnumsOnASingleLine: false -AllowShortFunctionsOnASingleLine: Empty -AllowShortIfStatementsOnASingleLine: Never -AllowShortLambdasOnASingleLine: Inline -AllowShortLoopsOnASingleLine: false -BreakBeforeBraces: Attach -ColumnLimit: 120 -FixNamespaceComments: true -IndentCaseLabels: true -IndentWidth: 4 -KeepEmptyLinesAtTheStartOfBlocks: false -MaxEmptyLinesToKeep: 1 -NamespaceIndentation: All -SeparateDefinitionBlocks: Always -SpaceAfterCStyleCast: true -UseTab: Never diff --git a/.gitattributes b/.gitattributes index 1ff0c42304..176a458f94 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,63 +1 @@ -############################################################################### -# Set default behavior to automatically normalize line endings. -############################################################################### * text=auto - -############################################################################### -# Set default behavior for command prompt diff. -# -# This is need for earlier builds of msysgit that does not have it on by -# default for csharp files. -# Note: This is only used by command line -############################################################################### -#*.cs diff=csharp - -############################################################################### -# Set the merge driver for project and solution files -# -# Merging from the command prompt will add diff markers to the files if there -# are conflicts (Merging from VS is not affected by the settings below, in VS -# the diff markers are never inserted). Diff markers may cause the following -# file extensions to fail to load in VS. An alternative would be to treat -# these files as binary and thus will always conflict and require user -# intervention with every merge. To do so, just uncomment the entries below -############################################################################### -#*.sln merge=binary -#*.csproj merge=binary -#*.vbproj merge=binary -#*.vcxproj merge=binary -#*.vcproj merge=binary -#*.dbproj merge=binary -#*.fsproj merge=binary -#*.lsproj merge=binary -#*.wixproj merge=binary -#*.modelproj merge=binary -#*.sqlproj merge=binary -#*.wwaproj merge=binary - -############################################################################### -# behavior for image files -# -# image files are treated as binary by default. -############################################################################### -#*.jpg binary -#*.png binary -#*.gif binary - -############################################################################### -# diff behavior for common document formats -# -# Convert binary document formats to text before diffing them. This feature -# is only available from the command line. Turn it on by uncommenting the -# entries below. -############################################################################### -#*.doc diff=astextplain -#*.DOC diff=astextplain -#*.docx diff=astextplain -#*.DOCX diff=astextplain -#*.dot diff=astextplain -#*.DOT diff=astextplain -#*.pdf diff=astextplain -#*.PDF diff=astextplain -#*.rtf diff=astextplain -#*.RTF diff=astextplain diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md index 6037f66199..3c0baaabbb 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.md +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -3,7 +3,7 @@ name: Bug Report about: You Found a Bug and we are going to fix it using this info title: '' labels: bug -assignees: matthew17754 +assignees: '' --- diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md index accc720865..9e0da1ed5e 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.md +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -3,7 +3,7 @@ name: Feature Request about: Suggest an Improvement or Idea title: '' labels: enhancement -assignees: matthew17754 +assignees: '' --- diff --git a/.github/ISSUE_TEMPLATE/not-sure-if-it-s-a-bug.md b/.github/ISSUE_TEMPLATE/not-sure-if-it-s-a-bug.md index a6d5c5daad..7fec69acfd 100644 --- a/.github/ISSUE_TEMPLATE/not-sure-if-it-s-a-bug.md +++ b/.github/ISSUE_TEMPLATE/not-sure-if-it-s-a-bug.md @@ -3,7 +3,7 @@ name: Not Sure If It's a Bug about: For when you have a problem but there is no clear single bug title: '' labels: question -assignees: matthew17754 +assignees: '' --- diff --git a/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md b/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md deleted file mode 100644 index fab5004390..0000000000 --- a/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md +++ /dev/null @@ -1,36 +0,0 @@ - - -## Description - - -## Related Issue - - - - - -## Motivation and Context - - -## How Has This Been Tested? - - - - -## Screenshots (if appropriate): - -## Types of changes - -- [ ] Bug fix (non-breaking change which fixes an issue) -- [ ] New feature (non-breaking change which adds functionality) -- [ ] Breaking change (fix or feature that would cause existing functionality to change) - -## Checklist: - - -- [ ] My code follows the code style of this project. -- [ ] My change requires a change to the documentation. -- [ ] I have updated the documentation accordingly. -- [ ] I have read the **CONTRIBUTING** document. -- [ ] I have added tests to cover my changes. -- [ ] All new and existing tests passed. diff --git a/.gitignore b/.gitignore index 5b5e93419e..a7ea447430 100644 --- a/.gitignore +++ b/.gitignore @@ -1,36 +1,5 @@ .vs/ .vscode/ -.DS_Store -**/*/.idea/ /build/ -.gradle/ - -# Binary -*.exe -*.exe.stackdump -*.a -*.dll -*.dll.meta -*.so *.log - -*.pidb.meta -*.pdb.meta -*.mdb.meta - -sysinfo.txt - -!/engine/Assets/Packages/Api.dll -!/engine/Assets/Packages/Nuget/Editor/NugetForUnity.dll -!/engine/Assets/Packages/portable.bouncycastle.1.9.0.nupkg -!/engine/Assets/Packages/BouncyCastle.Crypto.dll -!/engine/Assets/Packages/ServerApi.dll - -!/api/libs/UnityEngine.dll - -importer/Backup/ -importer/Backup1/ -importer/UpgradeLog.htm -importer/UpgradeLog2.htm - -api/Api/Gen/ +.DS_Store diff --git a/.gitmodules b/.gitmodules index 873d40c64d..44da10b0bf 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "mirabuf"] path = mirabuf - url = https://github.com/HiceS/mirabuf + url = https://github.com/HiceS/mirabuf.git diff --git a/README.md b/README.md index 6859991690..b31681cd75 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Here are some of our primary goals for Synthesis: If you are a FIRST robotics student who just wants to use Synthesis, you *don't* need this repo. Simply **install the latest release of Synthesis from [synthesis.autodesk.com/download](https://synthesis.autodesk.com/download.html)**. > [!IMPORTANT] -> Moving to [synthesis.autodesk.com] +> Moving to [synthesis.autodesk.com](http://synthesis.autodesk.com/). If you're a developer who wants to contribute to Synthesis, you're in the right place. Synthesis is comprised of 3 main components that can be developed separately. These components include: