├── .editorconfig ├── .gitattributes ├── .github ├── .FUNDING.yaml ├── .FUNDING.yml ├── .github_README.md ├── .github_README_V1.md ├── CODEOWNERS ├── Discussions │ ├── 1 │ │ ├── Body │ │ │ ├── OldVersions │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ ├── Title │ │ │ └── TITLE.txt │ │ └── URLL │ │ │ └── LINK.urll │ ├── README.md │ └── README_V1.md ├── Funding │ ├── OldVersions │ │ ├── FUNDING_V1.yaml │ │ └── FUNDING_V1.yml │ ├── README.md │ └── README_V1.md ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── issue-template.yml │ └── miscellaneous.yml ├── Issues │ ├── GitHub_Default_IssueLabels.yaml │ ├── README.md │ └── README_V1.md ├── PULL_REQUEST_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md ├── Pull_Requests │ ├── OldVersions │ │ └── English │ │ │ └── 1 │ │ │ └── 1-100 │ │ │ └── README_V1.md │ └── README.md ├── Security │ ├── OldVersions │ │ └── 1 │ │ │ └── 1-100 │ │ │ └── SECURITY_V1.md │ └── README.md ├── SocialPreview │ ├── Bliss_Browser_LanguageSupport_BrightScript_1080pWallpaper_V1_HighCompression.png │ ├── README.md │ ├── README_V1.md │ └── Unused │ │ └── repository-open-graph-template.png └── pull_request_template.md ├── .gitignore ├── 404.html ├── 404.jpeg ├── 404.md ├── AUTHORS ├── AUTOMATE2001.yaml ├── AUTOMATE2001.yml ├── CONTRIBUTING.md ├── COPYINGL ├── CREDITS ├── DRM-free_label.en.svg ├── Docs └── pull_request_template.md ├── INITIAL_COMMIT.txt ├── INSTALL ├── K.desktop ├── LICENSE-GPL.brs ├── LICENSE-GPL.txt ├── LICENSE-GPL3.brs ├── LICENSE-GPL3.txt ├── LICENSE.brs ├── LICENSE.txt ├── OldVersions ├── AUTHORS │ └── English │ │ └── 1 │ │ └── 1-100 │ │ └── AUTHORS_V1 ├── AUTOMATE2001 │ ├── AUTOMATE2001_V1.yaml │ └── AUTOMATE2001_V1.yml ├── CODEOWNERS │ └── CODEOWNERS_V2 ├── CONTRIBUTING │ └── 1 │ │ └── 1-100 │ │ └── CONTRIBUTING_V1.md ├── COPYING │ └── English │ │ └── 1 │ │ └── 1-100 │ │ └── COPYING_V1 ├── CREDITS │ └── English │ │ └── 1 │ │ └── 1-100 │ │ └── CREDITS_V1 ├── EDITORCONFIG │ └── 1 │ │ └── 1-100 │ │ ├── V1.editorconfig │ │ ├── V2.editorconfig │ │ └── V3.editorconfig ├── GITATTRIBUTES │ └── 1 │ │ └── 1-100 │ │ ├── V1.gitattributes │ │ ├── V2.gitattributes │ │ ├── V3.gitattributes │ │ ├── V4.gitattributes │ │ └── V5.gitattributes ├── GITIGNORE │ └── 1 │ │ └── 1-100 │ │ └── V1.gitignore ├── INITIAL_COMMIT │ └── INITIAL_COMMIT_V1.txt ├── INSTALL │ └── English │ │ └── 1 │ │ └── 1-100 │ │ └── INSTALL_V1 ├── ISSUE_TEMPLATE │ ├── CONFIG │ │ └── YML │ │ │ └── V1_config.yml │ ├── ISSUE-TEMPLATE │ │ └── 1 │ │ │ └── 1-100 │ │ │ ├── issue-template_V1.yml │ │ │ ├── issue-template_V2.yml │ │ │ ├── issue-template_V3.yml │ │ │ ├── issue-template_V4.yml │ │ │ ├── issue-template_V5.yml │ │ │ └── issue-template_V6.yml │ └── MISCELLANEOUS │ │ └── YML │ │ └── miscellaneous_V1.yml ├── KDESKTOP │ └── K_V1.desktop ├── LICENSE │ └── GPL3 │ │ ├── LICENSE-GPL3_V1.brs │ │ ├── LICENSE-GPL3_V1.txt │ │ ├── LICENSE-GPL_V1.brs │ │ ├── LICENSE-GPL_V1.txt │ │ ├── LICENSE_V1.brs │ │ └── LICENSE_V1.txt ├── MAKEFILE │ └── 1 │ │ └── 1-100 │ │ └── makefile_V1.mk ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template_V1.md └── README │ └── English │ └── 1 │ ├── README_V0.1.5.md │ ├── README_V0.1.6.md │ └── README_V0.1.md ├── README.md ├── RepoData └── Description │ └── GitHub │ ├── OldVersions │ └── English │ │ └── USA │ │ ├── README.md │ │ └── README_V1.txt │ └── README.txt ├── SECURITY.md ├── SponsorButton.png ├── _config.yml ├── makefile.mk └── pull_request_template.md /.editorconfig: -------------------------------------------------------------------------------- 1 | # Start of script 2 | 3 | # Editor configuration file for Seanpm2001/ 4 | # Generated with Git-Template (V8) at branch: /other/ 5 | 6 | root = true 7 | 8 | # All files 9 | [*] 10 | indent_style = space 11 | indent_size = 2 12 | end_of_line = lf 13 | charset = utf-8 14 | trim_trailing_whitespace = false 15 | insert_final_newline = false 16 | line_wrap_mode = soft wrap 17 | 18 | # Markdown document 19 | [*.md *.mkd *.mdown *.markdown] 20 | indent_style = space 21 | indent_size = 2 22 | end_of_line = lf 23 | charset = utf-8 24 | trim_trailing_whitespace = false 25 | insert_final_newline = false 26 | line_wrap_mode = soft wrap 27 | 28 | # YAML (YAML Ain't Markup Language) source code 29 | [*.yml *.yaml] 30 | indent_style = space 31 | indent_size = 2 32 | end_of_line = lf 33 | charset = utf-8 34 | trim_trailing_whitespace = false 35 | insert_final_newline = false 36 | line_wrap_mode = soft wrap 37 | 38 | # Plain Text document 39 | [*.txt] 40 | indent_style = space 41 | indent_size = 2 42 | end_of_line = lf 43 | charset = utf-8 44 | trim_trailing_whitespace = false 45 | insert_final_newline = false 46 | line_wrap_mode = soft wrap 47 | 48 | # Makefile (GNU Make) 49 | [*.mk *.mak *.make *.makefile] 50 | indent_style = space 51 | indent_size = 2 52 | end_of_line = lf 53 | charset = utf-8 54 | trim_trailing_whitespace = false 55 | insert_final_newline = false 56 | line_wrap_mode = soft wrap 57 | 58 | # HTML (HyperText Markup Language) document 59 | [*.htm *.html *.mhtm *.mhtml *.xhtm *.xhtml] 60 | indent_style = space 61 | indent_size = 2 62 | end_of_line = lf 63 | charset = utf-8 64 | trim_trailing_whitespace = false 65 | insert_final_newline = false 66 | line_wrap_mode = soft wrap 67 | 68 | # SVG (Scalable Vector Graphics) image file 69 | [*.svg] 70 | indent_style = space 71 | indent_size = 2 72 | end_of_line = lf 73 | charset = utf-8 74 | trim_trailing_whitespace = false 75 | insert_final_newline = false 76 | line_wrap_mode = soft wrap 77 | 78 | # Git configuration files 79 | [*.gitignore *.gitattributes *.editorconfig] 80 | indent_style = space 81 | indent_size = 2 82 | end_of_line = lf 83 | charset = utf-8 84 | trim_trailing_whitespace = false 85 | insert_final_newline = false 86 | line_wrap_mode = soft wrap 87 | 88 | # Binary image files 89 | [*.png *.pns *.jpg *.jpeg *.jfif *.jif *.jp2 *.gif *.tif *.tiff *.bmp *.dib] 90 | indent_style = space 91 | indent_size = 2 92 | end_of_line = lf 93 | charset = utf-8 94 | trim_trailing_whitespace = false 95 | insert_final_newline = false 96 | line_wrap_mode = soft wrap 97 | 98 | # File info 99 | 100 | # File type: Editorconfig file (*.editorconfig) 101 | # File version: 3 (Monday, 2021 November 29th at 2:48 pm) 102 | # Line count (including blank lines and compiler line): 105 103 | 104 | # End of script 105 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Start of script 2 | # .gitattributes 3 | # This file defines what languages can show up in the GitHub linguist menu (the menu that tells you what percentage each language is using up on this project. 4 | # Some non-programming languages must be included manually with this file. Want to create your own? Do something similar to what is done here, and name the file 5 | # .gitattributes 6 | # and nothing else, no characters before, no characters after 7 | # Start of linguist script 8 | # HTML (HyperText Markup Language) document 9 | *.htm linguist-detectable=true 10 | *.htm linguist-documentation=false 11 | *.htm linguist-language=HTML 12 | *.html linguist-detectable=true 13 | *.html linguist-documentation=false 14 | *.html linguist-language=HTML 15 | *.mhtm linguist-detectable=true 16 | *.mhtm linguist-documentation=false 17 | *.mhtm linguist-language=HTML 18 | *.mhtml linguist-detectable=true 19 | *.mhtml linguist-documentation=false 20 | *.mhtml linguist-language=HTML 21 | *.xhtm linguist-detectable=true 22 | *.xhtm linguist-documentation=false 23 | *.xhtm linguist-language=HTML 24 | *.xhtml linguist-detectable=true 25 | *.xhtml linguist-documentation=false 26 | *.xhtml linguist-language=HTML 27 | # HTA (HTML Application) file 28 | *.hta linguist-detectable=true 29 | *.hta linguist-documentation=false 30 | *.hta linguist-language=HTML 31 | # CSS (Cascade Styling Sheets) stylesheet file 32 | *.css linguist-detectable=true 33 | *.css linguist-documentation=false 34 | *.css linguist-language=CSS 35 | # BrightScript source file 36 | *.brs linguist-detectable=true 37 | *.brs linguist-documentation=false 38 | *.brs linguist-language=BrightScript 39 | # Less stylesheet file 40 | *.less linguist-detectable=true 41 | *.less linguist-documentation=false 42 | *.less linguist-language=Less 43 | # JSON (JavaScript Object Notation) source file 44 | *.json linguist-detectable=false 45 | *.json linguist-documentation=false 46 | *.json linguist-language=JSON 47 | # WebVTT subtitle file 48 | *.vtt linguist-detectable=true 49 | *.vtt linguist-documentation=false 50 | *.vtt linguist-language=WebVTT 51 | # SubRip subtitle file 52 | *.srt linguist-detectable=true 53 | *.srt linguist-documentation=false 54 | *.srt linguist-language=SubRip-Text 55 | # YAML (YAML Ain't Markup Language) document 56 | # Do not include, as it would become a dominant language that shouldn't be the language people refer this project to 57 | *.yml linguist-detectable=false 58 | *.yml linguist-documentation=false 59 | *.yml linguist-language=YAML 60 | *.yaml linguist-detectable=false 61 | *.yaml linguist-documentation=false 62 | *.yaml linguist-language=YAML 63 | # Markdown 64 | # Do not include, as it would become the 100% dominant language and would hide all the other languages as "other" 65 | *.md linguist-detectable=false 66 | *.md linguist-documentation=false 67 | *.md linguist-language=Markdown 68 | *.mkd linguist-detectable=false 69 | *.mkd linguist-documentation=false 70 | *.mkd linguist-language=Markdown 71 | *.mdown linguist-detectable=false 72 | *.mdown linguist-documentation=false 73 | *.mdown linguist-language=Markdown 74 | *.markdown linguist-detectable=false 75 | *.markdown linguist-documentation=false 76 | *.markdown linguist-language=Markdown 77 | # Makefile (GNU Make) 78 | # Do not include, as it is not needed to be shown 79 | *.mk linguist-detectable=false 80 | *.mk linguist-documentation=false 81 | *.mk linguist-language=Makefile 82 | *.mak linguist-detectable=false 83 | *.mak linguist-documentation=false 84 | *.mak linguist-language=Makefile 85 | *.make linguist-detectable=false 86 | *.make linguist-documentation=false 87 | *.make linguist-language=Makefile 88 | *.makefile linguist-detectable=false 89 | *.makefile linguist-documentation=false 90 | *.makefile linguist-language=Makefile 91 | # SVG (Scalable Vector Graphics) image file 92 | # Do not include, as it would become the 100% dominant language and would hide all the other languages as "other" 93 | *.svg linguist-detectable=false 94 | *.svg linguist-documentation=false 95 | *.svg linguist-language=SVG 96 | # Git Configuration files 97 | # Do not include, as it would become the 100% dominant language and would hide all the other languages as "other" 98 | *.gitattributes linguist-detectable=false 99 | *.gitattributes linguist-documentation=false 100 | *.gitignore linguist-detectable=false 101 | *.gitignore linguist-documentation=false 102 | *.editorconfig linguist-detectable=false 103 | *.editorconfig linguist-documentation=false 104 | # Plain Text document 105 | # Do not include, as it would become the 100% dominant language and would hide all the other languages as "other" 106 | *.txt linguist-detectable=false 107 | *.txt linguist-documentation=false 108 | *.txt linguist-language=Plain-Text 109 | # ReStructuredText 110 | *.rst linguist-detectable=false 111 | *.rst linguist-documentation=false 112 | *.rst linguist-language=ReStructured-Text 113 | # WikiText 114 | *.wiki linguist-detectable=false 115 | *.wiki linguist-documentation=false 116 | *.wiki linguist-language=WikiText 117 | # BibTeX 118 | *.bib linguist-detectable=false 119 | *.bib linguist-documentation=false 120 | *.bib linguist-language=BibTeX 121 | # TeX 122 | *.tex linguist-detectable=false 123 | *.tex linguist-documentation=false 124 | *.tex linguist-language=TeX 125 | # Desktop entry 126 | *.desktop linguist-detectable=false 127 | *.desktop linguist-documentation=false 128 | *.desktop linguist-language=desktop 129 | # INI/CFG 130 | *.ini linguist-detectable=false 131 | *.ini linguist-documentation=false 132 | *.ini linguist-language=INI 133 | *.cfg linguist-detectable=false 134 | *.cfg linguist-documentation=false 135 | *.cfg linguist-language=INI 136 | # CFF 137 | *.cff linguist-detectable=false 138 | *.cff linguist-documentation=false 139 | *.cff linguist-language=Citation-File-Format 140 | # PNG/PNS 141 | *.png linguist-detectable=false 142 | *.png linguist-documentation=false 143 | *.png linguist-language=PNG 144 | *.pns linguist-detectable=false 145 | *.pns linguist-documentation=false 146 | *.pns linguist-language=PNG 147 | # JPG/JPEG/JFIF/JIF 148 | *.jpg linguist-detectable=false 149 | *.jpg linguist-documentation=false 150 | *.jpg linguist-language=JPEG 151 | *.jpeg linguist-detectable=false 152 | *.jpeg linguist-documentation=false 153 | *.jpeg linguist-language=JPEG 154 | *.jfif linguist-detectable=false 155 | *.jfif linguist-documentation=false 156 | *.jfif linguist-language=JPEG 157 | *.jif linguist-detectable=false 158 | *.jif linguist-documentation=false 159 | *.jif linguist-language=JPEG 160 | # JP2 (JPEG 2000) 161 | *.jp2 linguist-detectable=false 162 | *.jp2 linguist-documentation=false 163 | *.jp2 linguist-language=JPEG-2000 164 | # GIF 165 | *.gif linguist-detectable=false 166 | *.gif linguist-documentation=false 167 | *.gif linguist-language=GIF 168 | 169 | # End of linguist script 170 | 171 | # File info 172 | 173 | # File type: gitattributes file (*.gitattributes) 174 | # File version: 5 (2023, Friday, February 3rd at 1:13 pm PST) 175 | # Line count (including blank lines and compiler line): 178 176 | 177 | # End of script 178 | -------------------------------------------------------------------------------- /.github/.FUNDING.yaml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | 5 | patreon: seanpm2001 # Creator page 6 | patreon: seanpm2001_software # Main page 7 | # Replace with a single Patreon username 8 | 9 | open_collective: # Replace with a single Open Collective username 10 | ko_fi: # Replace with a single Ko-fi username 11 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 12 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 13 | liberapay: # Replace with a single Liberapay username 14 | issuehunt: # Replace with a single IssueHunt username 15 | otechie: # Replace with a single Otechie username 16 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 17 | -------------------------------------------------------------------------------- /.github/.FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | 5 | patreon: seanpm2001 # Creator page 6 | patreon: seanpm2001_software # Main page 7 | # Replace with a single Patreon username 8 | 9 | open_collective: # Replace with a single Open Collective username 10 | ko_fi: # Replace with a single Ko-fi username 11 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 12 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 13 | liberapay: # Replace with a single Liberapay username 14 | issuehunt: # Replace with a single IssueHunt username 15 | otechie: # Replace with a single Otechie username 16 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 17 | -------------------------------------------------------------------------------- /.github/.github_README.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # .github folder info 5 | 6 | The `.github` folder in this repository contains data for this repository for hosting on GitHub. This directory did not become mandatory until March 15th 2021. 7 | 8 | This directory contains several features. 9 | 10 | **Funding** - This funding info usually contains a `FUNDING.yml` file that links to sponsor info for this project. A folder called `/Funding` is also included, and at `/Funding/OldVersions/` contains old versions of the funding file. 11 | 12 | **Issues** - This directory contains archives of issues I raised on this project, along with general privacy info. A brief description of the privacy policy goes as follows: 13 | 14 | _I archive my own GitHub issues, and will not archive issues you raise without your permission. This includes replies, comments, and posts._ 15 | 16 | * A YAML file is also included that contains GitHub label data, with hexadecimal color codes, issue description, and issue titles. 17 | 18 | * Sometimes, other YAML files are included for configuration of issues. 19 | 20 | **Coming soon:** A separate YAML file for each issue directory that contains label data 21 | 22 | **Discussions** - Similar to the issues directory, this directory contains archives of discussions I raised on this project, along with general privacy info. A brief description of the privacy policy goes as follows: 23 | 24 | _I archive my own GitHub discussions, and will not archive discussions you raise without your permission. This includes replies, comments, and posts_ 25 | 26 | **SocialPreview** - This directory contains social media preview info for this repository for when you share or search for it. This makes a background appear above the repository in searches or messages, so that the profile picture of the user/organization is not shown in the preview. You can read more about it [here](/.github/SocialPreview/README.md). 27 | 28 | That is currently it at the moment, other than the new description for this process being placed at the root of the directory (the file you are currently reading) 29 | 30 | *** 31 | 32 | ## File info 33 | 34 | **File type:** `Markdown (*.md)` 35 | 36 | **Original creation date:** `Thursday, March 18th 2021 at 3:18 pm)` 37 | 38 | **File version:** `1 (Thursday, March 18th 2021 at 3:18 pm)` 39 | 40 | **Line count (including blank lines and compiler line):** `43` 41 | 42 | *** 43 | -------------------------------------------------------------------------------- /.github/.github_README_V1.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # .github folder info 5 | 6 | The `.github` folder in this repository contains data for this repository for hosting on GitHub. This directory did not become mandatory until March 15th 2021. 7 | 8 | This directory contains several features. 9 | 10 | **Funding** - This funding info usually contains a `FUNDING.yml` file that links to sponsor info for this project. A folder called `/Funding` is also included, and at `/Funding/OldVersions/` contains old versions of the funding file. 11 | 12 | **Issues** - This directory contains archives of issues I raised on this project, along with general privacy info. A brief description of the privacy policy goes as follows: 13 | 14 | _I archive my own GitHub issues, and will not archive issues you raise without your permission. This includes replies, comments, and posts._ 15 | 16 | * A YAML file is also included that contains GitHub label data, with hexadecimal color codes, issue description, and issue titles. 17 | 18 | * Sometimes, other YAML files are included for configuration of issues. 19 | 20 | **Coming soon:** A separate YAML file for each issue directory that contains label data 21 | 22 | **Discussions** - Similar to the issues directory, this directory contains archives of discussions I raised on this project, along with general privacy info. A brief description of the privacy policy goes as follows: 23 | 24 | _I archive my own GitHub discussions, and will not archive discussions you raise without your permission. This includes replies, comments, and posts_ 25 | 26 | **SocialPreview** - This directory contains social media preview info for this repository for when you share or search for it. This makes a background appear above the repository in searches or messages, so that the profile picture of the user/organization is not shown in the preview. You can read more about it [here](/.github/SocialPreview/README.md). 27 | 28 | That is currently it at the moment, other than the new description for this process being placed at the root of the directory (the file you are currently reading) 29 | 30 | *** 31 | 32 | ## File info 33 | 34 | **File type:** `Markdown (*.md)` 35 | 36 | **Original creation date:** `Thursday, March 18th 2021 at 3:18 pm)` 37 | 38 | **File version:** `1 (Thursday, March 18th 2021 at 3:18 pm)` 39 | 40 | **Line count (including blank lines and compiler line):** `43` 41 | 42 | *** 43 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Start of script 2 | # I am going to keep trying on this until I get it right 3 | # @seanpm2001 is the global code owner for this project 4 | /// @seanpm2001 5 | // @seanpm2001 6 | # / @seanpm2001 7 | /* @seanpm2001 8 | * @seanpm2001 9 | # Directories at root 10 | # .github 11 | /.github/ @seanpm2001 12 | # Docs 13 | /Docs/ @seanpm2001 14 | # External 15 | /External/ @seanpm2001 16 | # OldVersions 17 | /OldVersions/ @seanpm2001 18 | # RepoData 19 | /RepoData/ @seanpm2001 20 | # Files at root 21 | .editorconfig @seanpm2001 22 | .gitattributes @seanpm2001 23 | .gitignore @seanpm2001 24 | AUTHORS @seanpm2001 25 | CITATION.cff @seanpm2001 26 | CONTRIBUTING.md @seanpm2001 27 | COPYINGL @seanpm2001 28 | CREDITS @seanpm2001 29 | DRM-free_label.en.svg @seanpm2001 30 | INSTALL @seanpm2001 31 | LINUX_DEFENDER.desktop @seanpm2001 32 | LICENSE.txt @seanpm2001 33 | Pax_tux.png @seanpm2001 34 | PROJECT_LANG_1.py @seanpm2001 35 | PROJECT_LANG_2.sh @seanpm2001 36 | README.md @seanpm2001 37 | SECURITY.md @seanpm2001 38 | SponsorButton.png @seanpm2001 39 | desktop.ini @seanpm2001 40 | makefile.mk @seanpm2001 41 | # Individual file types 42 | # Section A 43 | *.aiff @seanpm2001 44 | *.AIFF @seanpm2001 45 | *.alac @seanpm2001 46 | *.ALAC @seanpm2001 47 | *.applescript @seanpm2001 48 | *.asm @seanpm2001 49 | *.ASM @seanpm2001 50 | # Section B 51 | *.bib @seanpm2001 52 | # Section C 53 | *.c @seanpm2001 54 | *.C @seanpm2001 55 | *.cff @seanpm2001 56 | *.cpp @seanpm2001 57 | *.css @seanpm2001 58 | *.cxx @seanpm2001 59 | # Section D 60 | *.DS_STORE @seanpm2001 61 | *.desktop @seanpm2001 62 | *.dmg @seanpm2001 63 | *.DMG @seanpm2001 64 | # Section E 65 | *.editorconfig @seanpm2001 66 | # Section F 67 | # No entries starting with the letter F 68 | # Section G 69 | *.gif @seanpm2001 70 | *.GIF @seanpm2001 71 | *.gitattributes @seanpm2001 72 | *.gitignore @seanpm2001 73 | *.go @seanpm2001 74 | # Section H 75 | *.h @seanpm2001 76 | *.H @seanpm2001 77 | *.htm @seanpm2001 78 | *.html @seanpm2001 79 | # Section I 80 | *.ini @seanpm2001 81 | *.ipa @seanpm2001 82 | *.IPA @seanpm2001 83 | *.iso @seanpm2001 84 | *.ISO @seanpm2001 85 | # Section J 86 | *.java @seanpm2001 87 | *.js @seanpm2001 88 | *.jpg @seanpm2001 89 | *.jpeg @seanpm2001 90 | *.jpp @seanpm2001 91 | *.json @seanpm2001 92 | *.jspp @seanpm2001 93 | # Section K 94 | # No entries starting with the letter K 95 | # Section L 96 | # No entries starting with the letter L 97 | # Section M 98 | *.m @seanpm2001 99 | *.m4 @seanpm2001 100 | *.mm @seanpm2001 101 | *.mak @seanpm2001 102 | *.make @seanpm2001 103 | *.markdown @seanpm2001 104 | *.md @seanpm2001 105 | *.mdown @seanpm2001 106 | *.metal @seanpm2001 107 | *.mhtm @seanpm2001 108 | *.mhtml @seanpm2001 109 | *.mp3 @seanpm2001 110 | *.mk @seanpm2001 111 | *.mkd @seanpm2001 112 | *.mot @seanpm2001 113 | *.MOT @seanpm2001 114 | *.mov @seanpm2001 115 | *.MOV @seanpm2001 116 | # Section N 117 | # No entries starting with the letter N 118 | # Section O 119 | *.oga @seanpm2001 120 | *.ogg @seanpm2001 121 | # Section P 122 | *.p @seanpm2001 123 | *.P @seanpm2001 124 | *.pas @seanpm2001 125 | *.PAS @seanpm2001 126 | *.php @seanpm2001 127 | *.png @seanpm2001 128 | *.PNG @seanpm2001 129 | *.pl @seanpm2001 130 | *.pro @seanpm2001 131 | *.ps @seanpm2001 132 | *.PS @seanpm2001 133 | *.py @seanpm2001 134 | # Section Q 135 | *.qs @seanpm2001 136 | *.qt @seanpm2001 137 | # Section R 138 | *.rb @seanpm2001 139 | *.rs @seanpm2001 140 | # Section S 141 | *.self @seanpm2001 142 | *.sh @seanpm2001 143 | *.st @seanpm2001 144 | *.sql @seanpm2001 145 | *.svg @seanpm2001 146 | *.swift @seanpm2001 147 | # Section T 148 | *.tex @seanpm2001 149 | *.ts @seanpm2001 150 | *.tsx @seanpm2001 151 | *.ttf @seanpm2001 152 | *.TTF @seanpm2001 153 | *.txt @seanpm2001 154 | *.TXT @seanpm2001 155 | # Section U 156 | *.url @seanpm2001 157 | *.URL @seanpm2001 158 | # Section V 159 | *.v @seanpm2001 160 | *.vh @seanpm2001 161 | *.vhd @seanpm2001 162 | *.vhdl @seanpm2001 163 | *.vtt @seanpm2001 164 | # Setion W 165 | *.wim @seanpm2001 166 | *.woff @seanpm2001 167 | *.WOFF @Seanpm2001 168 | # Section X 169 | *.xhtm @seanpm2001 170 | *.xhtml @seanpm2001 171 | *.xml @seanpm2001 172 | # Section Y 173 | *.yaml @seanpm2001 174 | *.yml @seanpm2001 175 | # Section Z 176 | # No entries starting with the letter Z 177 | 178 | # No more individual file types for now 179 | 180 | # Todo 181 | 182 | # Add every individual file 183 | # Finish adding all file types 184 | # Add new entries as they are added 185 | 186 | # Past goals (completed) 187 | # Add all Wiki entries 188 | # Add all graphics entries 189 | 190 | # File info 191 | # File type: codeowners file (CODEOWNERS) 192 | # File version: 2 (2022, Monday, February 21st at 3:05 pm) 193 | # Line count (including blank lines and compiler line): 195 194 | # End of script 195 | -------------------------------------------------------------------------------- /.github/Discussions/1/Body/OldVersions/README_V1.md: -------------------------------------------------------------------------------- 1 | 4 | ## 👋 Welcome! 5 | We’re using Discussions as a place to connect with other members of our community. We hope that you: 6 | * Ask questions you’re wondering about. 7 | * Share ideas. 8 | * Engage with other community members. 9 | * Welcome others and are open-minded. Remember that this is a community we 10 | build together 💪. 11 | 12 | To get started, comment below with an introduction of yourself and tell us about what you do with this community. 13 | 14 | 23 | -------------------------------------------------------------------------------- /.github/Discussions/1/Body/README.md: -------------------------------------------------------------------------------- 1 | 4 | ## 👋 Welcome! 5 | We’re using Discussions as a place to connect with other members of our community. We hope that you: 6 | * Ask questions you’re wondering about. 7 | * Share ideas. 8 | * Engage with other community members. 9 | * Welcome others and are open-minded. Remember that this is a community we 10 | build together 💪. 11 | 12 | To get started, comment below with an introduction of yourself and tell us about what you do with this community. 13 | 14 | 23 | -------------------------------------------------------------------------------- /.github/Discussions/1/Title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Welcome to Bliss_Browser_BrightScript Discussions! #1 2 | -------------------------------------------------------------------------------- /.github/Discussions/1/URLL/LINK.urll: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Bliss_Browser_BrightScript/discussions/1 2 | -------------------------------------------------------------------------------- /.github/Discussions/README.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Privacy policy 5 | 6 | I archive my own GitHub discussions and issues. By default, I respect users privacy, and will not have your issue or discussion archived. You have to specifically ask for it to be archived if you want it to be. 7 | 8 | *** 9 | -------------------------------------------------------------------------------- /.github/Discussions/README_V1.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Privacy policy 5 | 6 | I archive my own GitHub discussions and issues. By default, I respect users privacy, and will not have your issue or discussion archived. You have to specifically ask for it to be archived if you want it to be. 7 | 8 | *** 9 | -------------------------------------------------------------------------------- /.github/Funding/OldVersions/FUNDING_V1.yaml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | 5 | patreon: seanpm2001 # Creator page 6 | patreon: seanpm2001_software # Main page 7 | # Replace with a single Patreon username 8 | 9 | open_collective: # Replace with a single Open Collective username 10 | ko_fi: # Replace with a single Ko-fi username 11 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 12 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 13 | liberapay: # Replace with a single Liberapay username 14 | issuehunt: # Replace with a single IssueHunt username 15 | otechie: # Replace with a single Otechie username 16 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 17 | -------------------------------------------------------------------------------- /.github/Funding/OldVersions/FUNDING_V1.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | 5 | patreon: seanpm2001 # Creator page 6 | patreon: seanpm2001_software # Main page 7 | # Replace with a single Patreon username 8 | 9 | open_collective: # Replace with a single Open Collective username 10 | ko_fi: # Replace with a single Ko-fi username 11 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 12 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 13 | liberapay: # Replace with a single Liberapay username 14 | issuehunt: # Replace with a single IssueHunt username 15 | otechie: # Replace with a single Otechie username 16 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 17 | -------------------------------------------------------------------------------- /.github/Funding/README.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # About the funding directory 5 | 6 | The funding directory contains an archive of the funding file for this project. The funding file enables GitHub sponsorships. The main funding file is 1 directory below, located [here](/.github/FUNDING.yml). 7 | 8 | *** 9 | 10 | ## Sponsor info 11 | 12 | ![/SponsorButton.png](/SponsorButton.png) 13 | 14 | You can sponsor this project if you like, but please specify what you want to donate to. [See the funds you can donate to here](https://github.com/seanpm2001/Sponsor-info/tree/main/For-sponsors) 15 | 16 | You can view other sponsor info [here](https://github.com/seanpm2001/Sponsor-info/) 17 | 18 | Try it out! The sponsor button is right up next to the watch/unwatch button. 19 | 20 | *** 21 | 22 | ## File info 23 | 24 | **File type:** `Markdown (*.md)` 25 | 26 | **Original creation date:** `Thursday, March 18th 2021 at 3:33 pm)` 27 | 28 | **File version:** `1 (Thursday, March 18th 2021 at 3:33 pm)` 29 | 30 | **Line count (including blank lines and compiler line):** `33` 31 | 32 | *** 33 | -------------------------------------------------------------------------------- /.github/Funding/README_V1.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # About the funding directory 5 | 6 | The funding directory contains an archive of the funding file for this project. The funding file enables GitHub sponsorships. The main funding file is 1 directory below, located [here](/.github/FUNDING.yml). 7 | 8 | *** 9 | 10 | ## Sponsor info 11 | 12 | ![/SponsorButton.png](/SponsorButton.png) 13 | 14 | You can sponsor this project if you like, but please specify what you want to donate to. [See the funds you can donate to here](https://github.com/seanpm2001/Sponsor-info/tree/main/For-sponsors) 15 | 16 | You can view other sponsor info [here](https://github.com/seanpm2001/Sponsor-info/) 17 | 18 | Try it out! The sponsor button is right up next to the watch/unwatch button. 19 | 20 | *** 21 | 22 | ## File info 23 | 24 | **File type:** `Markdown (*.md)` 25 | 26 | **Original creation date:** `Thursday, March 18th 2021 at 3:33 pm)` 27 | 28 | **File version:** `1 (Thursday, March 18th 2021 at 3:33 pm)` 29 | 30 | **Line count (including blank lines and compiler line):** `33` 31 | 32 | *** 33 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Opening an issue in this SNU Programming Tools IDE project 5 | 6 | Thank you for taking the time to open an issue in this SNU web ide project. Please fill out this form to complete the process of opening an issue: 7 | 8 | #### General description 9 | 10 | Please write a description with at least 75 characters in the following space. Limit: 8,196 characters 11 | 12 | ``` 13 | Your description goes here 14 | ``` 15 | 16 | #### Steps to Reproduce 17 | 18 | Steps should be clear. 19 | 20 | Add steps here 21 | 22 | ``` 23 | Your description goes here 24 | ``` 25 | 26 | #### Expected Results 27 | 28 | 29 | ``` 30 | Your description goes here 31 | ``` 32 | 33 | #### Actual Results 34 | 35 | 36 | ``` 37 | Your description goes here 38 | ``` 39 | 40 | ### Browsers Affected 41 | 42 | Please consider opening an issue in [SNU BrowserNose](https://github.com/seanpm2001/SNU_BrowserNose) as well, if BrowserNose fails to do the task. 43 | 44 | Please also specify your virtual machine specs you used for testing if you used a virtual machine, in the space below. Max: 8,196 characters 45 | 46 | Also, please specify the specific browser version down to the last number (example: Firefox 88.0.1esr) and specify if you are running on a desktop or mobile device, and if it (the host system) is virtualized or not 47 | 48 | 49 | - [ ] Tor 50 | - [ ] Mozilla Firefox 51 | - [ ] SeaMonkey 52 | - [ ] Pale Moon 53 | - [ ] TenFourFox 54 | - [ ] Konquerer 55 | - [ ] Line Mode Browser 56 | - [ ] IceWeasel/IceCat 57 | - [ ] IceRaven 58 | - [ ] DuckDuckGo 59 | - [ ] Safari 60 | - [ ] Netscape Navigator 61 | - [ ] Nexus 62 | - [ ] SlimJet 63 | - [ ] AOL Explorer 64 | - [ ] Opera Mini 65 | - [ ] Android stock browser 66 | - [ ] Dot browser 67 | - [ ] Microsoft Edge 68 | - [ ] Opera 69 | - [ ] Samsung Internet 70 | - [ ] Google Chrome 71 | - [ ] Google Chromium 72 | - [ ] Internet Explorer 73 | - [ ] Other 74 | 75 | **Virtual machine config** 76 | 77 | ``` 78 | Sample (overwrite this) 79 | Microsoft Windows XP Service Pack 3 80 | Registry modification for activation 81 | Internet Explorer 6 82 | VirtualBox 6.1.20 (64 bit) 83 | 512 MB RAM 84 | 32 Gigabyte disk space 85 | Host operating system: Kubuntu 22.04 86 | VirtualBox guest additions? Installed 87 | Internet type: Broadband 88 | Specific error: Page won't load, things aren't displaying correctly, see above 89 | ``` 90 | 91 | ### Versions 92 | 93 | What version are you using? (supported versions only) 94 | 95 | ``` 96 | Your description goes here 97 | ``` 98 | 99 | - [ ] I have filled out all fields 100 | - [ ] I agree to the terms of the [GPL3 license](https://www.gnu.org/licenses/gpl-3.0.en.html) 101 | - [ ] I have confirmed this issue isn't a duplicate 102 | - [ ] I agree to follow the [code of conduct](https://github.com/seanpm2001/CODE_OF_CONDUCT.md) 103 | - [ ] I want my answer to be archived into the repository 104 | 105 | *** 106 | 107 | 113 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: I want to help develop 4 | url: https://github.com/seanpm2001/Teams/discussions/ 5 | about: Thank you for your interest in this project! Please consider joining a team to start developing with me 6 | - name: I want to help translate 7 | url: https://github.com/seanpm2001/Teams/discussions/ 8 | about: Thank you for your interest in this project! Please consider joining a team to start translating projects with me 9 | 10 | # File info 11 | # File version: 1 (2022, Thursday, May 19th at 7:07 pm PST) 12 | # File type: GitHub issue template config file (*.yml) 13 | # Line count (including blank lines and compiler line): 14 14 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue-template.yml: -------------------------------------------------------------------------------- 1 | name: General issue 2 | description: Report a bug or other issue/Opening an issue in this SNU Programming Tools IDE project 3 | body: 4 | - type: markdown 5 | attributes: 6 | value: | 7 | Unknown 8 | - type: checkboxes 9 | attributes: 10 | label: Prerequisites 11 | description: | 12 | To rule out invalid issues, confirm and check each one of the checkboxes. 13 | options: 14 | - label: I verified that this is not an existing issue 15 | required: true 16 | - label: This is not a [question, poll, or discussion](https://github.com/seanpm2001/SNU_2D_ProgrammingTools/discussions/) 17 | required: true 18 | - label: I checked the [documentation](https://github.com/seanpm2001/SNU_2D_ProgrammingTools/tree/master/Docs/) to understand that the issue I report is not a normal behavior 19 | required: true 20 | validations: 21 | required: true 22 | 23 | - type: checkboxes 24 | attributes: 25 | label: I tried to reproduce the issue when... 26 | options: 27 | - label: The repository was downloaded to my device/was viewing through the web browser 28 | required: true 29 | - label: I was using the latest version of the project 30 | required: true 31 | - label: I was using the version from the right source 32 | required: false 33 | - label: I did not modify the project 34 | required: false 35 | - type: textarea 36 | attributes: 37 | label: Description 38 | description: Description of the bug or feature. Please also list the version of the programming language you tested with. 39 | validations: 40 | required: true 41 | 42 | - type: textarea 43 | attributes: 44 | label: Steps to Reproduce 45 | placeholder: | 46 | 1. [First Step] 47 | 2. [Second Step] 48 | 3. [and so on...] 49 | validations: 50 | required: true 51 | 52 | - type: textarea 53 | attributes: 54 | label: Expected Results 55 | description: What you expected to happen, example - no error is thrown 56 | placeholder: | 57 | 1. [First Step] 58 | 2. [Second Step] 59 | 3. [and so on...] 60 | validations: 61 | required: true 62 | 63 | - type: textarea 64 | attributes: 65 | label: Actual results 66 | description: What actually happened, error is thrown 67 | validations: 68 | required: true 69 | 70 | - type: input 71 | attributes: 72 | label: Git-image repository version 73 | validations: 74 | required: true 75 | 76 | - type: checkboxes 77 | attributes: 78 | label: Browsers effected, please open an issue in [SNU BrowserNose](https://github.com/seanpm2001/SNU_BrowserNose) as well, if BrowserNose fails to do the task. 79 | options: 80 | label: Tor 81 | required: false 82 | label: Mozilla Firefox 83 | required: false 84 | label: SeaMonkey 85 | required: false 86 | label: Pale Moon 87 | required: false 88 | label: TenFourFox 89 | required: false 90 | label: Konquerer 91 | required: false 92 | label: Line Mode Browser 93 | required: false 94 | label: IceWeasel/IceCat 95 | required: false 96 | label: IceRaven 97 | required: false 98 | label: DuckDuckGo 99 | required: false 100 | label: Safari 101 | required: false 102 | label: Netscape Navigator 103 | required: false 104 | label: Nexus 105 | required: false 106 | label: SlimJet 107 | required: false 108 | label: AOL Explorer 109 | required: false 110 | label: Opera Mini 111 | required: false 112 | label: Android stock browser 113 | required: false 114 | label: Dot browser 115 | required: false 116 | label: Microsoft Edge 117 | required: false 118 | label: Opera 119 | required: false 120 | label: Samsung Internet 121 | required: false 122 | label: Google Chrome 123 | required: false 124 | label: Google Chromium 125 | required: false 126 | label: Internet Explorer 127 | required: false 128 | label: Other 129 | required: false 130 | validations: 131 | required: true 132 | 133 | - type: input 134 | attributes: 135 | label: Specify the specific browser version down to the last number (example Firefox 88.0.1esr) 136 | validations: 137 | required: true 138 | 139 | - type: checkboxes 140 | attributes: 141 | label: I am running this repository in a virtual machine... 142 | options: 143 | - label: Yes (with Oracle VM VirtualBox) 144 | required: false 145 | - label: Yes (with VMWare) 146 | required: false 147 | - label: Yes (with Hyper-V) 148 | required: false 149 | - label: Yes (with Qemu) 150 | required: false 151 | - label: Yes (with another virtual machine option that isn't listed) 152 | required: false 153 | - label: No (I am running it on my host computer) 154 | required: false 155 | 156 | - type: textarea 157 | attributes: 158 | label: Additional virtual machine configuration 159 | placeholder: | 160 | Sample (overwrite this) 161 | Microsoft Windows XP Service Pack 3 162 | Registry modification for activation 163 | Internet Explorer 6 164 | VirtualBox 6.1.20 (64 bit) 165 | 512 MB RAM 166 | 32 Gigabyte disk space 167 | Host operating system: Kubuntu 22.04 168 | VirtualBox guest additions? Installed 169 | Internet type: Broadband 170 | Specific error: Page won't load, things aren't displaying correctly, see above validations: 171 | validations: 172 | required: true 173 | 174 | - type: textarea 175 | attributes: 176 | label: Version used 177 | placeholder: | 178 | What version are you using? (supported versions only) 179 | validations: 180 | required: true 181 | 182 | attributes: 183 | label: Validate issue 184 | options: 185 | - label: I have filled out all the fields 186 | required: true 187 | - label: I agree to the terms of the [GPL3 license](https://www.gnu.org/licenses/gpl-3.0.en.html) 188 | required: true 189 | - label: I have confirmed this issue isn't a duplicate 190 | required: true 191 | - label: I agree to follow the [code of conduct](https://github.com/seanpm2001/CODE_OF_CONDUCT.md) 192 | required: true 193 | - label: I want my answer to be archived into the repository 194 | required: false 195 | 196 | # Issue template info 197 | # 6B (2022, Thursday, May 19th at 6:59 pm PST) 198 | # File type: YAML document (*.yml *.yaml) 199 | # Line count (including blank lines and compiler line): 201 200 | # File purpose: Serving as a modern issue template for this project. 201 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/miscellaneous.yml: -------------------------------------------------------------------------------- 1 | name: Miscellaneous 2 | description: Write a general issue without too much questioning 3 | body: 4 | - type: markdown 5 | attributes: 6 | value: | 7 | Unknown 8 | - type: checkboxes 9 | attributes: 10 | label: Prerequisites 11 | description: | 12 | To rule out invalid issues, confirm and check each one of the checkboxes. 13 | options: 14 | - label: I verified that this is not an existing issue 15 | required: true 16 | - label: This is not a question, poll, or discussion 17 | required: true 18 | - label: I checked the documentation to understand that the issue I report is not a normal behavior 19 | required: true 20 | - type: textarea 21 | attributes: 22 | label: Description 23 | description: Your issue description. Make sure to utilize Markdown to make your life easier :) 24 | validations: 25 | required: true 26 | # File info 27 | # File type: GitHub bug report issue template (*.yml) 28 | # File version: 1 (2022, Wednesday, November 23rd at 6:31 pm PST) 29 | # Line count (including blank lines and compiler line): 30 30 | -------------------------------------------------------------------------------- /.github/Issues/GitHub_Default_IssueLabels.yaml: -------------------------------------------------------------------------------- 1 | # Default GitHub issue data file (YAML) 2 | issuelabel_1: color1: "#ffffff" title1: "wontfix" description1: "This will not be worked on" 3 | issueLabel_2: color2: "#d876e3" title2: "question" description2: "Further information is requested" 4 | issueLabel_3: color3: "#e4e669" title3: "invalid" description3: "This doesn't seem right" 5 | issueLabel_4: color4: "#008672" title4: "help wanted" description4: "Extra attention is needed" 6 | issueLabel_5: color5: "#7057ff" title5: "good first issue" description5: "Good for newcomers" 7 | issueLabel_6: color6: "#a2eeef" title6: "enhancement" description6: "New feature or request" 8 | issueLabel_7: color7: "#cfd3d7" title7: "duplicate" description7: "This issue or pull request already exists" 9 | issueLabel_8: color8: "#0075ca" title8: "documentation" description8: "Improvements or additions to documentation" 10 | issueLabel_9: color9: "#d73a4a" title9: "bug" description9: "Something isn't working" 11 | # Users can also create their own issue labels, and customize the color, title, and description 12 | # issueLabel_10: color10: "#000000" title10: "void" description10: "not yet created" 13 | # No known limit on # of issue labels 14 | # End of file 15 | -------------------------------------------------------------------------------- /.github/Issues/README.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Privacy policy 5 | 6 | I archive my own GitHub discussions and issues. By default, I respect users privacy, and will not have your issue or discussion archived. You have to specifically ask for it to be archived if you want it to be. 7 | 8 | *** 9 | -------------------------------------------------------------------------------- /.github/Issues/README_V1.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Privacy policy 5 | 6 | I archive my own GitHub discussions and issues. By default, I respect users privacy, and will not have your issue or discussion archived. You have to specifically ask for it to be archived if you want it to be. 7 | 8 | *** 9 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Opening a pull request on this SNU IDE project 5 | 6 | 7 | Thank you for taking the time to open a PR in this SNU web ide project. Please fill out this form to complete the process of opening an issue: 8 | 9 | #### General description 10 | 11 | Please write a description with at least 75 characters in the following space. Limit: 8,196 characters 12 | 13 | ``` 14 | Your description goes here 15 | ``` 16 | 17 | #### Reference Issue 18 | 19 | 20 | ``` 21 | add the link to the issue to the # below 22 | ``` 23 | 24 | #1 // Overwrite this line 25 | 26 | What does your pull request do? 27 | 28 | - [ ] Fixes a bug 29 | - [ ] Adds a feature 30 | - [ ] Fixes a security problem 31 | - [ ] Fixes a typo 32 | - [ ] Adds translation 33 | 34 | ### Versions 35 | 36 | What version are you using? (supported versions only) 37 | 38 | ``` 39 | Your description goes here 40 | ``` 41 | 42 | - [ ] I have filled out all fields 43 | - [ ] I agree to the terms of the [GPL3 license](https://www.gnu.org/licenses/gpl-3.0.en.html) 44 | - [ ] I have confirmed this pull request isn't a duplicate 45 | - [ ] I agree to follow the [code of conduct](https://github.com/seanpm2001/CODE_OF_CONDUCT.md) 46 | - [ ] I want my answer to be archived into the repository 47 | 48 | *** 49 | 50 | 56 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Creating a pull request 5 | 6 | Thank you for taking the time to create a pull request in this repository! Please fill out this form before submitting your PR. 7 | 8 | **Note:** you can change the language of the formatting if needed, but it must be valid syntax. Supported languages include: ASCIIDoc, Org mode, Markdown, WikiText, ReStructuredText, Creole, Pod, RDoc, Textile, and plain text. Be sure to change thw `markdown` tag to the appropriate language. 9 | 10 | Provide a general summary of your changes in the Title above 11 | 12 | ```markdown 13 | Your summary description (title) goes here 14 | ``` 15 | 16 | ## Description 17 | 18 | Describe your changes in detail 19 | 20 | ```markdown 21 | Your issue description (body) goes here 22 | ``` 23 | 24 | ## Related Issue 25 | 26 | - [ ] This project only accepts pull requests related to open issues 27 | - [ ] If suggesting a new feature or change, please discuss it in an issue first 28 | - [ ] If fixing a bug, there should be an issue describing it with steps to reproduce 29 | - [ ] Please link to the issue here: 30 | 31 | ```markdown 32 | Link to the issue here, #__ 33 | ``` 34 | 35 | ## Motivation and Context 36 | 37 | Why is this change required? What problem does it solve? 38 | 39 | ```markdown 40 | 41 | ``` 42 | 43 | ## How Has This Been Tested? 44 | 45 | - [ ] Please describe in detail how you tested your changes. 46 | - [ ] Include details of your testing environment, and the tests you ran to. 47 | - [ ] see how your change affects other areas of the code, etc. 48 | 49 | ## Screenshots (if appropriate): 50 | 51 | Please include the screenshots inside your pull request as well as a local link (hard copy) 52 | 53 | **Warning:** `.webp` and `.heif` images are not accepted. Please convert them to a different format (such as PNG, JPG, JPEG, JIF, GIF, TIF, etc.) 54 | 55 | **Warning:** Images outside of `/.github/Pull_Requests/Queue/PR/` are not accepted, and will be removed from the PR within 24 hours if not fixed 56 | 57 | ```markdown 58 | Remove this section, and only include the links if you use this section. Be sure to delete image fields that are not needed. Max screenshots per PR: 5. Also, if screenshots aren't necessary, please delete this entire section 59 | 60 | ![Example1](/.github/Pull_Requests/Queue/PR/Image.png) 61 | ![Example2](/.github/Pull_Requests/Queue/PR/Image.png) 62 | ![Example3](/.github/Pull_Requests/Queue/PR/Image.png) 63 | ![Example4](/.github/Pull_Requests/Queue/PR/Image.png) 64 | ![Example5](/.github/Pull_Requests/Queue/PR/Image.png) 65 | ``` 66 | 67 | ## Types of changes 68 | 69 | What types of changes does your code introduce? Put an `x` in all the boxes that apply: 70 | 71 | - [ ] Bug fix (non-breaking change which fixes an issue) 72 | - [ ] New feature (non-breaking change which adds functionality) 73 | - [ ] Breaking change (fix or feature that would cause existing functionality to change) 74 | 75 | ## Checklist: 76 | 77 | Go over all the following points, and put an `x` in all the boxes that apply. 78 | 79 | If you're unsure about any of these, don't hesitate to ask. We're here to help! 80 | 81 | - [ ] My source code (if source code is provided) follows the source code style of this project. 82 | - [ ] My change requires a change to the documentation. 83 | - [ ] My change does not delete necessary files 84 | - [ ] I have updated the documentation accordingly. 85 | - [ ] I have read the [**`CONTRIBUTING`**](/CONTRIBUTING.md) document in my spoken language, and understand the terms 86 | - [ ] I have added tests to cover my changes. 87 | - [ ] I have gone through all the steps, and have thoroughly read the instructions 88 | 89 | *** 90 | 91 | 102 | -------------------------------------------------------------------------------- /.github/Pull_Requests/OldVersions/English/1/1-100/README_V1.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Privacy policy 5 | 6 | I archive my own GitHub discussions, pull requests, and issues. By default, I respect users privacy, and will not have your issue, pull request, or discussion archived. You have to specifically ask for it to be archived if you want it to be. 7 | 8 | *** 9 | -------------------------------------------------------------------------------- /.github/Pull_Requests/README.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Privacy policy 5 | 6 | I archive my own GitHub discussions, pull requests, and issues. By default, I respect users privacy, and will not have your issue, pull request, or discussion archived. You have to specifically ask for it to be archived if you want it to be. 7 | 8 | *** 9 | -------------------------------------------------------------------------------- /.github/Security/OldVersions/1/1-100/SECURITY_V1.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Security Policy 5 | 6 | ## Supported Versions 7 | 8 | This project is a Git-image project, and doesn't have security issues like common repositories. They are still possible, and instructions will be listed below. 9 | 10 | ## Version history 11 | 12 | | Version | Supported | Support status | 13 | | ------- | ------------------ |-----------------| 14 | | Versions | not | listed yet | 15 | | v1.0.0 | :heavy_check_mark: | NOT YET RELEASED | 16 | 17 | ## Reporting a Vulnerability 18 | 19 | DO NOT REPORT A ZERO DAY VULNERABILITY PUBLICLY! 20 | 21 | Please instead direct message me via GitHub. If there is no response within 90 days, you can post the vulnerability as an issue, as part of the standard 0 day security exploit reporting guidelines. 22 | 23 | If a vulnerability is caused by an outdated dependancy, you can report it publicly, as it usually isn't that much of a problem. 24 | 25 | Other security currently isn't available. If there are any further questions, message me via email at [seanpm2001-mailing-list@protonmail.com](mailto:seanpm2001-mailing-list@protonmail.com) 26 | 27 | *** 28 | 29 | ## File info 30 | 31 | **File type:** `Markdown document (*.md *.mkd *.mdown *.markdown)` 32 | 33 | **File version:** `1 (2022, Thursday, May 19th at 3:05 pm PST)` 34 | 35 | **Line count (including blank lines and compiler line):** `72` 36 | 37 | *** 38 | 39 | ## File history 40 | 41 |

Click/tap here to expand/collapse the history for this file

42 | 43 | **Version 1 (2022, Thursday, May 19th at 3:05 pm PST)** 44 | 45 | > Changes: 46 | 47 | > * Started the file 48 | 49 | > * Added the supported versions section 50 | 51 | > * Added the version history section 52 | 53 | > * Added the reporting a vulnerability section 54 | 55 | > * Added the file info section 56 | 57 | > * Added the file history section 58 | 59 | > * No other changes in version 1 60 | 61 | **Version 2 (Coming soon)** 62 | 63 | > Changes: 64 | 65 | > * Coming soon 66 | 67 | > * No other changes in version 2 68 | 69 |
70 | 71 | *** 72 | -------------------------------------------------------------------------------- /.github/Security/README.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Security Policy 5 | 6 | ## Supported Versions 7 | 8 | This project is a Git-image project, and doesn't have security issues like common repositories. They are still possible, and instructions will be listed below. 9 | 10 | ## Version history 11 | 12 | | Version | Supported | Support status | 13 | | ------- | ------------------ |-----------------| 14 | | Versions | not | listed yet | 15 | | v1.0.0 | :heavy_check_mark: | NOT YET RELEASED | 16 | 17 | ## Reporting a Vulnerability 18 | 19 | DO NOT REPORT A ZERO DAY VULNERABILITY PUBLICLY! 20 | 21 | Please instead direct message me via GitHub. If there is no response within 90 days, you can post the vulnerability as an issue, as part of the standard 0 day security exploit reporting guidelines. 22 | 23 | If a vulnerability is caused by an outdated dependancy, you can report it publicly, as it usually isn't that much of a problem. 24 | 25 | Other security currently isn't available. If there are any further questions, message me via email at [seanpm2001-mailing-list@protonmail.com](mailto:seanpm2001-mailing-list@protonmail.com) 26 | 27 | *** 28 | 29 | ## File info 30 | 31 | **File type:** `Markdown document (*.md *.mkd *.mdown *.markdown)` 32 | 33 | **File version:** `1 (2022, Thursday, May 19th at 3:05 pm PST)` 34 | 35 | **Line count (including blank lines and compiler line):** `72` 36 | 37 | *** 38 | 39 | ## File history 40 | 41 |

Click/tap here to expand/collapse the history for this file

42 | 43 | **Version 1 (2022, Thursday, May 19th at 3:05 pm PST)** 44 | 45 | > Changes: 46 | 47 | > * Started the file 48 | 49 | > * Added the supported versions section 50 | 51 | > * Added the version history section 52 | 53 | > * Added the reporting a vulnerability section 54 | 55 | > * Added the file info section 56 | 57 | > * Added the file history section 58 | 59 | > * No other changes in version 1 60 | 61 | **Version 2 (Coming soon)** 62 | 63 | > Changes: 64 | 65 | > * Coming soon 66 | 67 | > * No other changes in version 2 68 | 69 |
70 | 71 | *** 72 | -------------------------------------------------------------------------------- /.github/SocialPreview/Bliss_Browser_LanguageSupport_BrightScript_1080pWallpaper_V1_HighCompression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Bliss_Browser_BrightScript/b4e3147bb6e9eb4541ebd795a9624fd68daa86d4/.github/SocialPreview/Bliss_Browser_LanguageSupport_BrightScript_1080pWallpaper_V1_HighCompression.png -------------------------------------------------------------------------------- /.github/SocialPreview/README.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # About the social preview directory 5 | 6 | The social preview directory contains data related to social media previews of repositories. On GitHub projects, this data is located at `/.github/SocialPreview/` 7 | 8 | GitHub has a 1.00 megabyte (1,000,000 bytes or 1,048,576 bytes, I am not sure if GitHub uses base 2 or base 10 binary prefix numbering) image upload limit. Images I wanted to use but couldn't are located in `/.github/SocialPreview/UnusedAssets/` 9 | 10 | These images currently only show when searching for repositories or searching through label. They don't show up anywhere else (as of March 18th 2021) with these preview templates, sharing a link to this repository will show the preview image, rather than my GitHub profile picture or organization profile picture. 11 | 12 | The standard template is also included, but isn't used. 13 | 14 | These previews started getting added to repositories on March 17th 2021 during a new repository update period, which included new features to add to all new repositories. 15 | 16 | Included files are in PNG, JPG/JPEG, or SVG format. 17 | 18 | *** 19 | 20 | ## File info 21 | 22 | **File type:** `Markdown (*.md)` 23 | 24 | **Original creation date:** `Thursday, March 18th 2021 at 3:07 pm)` 25 | 26 | **File version:** `1 (Thursday, March 18th 2021 at 3:07 pm)` 27 | 28 | **Line count (including blank lines and compiler line):** `31` 29 | 30 | *** 31 | -------------------------------------------------------------------------------- /.github/SocialPreview/README_V1.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # About the social preview directory 5 | 6 | The social preview directory contains data related to social media previews of repositories. On GitHub projects, this data is located at `/.github/SocialPreview/` 7 | 8 | GitHub has a 1.00 megabyte (1,000,000 bytes or 1,048,576 bytes, I am not sure if GitHub uses base 2 or base 10 binary prefix numbering) image upload limit. Images I wanted to use but couldn't are located in `/.github/SocialPreview/UnusedAssets/` 9 | 10 | These images currently only show when searching for repositories or searching through label. They don't show up anywhere else (as of March 18th 2021) with these preview templates, sharing a link to this repository will show the preview image, rather than my GitHub profile picture or organization profile picture. 11 | 12 | The standard template is also included, but isn't used. 13 | 14 | These previews started getting added to repositories on March 17th 2021 during a new repository update period, which included new features to add to all new repositories. 15 | 16 | Included files are in PNG, JPG/JPEG, or SVG format. 17 | 18 | *** 19 | 20 | ## File info 21 | 22 | **File type:** `Markdown (*.md)` 23 | 24 | **Original creation date:** `Thursday, March 18th 2021 at 3:07 pm)` 25 | 26 | **File version:** `1 (Thursday, March 18th 2021 at 3:07 pm)` 27 | 28 | **Line count (including blank lines and compiler line):** `31` 29 | 30 | *** 31 | -------------------------------------------------------------------------------- /.github/SocialPreview/Unused/repository-open-graph-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Bliss_Browser_BrightScript/b4e3147bb6e9eb4541ebd795a9624fd68daa86d4/.github/SocialPreview/Unused/repository-open-graph-template.png -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Creating a pull request 5 | 6 | Thank you for taking the time to create a pull request in this repository! Please fill out this form before submitting your PR. 7 | 8 | **Note:** you can change the language of the formatting if needed, but it must be valid syntax. Supported languages include: ASCIIDoc, Org mode, Markdown, WikiText, ReStructuredText, Creole, Pod, RDoc, Textile, and plain text. Be sure to change thw `markdown` tag to the appropriate language. 9 | 10 | Provide a general summary of your changes in the Title above 11 | 12 | ```markdown 13 | Your summary description (title) goes here 14 | ``` 15 | 16 | ## Description 17 | 18 | Describe your changes in detail 19 | 20 | ```markdown 21 | Your issue description (body) goes here 22 | ``` 23 | 24 | ## Related Issue 25 | 26 | - [ ] This project only accepts pull requests related to open issues 27 | - [ ] If suggesting a new feature or change, please discuss it in an issue first 28 | - [ ] If fixing a bug, there should be an issue describing it with steps to reproduce 29 | - [ ] Please link to the issue here: 30 | 31 | ```markdown 32 | Link to the issue here, #__ 33 | ``` 34 | 35 | ## Motivation and Context 36 | 37 | Why is this change required? What problem does it solve? 38 | 39 | ```markdown 40 | 41 | ``` 42 | 43 | ## How Has This Been Tested? 44 | 45 | - [ ] Please describe in detail how you tested your changes. 46 | - [ ] Include details of your testing environment, and the tests you ran to. 47 | - [ ] see how your change affects other areas of the code, etc. 48 | 49 | ## Screenshots (if appropriate): 50 | 51 | Please include the screenshots inside your pull request as well as a local link (hard copy) 52 | 53 | **Warning:** `.webp` and `.heif` images are not accepted. Please convert them to a different format (such as PNG, JPG, JPEG, JIF, GIF, TIF, etc.) 54 | 55 | **Warning:** Images outside of `/.github/Pull_Requests/Queue/PR/` are not accepted, and will be removed from the PR within 24 hours if not fixed 56 | 57 | ```markdown 58 | Remove this section, and only include the links if you use this section. Be sure to delete image fields that are not needed. Max screenshots per PR: 5. Also, if screenshots aren't necessary, please delete this entire section 59 | 60 | ![Example1](/.github/Pull_Requests/Queue/PR/Image.png) 61 | ![Example2](/.github/Pull_Requests/Queue/PR/Image.png) 62 | ![Example3](/.github/Pull_Requests/Queue/PR/Image.png) 63 | ![Example4](/.github/Pull_Requests/Queue/PR/Image.png) 64 | ![Example5](/.github/Pull_Requests/Queue/PR/Image.png) 65 | ``` 66 | 67 | ## Types of changes 68 | 69 | What types of changes does your code introduce? Put an `x` in all the boxes that apply: 70 | 71 | - [ ] Bug fix (non-breaking change which fixes an issue) 72 | - [ ] New feature (non-breaking change which adds functionality) 73 | - [ ] Breaking change (fix or feature that would cause existing functionality to change) 74 | 75 | ## Checklist: 76 | 77 | Go over all the following points, and put an `x` in all the boxes that apply. 78 | 79 | If you're unsure about any of these, don't hesitate to ask. We're here to help! 80 | 81 | - [ ] My source code (if source code is provided) follows the source code style of this project. 82 | - [ ] My change requires a change to the documentation. 83 | - [ ] My change does not delete necessary files 84 | - [ ] I have updated the documentation accordingly. 85 | - [ ] I have read the [**`CONTRIBUTING`**](/CONTRIBUTING.md) document in my spoken language, and understand the terms 86 | - [ ] I have added tests to cover my changes. 87 | - [ ] I have gone through all the steps, and have thoroughly read the instructions 88 | 89 | *** 90 | 91 | 102 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | CMakeLists.txt.user 2 | CMakeCache.txt 3 | CMakeFiles 4 | CMakeScripts 5 | Testing 6 | Makefile 7 | cmake_install.cmake 8 | install_manifest.txt 9 | compile_commands.json 10 | CTestTestfile.cmake 11 | _deps 12 | -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- 1 |
2 | 404 error on 404 image file for 404 page, 404 3 |

404

4 |

File not found

5 |
6 |

Celebrate 404 day

7 |

The file could not be found, is damaged, or you do not have permission to access it. Please [raise an issue] if a link is not working correctly.

8 |
9 | -------------------------------------------------------------------------------- /404.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Bliss_Browser_BrightScript/b4e3147bb6e9eb4541ebd795a9624fd68daa86d4/404.jpeg -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- 1 | --- 2 | permalink: /404.html 3 | --- 4 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | === Authors ==== 2 | 1. @seanpm2001 3 | 2. No other authors as of 2021, August 24th at 3:36 pm 4 | 5 | --- 6 | The authors file is for everyone who has contributed to this project directly. The credits file is for all credits and authors, along with other projects used in this project. 7 | --- 8 | -------------------------------------------------------------------------------- /AUTOMATE2001.yaml: -------------------------------------------------------------------------------- 1 | # A set of tasks for the Automate2001 bot to perform here 2 | automate2001_tasks: 3 | isAlldone: "False" 4 | 5 | - 6 | Automate-All-ContributorSrc: 7 | - 8 | Automate-Pull-Requests-archival 9 | isAdone: "False" 10 | Automate-Index-file 11 | isBdone: "False" 12 | Automate-Issue-archival 13 | isCdone: "False" 14 | 15 | - 16 | Automate-RepoData: 17 | - 18 | Automate-RepoData-Description 19 | isDDone: "False" 20 | Automate-RepoData-GitHubLink 21 | isEDone: "False" 22 | Automate-RepoData-GitHubGitLink 23 | isFDone: "False" 24 | Automate-RepoData-Linked 25 | isGDone: "False" 26 | Automate-RepoData-Topics 27 | isHDone: "False" 28 | 29 | # File version: 1 (2022, Tuesday, February 22nd at 8:07 pm) 30 | -------------------------------------------------------------------------------- /AUTOMATE2001.yml: -------------------------------------------------------------------------------- 1 | # A set of tasks for the Automate2001 bot to perform here 2 | automate2001_tasks: 3 | isAlldone: "False" 4 | 5 | - 6 | Automate-All-ContributorSrc: 7 | - 8 | Automate-Pull-Requests-archival 9 | isAdone: "False" 10 | Automate-Index-file 11 | isBdone: "False" 12 | Automate-Issue-archival 13 | isCdone: "False" 14 | 15 | - 16 | Automate-RepoData: 17 | - 18 | Automate-RepoData-Description 19 | isDDone: "False" 20 | Automate-RepoData-GitHubLink 21 | isEDone: "False" 22 | Automate-RepoData-GitHubGitLink 23 | isFDone: "False" 24 | Automate-RepoData-Linked 25 | isGDone: "False" 26 | Automate-RepoData-Topics 27 | isHDone: "False" 28 | 29 | # File version: 1 (2022, Tuesday, February 22nd at 8:07 pm) 30 | -------------------------------------------------------------------------------- /COPYINGL: -------------------------------------------------------------------------------- 1 | 2 | # LICENSE UNDER DEVELOPMENT 3 | 4 | Copying this Miscellenaneous project (from @Seanpm2001) 5 | 6 | You are free to copy and distribute my software anywhere, as long as you abide by the rules of the LICENSE (GNU General Public License V3) and follow these 4 rules: 7 | 8 | 1. Plagiarism - Plagiarism is never allowed for any of my projects. It is my #1 rule. If you are to use this project, you cannot plagiarize it (claim that you made it and that I didn't) 9 | 10 | 2. Embedding - If you are to embed this projects files or its source code into another project, you must keep this file, the license file, and the README file with credit to Sean Patrick Myrick (@Seanpm2001) 11 | 12 | 3. Ethics - You must use this project for good and not evil. Unethical purposes such as ransomware, programs with anti-virtual machine/anti-emulator source code, and privacy invasive spyware and data collection are not allowed. 13 | 14 | 4. Credit - Please give credit when using my software. See §Plagiarism 15 | 16 | Additionally 17 | 18 | 19 | 20 | Copyleft (🄯) Seanpm2001 (2021-2021) 21 | 22 | File version: 1 (2021, Monday August 23rd at 6:27 pm) 23 | 24 | Original file name: COPYING (changed to COPYINGL so that GitHub wouldn't overwrite the GPL3 as the main license, renaming this file is safe) 25 | -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | 4 | {{int:version-credits-summary}} 5 | This Miscellaneous project by Seanpm2001 is a collaborative project released under the GNU General Public License v3. We would like to recognize the following names for their contribution to the product. 6 | 7 | This comment block and this file (excluding author names) was modified from MediaWiki/CREDITS --> 8 | 9 | == Maintainers == 10 | 11 | 12 | 1. @seanpm2001 - Creator and primary maintainer of this project 13 | 2. No other contributors as of Monday, August 23rd 2021 14 | 15 | == Contributors == 16 | 17 | 1. @seanpm2001 18 | 2. @GitHub (For being the first host of this project) 19 | 3. No other contributors as of Monday, August 23rd 2021 20 | 21 | --- 22 | -------------------------------------------------------------------------------- /DRM-free_label.en.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | image/svg+xml 95 | -------------------------------------------------------------------------------- /Docs/pull_request_template.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Creating a pull request 5 | 6 | Thank you for taking the time to create a pull request in this repository! Please fill out this form before submitting your PR. 7 | 8 | **Note:** you can change the language of the formatting if needed, but it must be valid syntax. Supported languages include: ASCIIDoc, Org mode, Markdown, WikiText, ReStructuredText, Creole, Pod, RDoc, Textile, and plain text. Be sure to change thw `markdown` tag to the appropriate language. 9 | 10 | Provide a general summary of your changes in the Title above 11 | 12 | ```markdown 13 | Your summary description (title) goes here 14 | ``` 15 | 16 | ## Description 17 | 18 | Describe your changes in detail 19 | 20 | ```markdown 21 | Your issue description (body) goes here 22 | ``` 23 | 24 | ## Related Issue 25 | 26 | - [ ] This project only accepts pull requests related to open issues 27 | - [ ] If suggesting a new feature or change, please discuss it in an issue first 28 | - [ ] If fixing a bug, there should be an issue describing it with steps to reproduce 29 | - [ ] Please link to the issue here: 30 | 31 | ```markdown 32 | Link to the issue here, #__ 33 | ``` 34 | 35 | ## Motivation and Context 36 | 37 | Why is this change required? What problem does it solve? 38 | 39 | ```markdown 40 | 41 | ``` 42 | 43 | ## How Has This Been Tested? 44 | 45 | - [ ] Please describe in detail how you tested your changes. 46 | - [ ] Include details of your testing environment, and the tests you ran to. 47 | - [ ] see how your change affects other areas of the code, etc. 48 | 49 | ## Screenshots (if appropriate): 50 | 51 | Please include the screenshots inside your pull request as well as a local link (hard copy) 52 | 53 | **Warning:** `.webp` and `.heif` images are not accepted. Please convert them to a different format (such as PNG, JPG, JPEG, JIF, GIF, TIF, etc.) 54 | 55 | **Warning:** Images outside of `/.github/Pull_Requests/Queue/PR/` are not accepted, and will be removed from the PR within 24 hours if not fixed 56 | 57 | ```markdown 58 | Remove this section, and only include the links if you use this section. Be sure to delete image fields that are not needed. Max screenshots per PR: 5. Also, if screenshots aren't necessary, please delete this entire section 59 | 60 | ![Example1](/.github/Pull_Requests/Queue/PR/Image.png) 61 | ![Example2](/.github/Pull_Requests/Queue/PR/Image.png) 62 | ![Example3](/.github/Pull_Requests/Queue/PR/Image.png) 63 | ![Example4](/.github/Pull_Requests/Queue/PR/Image.png) 64 | ![Example5](/.github/Pull_Requests/Queue/PR/Image.png) 65 | ``` 66 | 67 | ## Types of changes 68 | 69 | What types of changes does your code introduce? Put an `x` in all the boxes that apply: 70 | 71 | - [ ] Bug fix (non-breaking change which fixes an issue) 72 | - [ ] New feature (non-breaking change which adds functionality) 73 | - [ ] Breaking change (fix or feature that would cause existing functionality to change) 74 | 75 | ## Checklist: 76 | 77 | Go over all the following points, and put an `x` in all the boxes that apply. 78 | 79 | If you're unsure about any of these, don't hesitate to ask. We're here to help! 80 | 81 | - [ ] My source code (if source code is provided) follows the source code style of this project. 82 | - [ ] My change requires a change to the documentation. 83 | - [ ] My change does not delete necessary files 84 | - [ ] I have updated the documentation accordingly. 85 | - [ ] I have read the [**`CONTRIBUTING`**](/CONTRIBUTING.md) document in my spoken language, and understand the terms 86 | - [ ] I have added tests to cover my changes. 87 | - [ ] I have gone through all the steps, and have thoroughly read the instructions 88 | 89 | *** 90 | 91 | 102 | -------------------------------------------------------------------------------- /INITIAL_COMMIT.txt: -------------------------------------------------------------------------------- 1 | {/*{:>(< 2 | 3 | INITIAL COMMIT 4 | 5 | This repository was generated from seanpm2001/Git-Template_V8 6 | This file aims to serve as a reminder to this projects first commit. 7 | This file should NOT be modified in production EVER 8 | Preserve it! 9 | 10 | >)<:}*/} 11 | File version: 1 (2022, Monday, January 3rd at 1:54 pm) 12 | -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- 1 | --- 2 | Installing this Miscellaneous project by @seanpm2001 3 | --- 4 | 5 | 23 | 24 | Install instructions need to be added manually. 25 | 26 | --- 27 | Install instructions file version: 1 (Monday, August 23rd 2021 at 6:31 pm) 28 | --- 29 | -------------------------------------------------------------------------------- /K.desktop: -------------------------------------------------------------------------------- 1 | # Start of script 2 | # Sample KDE desktop entry 3 | [Desktop Entry] 4 | Type=Application 5 | Exec=your-app %u 6 | MimeType=application/x-your-mime-type; 7 | Icon=some-icon 8 | X-DocPath=yourapp/index.html 9 | Terminal=false 10 | Name=Your App 11 | GenericName=Some Generic Name 12 | Comment=Short Description Of Your App 13 | Categories=Qt;KDE; 14 | # File info 15 | # File type: KDE desktop file (*.desktop) 16 | # File version: 1 (2021, Tuesday, December 14th at 4:05 pm) 17 | # Line count (including blank lines and compiler line): 19 18 | # End of script 19 | -------------------------------------------------------------------------------- /OldVersions/AUTHORS/English/1/1-100/AUTHORS_V1: -------------------------------------------------------------------------------- 1 | === Authors ==== 2 | 1. @seanpm2001 3 | 2. No other authors as of 2021, August 24th at 3:36 pm 4 | 5 | --- 6 | The authors file is for everyone who has contributed to this project directly. The credits file is for all credits and authors, along with other projects used in this project. 7 | --- 8 | -------------------------------------------------------------------------------- /OldVersions/AUTOMATE2001/AUTOMATE2001_V1.yaml: -------------------------------------------------------------------------------- 1 | # A set of tasks for the Automate2001 bot to perform here 2 | automate2001_tasks: 3 | isAlldone: "False" 4 | 5 | - 6 | Automate-All-ContributorSrc: 7 | - 8 | Automate-Pull-Requests-archival 9 | isAdone: "False" 10 | Automate-Index-file 11 | isBdone: "False" 12 | Automate-Issue-archival 13 | isCdone: "False" 14 | 15 | - 16 | Automate-RepoData: 17 | - 18 | Automate-RepoData-Description 19 | isDDone: "False" 20 | Automate-RepoData-GitHubLink 21 | isEDone: "False" 22 | Automate-RepoData-GitHubGitLink 23 | isFDone: "False" 24 | Automate-RepoData-Linked 25 | isGDone: "False" 26 | Automate-RepoData-Topics 27 | isHDone: "False" 28 | 29 | # File version: 1 (2022, Tuesday, February 22nd at 8:07 pm) 30 | -------------------------------------------------------------------------------- /OldVersions/AUTOMATE2001/AUTOMATE2001_V1.yml: -------------------------------------------------------------------------------- 1 | # A set of tasks for the Automate2001 bot to perform here 2 | automate2001_tasks: 3 | isAlldone: "False" 4 | 5 | - 6 | Automate-All-ContributorSrc: 7 | - 8 | Automate-Pull-Requests-archival 9 | isAdone: "False" 10 | Automate-Index-file 11 | isBdone: "False" 12 | Automate-Issue-archival 13 | isCdone: "False" 14 | 15 | - 16 | Automate-RepoData: 17 | - 18 | Automate-RepoData-Description 19 | isDDone: "False" 20 | Automate-RepoData-GitHubLink 21 | isEDone: "False" 22 | Automate-RepoData-GitHubGitLink 23 | isFDone: "False" 24 | Automate-RepoData-Linked 25 | isGDone: "False" 26 | Automate-RepoData-Topics 27 | isHDone: "False" 28 | 29 | # File version: 1 (2022, Tuesday, February 22nd at 8:07 pm) 30 | -------------------------------------------------------------------------------- /OldVersions/CODEOWNERS/CODEOWNERS_V2: -------------------------------------------------------------------------------- 1 | # Start of script 2 | # I am going to keep trying on this until I get it right 3 | # @seanpm2001 is the global code owner for this project 4 | /// @seanpm2001 5 | // @seanpm2001 6 | # / @seanpm2001 7 | /* @seanpm2001 8 | * @seanpm2001 9 | # Directories at root 10 | # .github 11 | /.github/ @seanpm2001 12 | # Docs 13 | /Docs/ @seanpm2001 14 | # External 15 | /External/ @seanpm2001 16 | # OldVersions 17 | /OldVersions/ @seanpm2001 18 | # RepoData 19 | /RepoData/ @seanpm2001 20 | # Files at root 21 | .editorconfig @seanpm2001 22 | .gitattributes @seanpm2001 23 | .gitignore @seanpm2001 24 | AUTHORS @seanpm2001 25 | CITATION.cff @seanpm2001 26 | CONTRIBUTING.md @seanpm2001 27 | COPYINGL @seanpm2001 28 | CREDITS @seanpm2001 29 | DRM-free_label.en.svg @seanpm2001 30 | INSTALL @seanpm2001 31 | LINUX_DEFENDER.desktop @seanpm2001 32 | LICENSE.txt @seanpm2001 33 | Pax_tux.png @seanpm2001 34 | PROJECT_LANG_1.py @seanpm2001 35 | PROJECT_LANG_2.sh @seanpm2001 36 | README.md @seanpm2001 37 | SECURITY.md @seanpm2001 38 | SponsorButton.png @seanpm2001 39 | desktop.ini @seanpm2001 40 | makefile.mk @seanpm2001 41 | # Individual file types 42 | # Section A 43 | *.aiff @seanpm2001 44 | *.AIFF @seanpm2001 45 | *.alac @seanpm2001 46 | *.ALAC @seanpm2001 47 | *.applescript @seanpm2001 48 | *.asm @seanpm2001 49 | *.ASM @seanpm2001 50 | # Section B 51 | *.bib @seanpm2001 52 | # Section C 53 | *.c @seanpm2001 54 | *.C @seanpm2001 55 | *.cff @seanpm2001 56 | *.cpp @seanpm2001 57 | *.css @seanpm2001 58 | *.cxx @seanpm2001 59 | # Section D 60 | *.DS_STORE @seanpm2001 61 | *.desktop @seanpm2001 62 | *.dmg @seanpm2001 63 | *.DMG @seanpm2001 64 | # Section E 65 | *.editorconfig @seanpm2001 66 | # Section F 67 | # No entries starting with the letter F 68 | # Section G 69 | *.gif @seanpm2001 70 | *.GIF @seanpm2001 71 | *.gitattributes @seanpm2001 72 | *.gitignore @seanpm2001 73 | *.go @seanpm2001 74 | # Section H 75 | *.h @seanpm2001 76 | *.H @seanpm2001 77 | *.htm @seanpm2001 78 | *.html @seanpm2001 79 | # Section I 80 | *.ini @seanpm2001 81 | *.ipa @seanpm2001 82 | *.IPA @seanpm2001 83 | *.iso @seanpm2001 84 | *.ISO @seanpm2001 85 | # Section J 86 | *.java @seanpm2001 87 | *.js @seanpm2001 88 | *.jpg @seanpm2001 89 | *.jpeg @seanpm2001 90 | *.jpp @seanpm2001 91 | *.json @seanpm2001 92 | *.jspp @seanpm2001 93 | # Section K 94 | # No entries starting with the letter K 95 | # Section L 96 | # No entries starting with the letter L 97 | # Section M 98 | *.m @seanpm2001 99 | *.m4 @seanpm2001 100 | *.mm @seanpm2001 101 | *.mak @seanpm2001 102 | *.make @seanpm2001 103 | *.markdown @seanpm2001 104 | *.md @seanpm2001 105 | *.mdown @seanpm2001 106 | *.metal @seanpm2001 107 | *.mhtm @seanpm2001 108 | *.mhtml @seanpm2001 109 | *.mp3 @seanpm2001 110 | *.mk @seanpm2001 111 | *.mkd @seanpm2001 112 | *.mot @seanpm2001 113 | *.MOT @seanpm2001 114 | *.mov @seanpm2001 115 | *.MOV @seanpm2001 116 | # Section N 117 | # No entries starting with the letter N 118 | # Section O 119 | *.oga @seanpm2001 120 | *.ogg @seanpm2001 121 | # Section P 122 | *.p @seanpm2001 123 | *.P @seanpm2001 124 | *.pas @seanpm2001 125 | *.PAS @seanpm2001 126 | *.php @seanpm2001 127 | *.png @seanpm2001 128 | *.PNG @seanpm2001 129 | *.pl @seanpm2001 130 | *.pro @seanpm2001 131 | *.ps @seanpm2001 132 | *.PS @seanpm2001 133 | *.py @seanpm2001 134 | # Section Q 135 | *.qs @seanpm2001 136 | *.qt @seanpm2001 137 | # Section R 138 | *.rb @seanpm2001 139 | *.rs @seanpm2001 140 | # Section S 141 | *.self @seanpm2001 142 | *.sh @seanpm2001 143 | *.st @seanpm2001 144 | *.sql @seanpm2001 145 | *.svg @seanpm2001 146 | *.swift @seanpm2001 147 | # Section T 148 | *.tex @seanpm2001 149 | *.ts @seanpm2001 150 | *.tsx @seanpm2001 151 | *.ttf @seanpm2001 152 | *.TTF @seanpm2001 153 | *.txt @seanpm2001 154 | *.TXT @seanpm2001 155 | # Section U 156 | *.url @seanpm2001 157 | *.URL @seanpm2001 158 | # Section V 159 | *.v @seanpm2001 160 | *.vh @seanpm2001 161 | *.vhd @seanpm2001 162 | *.vhdl @seanpm2001 163 | *.vtt @seanpm2001 164 | # Setion W 165 | *.wim @seanpm2001 166 | *.woff @seanpm2001 167 | *.WOFF @Seanpm2001 168 | # Section X 169 | *.xhtm @seanpm2001 170 | *.xhtml @seanpm2001 171 | *.xml @seanpm2001 172 | # Section Y 173 | *.yaml @seanpm2001 174 | *.yml @seanpm2001 175 | # Section Z 176 | # No entries starting with the letter Z 177 | 178 | # No more individual file types for now 179 | 180 | # Todo 181 | 182 | # Add every individual file 183 | # Finish adding all file types 184 | # Add new entries as they are added 185 | 186 | # Past goals (completed) 187 | # Add all Wiki entries 188 | # Add all graphics entries 189 | 190 | # File info 191 | # File type: codeowners file (CODEOWNERS) 192 | # File version: 2 (2022, Monday, February 21st at 3:05 pm) 193 | # Line count (including blank lines and compiler line): 195 194 | # End of script 195 | -------------------------------------------------------------------------------- /OldVersions/COPYING/English/1/1-100/COPYING_V1: -------------------------------------------------------------------------------- 1 | 2 | # LICENSE UNDER DEVELOPMENT 3 | 4 | Copying this Miscellenaneous project (from @Seanpm2001) 5 | 6 | You are free to copy and distribute my software anywhere, as long as you abide by the rules of the LICENSE (GNU General Public License V3) and follow these 4 rules: 7 | 8 | 1. Plagiarism - Plagiarism is never allowed for any of my projects. It is my #1 rule. If you are to use this project, you cannot plagiarize it (claim that you made it and that I didn't) 9 | 10 | 2. Embedding - If you are to embed this projects files or its source code into another project, you must keep this file, the license file, and the README file with credit to Sean Patrick Myrick (@Seanpm2001) 11 | 12 | 3. Ethics - You must use this project for good and not evil. Unethical purposes such as ransomware, programs with anti-virtual machine/anti-emulator source code, and privacy invasive spyware and data collection are not allowed. 13 | 14 | 4. Credit - Please give credit when using my software. See §Plagiarism 15 | 16 | Additionally 17 | 18 | 19 | 20 | Copyleft (🄯) Seanpm2001 (2021-2021) 21 | 22 | File version: 1 (2021, Monday August 23rd at 6:27 pm) 23 | 24 | Original file name: COPYING (changed to COPYINGL so that GitHub wouldn't overwrite the GPL3 as the main license, renaming this file is safe) 25 | -------------------------------------------------------------------------------- /OldVersions/CREDITS/English/1/1-100/CREDITS_V1: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | 4 | {{int:version-credits-summary}} 5 | This Miscellaneous project by Seanpm2001 is a collaborative project released under the GNU General Public License v3. We would like to recognize the following names for their contribution to the product. 6 | 7 | This comment block and this file (excluding author names) was modified from MediaWiki/CREDITS --> 8 | 9 | == Maintainers == 10 | 11 | 12 | 1. @seanpm2001 - Creator and primary maintainer of this project 13 | 2. No other contributors as of Monday, August 23rd 2021 14 | 15 | == Contributors == 16 | 17 | 1. @seanpm2001 18 | 2. @GitHub (For being the first host of this project) 19 | 3. No other contributors as of Monday, August 23rd 2021 20 | 21 | --- 22 | -------------------------------------------------------------------------------- /OldVersions/EDITORCONFIG/1/1-100/V1.editorconfig: -------------------------------------------------------------------------------- 1 | # Copied from Snapcrafters/Fork-and-rename-me 2 | # Experimental 3 | 4 | root = true 5 | 6 | [*] 7 | indent_style = space 8 | indent_size = 4 9 | end_of_line = lf 10 | charset = utf-8 11 | trim_trailing_whitespace = false 12 | insert_final_newline = false 13 | 14 | [*.yaml] 15 | indent_style = space 16 | indent_size = 2 17 | end_of_line = lf 18 | charset = utf-8 19 | trim_trailing_whitespace = true 20 | insert_final_newline = true 21 | -------------------------------------------------------------------------------- /OldVersions/EDITORCONFIG/1/1-100/V2.editorconfig: -------------------------------------------------------------------------------- 1 | # Start of script 2 | 3 | # Editor configuration file for Seanpm2001/SNU 2D Programming Tools IDE project (V6) 4 | 5 | root = true 6 | 7 | [*] 8 | indent_style = space 9 | indent_size = 2 10 | end_of_line = lf 11 | charset = utf-8 12 | trim_trailing_whitespace = false 13 | insert_final_newline = false 14 | line_wrap_mode = soft wrap 15 | 16 | [*.md] 17 | indent_style = space 18 | indent_size = 2 19 | end_of_line = lf 20 | charset = utf-8 21 | trim_trailing_whitespace = false 22 | insert_final_newline = false 23 | line_wrap_mode = soft wrap 24 | 25 | [*.yml *.yaml] 26 | indent_style = space 27 | indent_size = 2 28 | end_of_line = lf 29 | charset = utf-8 30 | trim_trailing_whitespace = false 31 | insert_final_newline = false 32 | line_wrap_mode = soft wrap 33 | 34 | [*.txt] 35 | indent_style = space 36 | indent_size = 2 37 | end_of_line = lf 38 | charset = utf-8 39 | trim_trailing_whitespace = false 40 | insert_final_newline = false 41 | line_wrap_mode = soft wrap 42 | 43 | [*.mk] 44 | indent_style = space 45 | indent_size = 2 46 | end_of_line = lf 47 | charset = utf-8 48 | trim_trailing_whitespace = false 49 | insert_final_newline = false 50 | line_wrap_mode = soft wrap 51 | 52 | [*.htm *.html] 53 | indent_style = space 54 | indent_size = 2 55 | end_of_line = lf 56 | charset = utf-8 57 | trim_trailing_whitespace = false 58 | insert_final_newline = false 59 | line_wrap_mode = soft wrap 60 | 61 | # File info 62 | 63 | # File type: Editorconfig file (*.editorconfig) 64 | # File version: 1 (Monday, 2021 August 23rd at 6:19 pm) 65 | # Line count (including blank lines and compiler line): 68 66 | 67 | # End of script 68 | -------------------------------------------------------------------------------- /OldVersions/EDITORCONFIG/1/1-100/V3.editorconfig: -------------------------------------------------------------------------------- 1 | # Start of script 2 | 3 | # Editor configuration file for Seanpm2001/ 4 | # Generated with Git-Template (V8) at branch: /other/ 5 | 6 | root = true 7 | 8 | # All files 9 | [*] 10 | indent_style = space 11 | indent_size = 2 12 | end_of_line = lf 13 | charset = utf-8 14 | trim_trailing_whitespace = false 15 | insert_final_newline = false 16 | line_wrap_mode = soft wrap 17 | 18 | # Markdown document 19 | [*.md *.mkd *.mdown *.markdown] 20 | indent_style = space 21 | indent_size = 2 22 | end_of_line = lf 23 | charset = utf-8 24 | trim_trailing_whitespace = false 25 | insert_final_newline = false 26 | line_wrap_mode = soft wrap 27 | 28 | # YAML (YAML Ain't Markup Language) source code 29 | [*.yml *.yaml] 30 | indent_style = space 31 | indent_size = 2 32 | end_of_line = lf 33 | charset = utf-8 34 | trim_trailing_whitespace = false 35 | insert_final_newline = false 36 | line_wrap_mode = soft wrap 37 | 38 | # Plain Text document 39 | [*.txt] 40 | indent_style = space 41 | indent_size = 2 42 | end_of_line = lf 43 | charset = utf-8 44 | trim_trailing_whitespace = false 45 | insert_final_newline = false 46 | line_wrap_mode = soft wrap 47 | 48 | # Makefile (GNU Make) 49 | [*.mk *.mak *.make *.makefile] 50 | indent_style = space 51 | indent_size = 2 52 | end_of_line = lf 53 | charset = utf-8 54 | trim_trailing_whitespace = false 55 | insert_final_newline = false 56 | line_wrap_mode = soft wrap 57 | 58 | # HTML (HyperText Markup Language) document 59 | [*.htm *.html *.mhtm *.mhtml *.xhtm *.xhtml] 60 | indent_style = space 61 | indent_size = 2 62 | end_of_line = lf 63 | charset = utf-8 64 | trim_trailing_whitespace = false 65 | insert_final_newline = false 66 | line_wrap_mode = soft wrap 67 | 68 | # SVG (Scalable Vector Graphics) image file 69 | [*.svg] 70 | indent_style = space 71 | indent_size = 2 72 | end_of_line = lf 73 | charset = utf-8 74 | trim_trailing_whitespace = false 75 | insert_final_newline = false 76 | line_wrap_mode = soft wrap 77 | 78 | # Git configuration files 79 | [*.gitignore *.gitattributes *.editorconfig] 80 | indent_style = space 81 | indent_size = 2 82 | end_of_line = lf 83 | charset = utf-8 84 | trim_trailing_whitespace = false 85 | insert_final_newline = false 86 | line_wrap_mode = soft wrap 87 | 88 | # Binary image files 89 | [*.png *.pns *.jpg *.jpeg *.jfif *.jif *.jp2 *.gif *.tif *.tiff *.bmp *.dib] 90 | indent_style = space 91 | indent_size = 2 92 | end_of_line = lf 93 | charset = utf-8 94 | trim_trailing_whitespace = false 95 | insert_final_newline = false 96 | line_wrap_mode = soft wrap 97 | 98 | # File info 99 | 100 | # File type: Editorconfig file (*.editorconfig) 101 | # File version: 3 (Monday, 2021 November 29th at 2:48 pm) 102 | # Line count (including blank lines and compiler line): 105 103 | 104 | # End of script 105 | -------------------------------------------------------------------------------- /OldVersions/GITATTRIBUTES/1/1-100/V1.gitattributes: -------------------------------------------------------------------------------- 1 | # Start of script 2 | # .gitattributes 3 | # This file defines what languages can show up in the GitHub linguist menu (the menu that tells you what percentage each language is using up on this project. 4 | # Some non-programming languages must be included manually with this file. Want to create your own? Do something similar to what is done here, and name the file 5 | # .gitattributes 6 | # and nothing else, no characters before, no characters after 7 | # Start of linguist script 8 | # HTML (Duplicate, as it is already detected by GitHub Linguist by default) 9 | *.htm linguist-detectable=true 10 | *.htm linguist-documentation=false 11 | *.html linguist-detectable=true 12 | *.html linguist-documentation=false 13 | # Do not include, as it would become a dominant language that shouldn't be the language people refer this project to 14 | *.yml linguist-detectable=false 15 | *.yml linguist-documentation=false 16 | *.yaml linguist-detectable=false 17 | *.yaml linguist-documentation=false 18 | # Markdown 19 | # Do not include, as it would become the 100% dominant language and would hide all the other languages as "other" 20 | *.md linguist-detectable=false 21 | *.md linguist-documentation=false 22 | # Makefile (GNU Make) 23 | # Do not include, as it is not needed to be shown 24 | *.mk linguist-detectable=false 25 | *.mk linguist-documentation=false 26 | # End of linguist script 27 | # File info 28 | # File type: .gitattributes file 29 | # File version: 1 (Monday, 2021 August 23rd at 4:17 pm) 30 | # Line count (including blank lines and compiler line): 32 31 | # End of script 32 | -------------------------------------------------------------------------------- /OldVersions/GITATTRIBUTES/1/1-100/V2.gitattributes: -------------------------------------------------------------------------------- 1 | # Start of script 2 | # .gitattributes 3 | # This file defines what languages can show up in the GitHub linguist menu (the menu that tells you what percentage each language is using up on this project. 4 | # Some non-programming languages must be included manually with this file. Want to create your own? Do something similar to what is done here, and name the file 5 | # .gitattributes 6 | # and nothing else, no characters before, no characters after 7 | # Start of linguist script 8 | # HTML (Duplicate, as it is already detected by GitHub Linguist by default) 9 | *.htm linguist-detectable=true 10 | *.htm linguist-documentation=false 11 | *.html linguist-detectable=true 12 | *.html linguist-documentation=false 13 | *.mhtm linguist-detectable=true 14 | *.mhtm linguist-documentation=false 15 | *.mhtml linguist-detectable=true 16 | *.mhtml linguist-documentation=false 17 | *.xhtm linguist-detectable=true 18 | *.xhtm linguist-documentation=false 19 | *.xhtml linguist-detectable=true 20 | *.xhtml linguist-documentation=false 21 | # YAML (YAML Ain't Markup Language) document 22 | # Do not include, as it would become a dominant language that shouldn't be the language people refer this project to 23 | *.yml linguist-detectable=false 24 | *.yml linguist-documentation=false 25 | *.yaml linguist-detectable=false 26 | *.yaml linguist-documentation=false 27 | # Markdown 28 | # Do not include, as it would become the 100% dominant language and would hide all the other languages as "other" 29 | *.md linguist-detectable=false 30 | *.md linguist-documentation=false 31 | *.mkd linguist-detectable=false 32 | *.mkd linguist-documentation=false 33 | *.mdown linguist-detectable=false 34 | *.mdown linguist-documentation=false 35 | *.markdown linguist-detectable=false 36 | *.markdown linguist-documentation=false 37 | # Makefile (GNU Make) 38 | # Do not include, as it is not needed to be shown 39 | *.mk linguist-detectable=false 40 | *.mk linguist-documentation=false 41 | *.mak linguist-detectable=false 42 | *.mak linguist-documentation=false 43 | *.make linguist-detectable=false 44 | *.make linguist-documentation=false 45 | *.makefile linguist-detectable=false 46 | *.makefile linguist-documentation=false 47 | # SVG (Scalable Vector Graphics) image file 48 | # Do not include, as it would become the 100% dominant language and would hide all the other languages as "other" 49 | *.svg linguist-detectable=false 50 | *.svg linguist-documentation=false 51 | # Git Configuration files 52 | # Do not include, as it would become the 100% dominant language and would hide all the other languages as "other" 53 | *.gitattributes linguist-detectable=false 54 | *.gitattributes linguist-documentation=false 55 | *.gitignore linguist-detectable=false 56 | *.gitignore linguist-documentation=false 57 | *.editorconfig linguist-detectable=false 58 | *.editorconfig linguist-documentation=false 59 | # Plain Text document 60 | # Do not include, as it would become the 100% dominant language and would hide all the other languages as "other" 61 | *.txt linguist-detectable=false 62 | *.txt linguist-documentation=false 63 | # End of linguist script 64 | # File info 65 | # File type: gitattributes file (.gitattributes) 66 | # File version: 2 (Monday, 2021 November 29th at 2:56 pm) 67 | # Line count (including blank lines and compiler line): 69 68 | # End of script 69 | -------------------------------------------------------------------------------- /OldVersions/GITATTRIBUTES/1/1-100/V3.gitattributes: -------------------------------------------------------------------------------- 1 | # Start of script 2 | # .gitattributes 3 | # This file defines what languages can show up in the GitHub linguist menu (the menu that tells you what percentage each language is using up on this project. 4 | # Some non-programming languages must be included manually with this file. Want to create your own? Do something similar to what is done here, and name the file 5 | # .gitattributes 6 | # and nothing else, no characters before, no characters after 7 | # Start of linguist script 8 | # HTML (HyperText Markup Language) document 9 | *.htm linguist-detectable=true 10 | *.htm linguist-documentation=false 11 | *.html linguist-detectable=true 12 | *.html linguist-documentation=false 13 | *.mhtm linguist-detectable=true 14 | *.mhtm linguist-documentation=false 15 | *.mhtml linguist-detectable=true 16 | *.mhtml linguist-documentation=false 17 | *.xhtm linguist-detectable=true 18 | *.xhtm linguist-documentation=false 19 | *.xhtml linguist-detectable=true 20 | *.xhtml linguist-documentation=false 21 | # HTA (HTML Application) file 22 | *.hta linguist-detectable=true 23 | *.hta linguist-documentation=false 24 | # CSS (Cascade Styling Sheets) stylesheet file 25 | *.css linguist-detectable=true 26 | *.css linguist-documentation=false 27 | # Less stylesheet file 28 | *.less linguist-detectable=true 29 | *.less linguist-documentation=false 30 | # QML (QT Modeling Language) source file 31 | *.qml linguist-detectable=true 32 | *.qml linguist-documentation=false 33 | # JS (JavaScript) source file 34 | *.js linguist-detectable=true 35 | *.js linguist-documentation=false 36 | # JSON (JavaScript Object Notation) source file 37 | *.json linguist-detectable=true 38 | *.json linguist-documentation=false 39 | # PHP (PHP HyperText Preprocessor) source file 40 | *.php linguist-detectable=true 41 | *.php linguist-documentation=false 42 | # Pug source file 43 | *.pug linguist-detectable=true 44 | *.pug linguist-documentation=false 45 | # Python source file 46 | *.py linguist-detectable=true 47 | *.py linguist-documentation=false 48 | # Mustache source file 49 | *.mustache linguist-detectable=true 50 | *.mustache linguist-documentation=false 51 | # Handlebars source file 52 | *.handlebars linguist-detectable=true 53 | *.handlebars linguist-documentation=false 54 | *.hbs linguist-detectable=true 55 | *.hbs linguist-documentation=false 56 | # WebVTT subtitle file 57 | *.vtt linguist-detectable=true 58 | *.vtt linguist-documentation=false 59 | # SubRip subtitle file 60 | *.srt linguist-detectable=true 61 | *.srt linguist-documentation=false 62 | # Ruby source file 63 | *.rb linguist-detectable=true 64 | *.rb linguist-documentation=false 65 | *.rake linguist-detectable=true 66 | *.rake linguist-documentation=false 67 | *.rakefile linguist-detectable=true 68 | *.rakefile linguist-documentation=false 69 | *gemfile linguist-detectable=true 70 | *gemfile linguist-documentation=false 71 | # YAML (YAML Ain't Markup Language) document 72 | # Do not include, as it would become a dominant language that shouldn't be the language people refer this project to 73 | *.yml linguist-detectable=false 74 | *.yml linguist-documentation=false 75 | *.yaml linguist-detectable=false 76 | *.yaml linguist-documentation=false 77 | # Markdown 78 | # Do not include, as it would become the 100% dominant language and would hide all the other languages as "other" 79 | *.md linguist-detectable=false 80 | *.md linguist-documentation=false 81 | *.mkd linguist-detectable=false 82 | *.mkd linguist-documentation=false 83 | *.mdown linguist-detectable=false 84 | *.mdown linguist-documentation=false 85 | *.markdown linguist-detectable=false 86 | *.markdown linguist-documentation=false 87 | # Makefile (GNU Make) 88 | # Do not include, as it is not needed to be shown 89 | *.mk linguist-detectable=false 90 | *.mk linguist-documentation=false 91 | *.mak linguist-detectable=false 92 | *.mak linguist-documentation=false 93 | *.make linguist-detectable=false 94 | *.make linguist-documentation=false 95 | *.makefile linguist-detectable=false 96 | *.makefile linguist-documentation=false 97 | # SVG (Scalable Vector Graphics) image file 98 | # Do not include, as it would become the 100% dominant language and would hide all the other languages as "other" 99 | *.svg linguist-detectable=false 100 | *.svg linguist-documentation=false 101 | # Git Configuration files 102 | # Do not include, as it would become the 100% dominant language and would hide all the other languages as "other" 103 | *.gitattributes linguist-detectable=false 104 | *.gitattributes linguist-documentation=false 105 | *.gitignore linguist-detectable=false 106 | *.gitignore linguist-documentation=false 107 | *.editorconfig linguist-detectable=false 108 | *.editorconfig linguist-documentation=false 109 | # Plain Text document 110 | # Do not include, as it would become the 100% dominant language and would hide all the other languages as "other" 111 | *.txt linguist-detectable=false 112 | *.txt linguist-documentation=false 113 | # End of linguist script 114 | # File info 115 | # File type: gitattributes file (.gitattributes) 116 | # File version: 3 (Monday, 2021 November 29th at 3:14 pm) 117 | # Line count (including blank lines and compiler line): 119 118 | # End of script 119 | -------------------------------------------------------------------------------- /OldVersions/GITATTRIBUTES/1/1-100/V4.gitattributes: -------------------------------------------------------------------------------- 1 | # Start of script 2 | # .gitattributes 3 | # This file defines what languages can show up in the GitHub linguist menu (the menu that tells you what percentage each language is using up on this project. 4 | # Some non-programming languages must be included manually with this file. Want to create your own? Do something similar to what is done here, and name the file 5 | # .gitattributes 6 | # and nothing else, no characters before, no characters after 7 | # Start of linguist script 8 | # HTML (HyperText Markup Language) document 9 | *.htm linguist-detectable=true 10 | *.htm linguist-documentation=false 11 | *.htm linguist-language=HTML 12 | *.html linguist-detectable=true 13 | *.html linguist-documentation=false 14 | *.html linguist-language=HTML 15 | *.mhtm linguist-detectable=true 16 | *.mhtm linguist-documentation=false 17 | *.mhtm linguist-language=HTML 18 | *.mhtml linguist-detectable=true 19 | *.mhtml linguist-documentation=false 20 | *.mhtml linguist-language=HTML 21 | *.xhtm linguist-detectable=true 22 | *.xhtm linguist-documentation=false 23 | *.xhtm linguist-language=HTML 24 | *.xhtml linguist-detectable=true 25 | *.xhtml linguist-documentation=false 26 | *.xhtml linguist-language=HTML 27 | # HTA (HTML Application) file 28 | *.hta linguist-detectable=true 29 | *.hta linguist-documentation=false 30 | *.hta linguist-language=HTML 31 | # CSS (Cascade Styling Sheets) stylesheet file 32 | *.css linguist-detectable=true 33 | *.css linguist-documentation=false 34 | *.css linguist-language=CSS 35 | # Less stylesheet file 36 | *.less linguist-detectable=true 37 | *.less linguist-documentation=false 38 | *.less linguist-language=Less 39 | # JSON (JavaScript Object Notation) source file 40 | *.json linguist-detectable=false 41 | *.json linguist-documentation=false 42 | *.json linguist-language=JSON 43 | # WebVTT subtitle file 44 | *.vtt linguist-detectable=true 45 | *.vtt linguist-documentation=false 46 | *.vtt linguist-language=WebVTT 47 | # SubRip subtitle file 48 | *.srt linguist-detectable=true 49 | *.srt linguist-documentation=false 50 | *.srt linguist-language=SubRip-Text 51 | # YAML (YAML Ain't Markup Language) document 52 | # Do not include, as it would become a dominant language that shouldn't be the language people refer this project to 53 | *.yml linguist-detectable=false 54 | *.yml linguist-documentation=false 55 | *.yml linguist-language=YAML 56 | *.yaml linguist-detectable=false 57 | *.yaml linguist-documentation=false 58 | *.yaml linguist-language=YAML 59 | # Markdown 60 | # Do not include, as it would become the 100% dominant language and would hide all the other languages as "other" 61 | *.md linguist-detectable=false 62 | *.md linguist-documentation=false 63 | *.md linguist-language=Markdown 64 | *.mkd linguist-detectable=false 65 | *.mkd linguist-documentation=false 66 | *.mkd linguist-language=Markdown 67 | *.mdown linguist-detectable=false 68 | *.mdown linguist-documentation=false 69 | *.mdown linguist-language=Markdown 70 | *.markdown linguist-detectable=false 71 | *.markdown linguist-documentation=false 72 | *.markdown linguist-language=Markdown 73 | # Makefile (GNU Make) 74 | # Do not include, as it is not needed to be shown 75 | *.mk linguist-detectable=false 76 | *.mk linguist-documentation=false 77 | *.mk linguist-language=Makefile 78 | *.mak linguist-detectable=false 79 | *.mak linguist-documentation=false 80 | *.mak linguist-language=Makefile 81 | *.make linguist-detectable=false 82 | *.make linguist-documentation=false 83 | *.make linguist-language=Makefile 84 | *.makefile linguist-detectable=false 85 | *.makefile linguist-documentation=false 86 | *.makefile linguist-language=Makefile 87 | # SVG (Scalable Vector Graphics) image file 88 | # Do not include, as it would become the 100% dominant language and would hide all the other languages as "other" 89 | *.svg linguist-detectable=false 90 | *.svg linguist-documentation=false 91 | *.svg linguist-language=SVG 92 | # Git Configuration files 93 | # Do not include, as it would become the 100% dominant language and would hide all the other languages as "other" 94 | *.gitattributes linguist-detectable=false 95 | *.gitattributes linguist-documentation=false 96 | *.gitignore linguist-detectable=false 97 | *.gitignore linguist-documentation=false 98 | *.editorconfig linguist-detectable=false 99 | *.editorconfig linguist-documentation=false 100 | # Plain Text document 101 | # Do not include, as it would become the 100% dominant language and would hide all the other languages as "other" 102 | *.txt linguist-detectable=false 103 | *.txt linguist-documentation=false 104 | *.txt linguist-language=Plain-Text 105 | # ReStructuredText 106 | *.rst linguist-detectable=false 107 | *.rst linguist-documentation=false 108 | *.rst linguist-language=ReStructured-Text 109 | # WikiText 110 | *.wiki linguist-detectable=false 111 | *.wiki linguist-documentation=false 112 | *.wiki linguist-language=WikiText 113 | # BibTeX 114 | *.bib linguist-detectable=false 115 | *.bib linguist-documentation=false 116 | *.bib linguist-language=BibTeX 117 | # TeX 118 | *.tex linguist-detectable=false 119 | *.tex linguist-documentation=false 120 | *.tex linguist-language=TeX 121 | # Desktop entry 122 | *.desktop linguist-detectable=false 123 | *.desktop linguist-documentation=false 124 | *.desktop linguist-language=desktop 125 | # INI/CFG 126 | *.ini linguist-detectable=false 127 | *.ini linguist-documentation=false 128 | *.ini linguist-language=INI 129 | *.cfg linguist-detectable=false 130 | *.cfg linguist-documentation=false 131 | *.cfg linguist-language=INI 132 | # CFF 133 | *.cff linguist-detectable=false 134 | *.cff linguist-documentation=false 135 | *.cff linguist-language=Citation-File-Format 136 | # PNG/PNS 137 | *.png linguist-detectable=false 138 | *.png linguist-documentation=false 139 | *.png linguist-language=PNG 140 | *.pns linguist-detectable=false 141 | *.pns linguist-documentation=false 142 | *.pns linguist-language=PNG 143 | # JPG/JPEG/JFIF/JIF 144 | *.jpg linguist-detectable=false 145 | *.jpg linguist-documentation=false 146 | *.jpg linguist-language=JPEG 147 | *.jpeg linguist-detectable=false 148 | *.jpeg linguist-documentation=false 149 | *.jpeg linguist-language=JPEG 150 | *.jfif linguist-detectable=false 151 | *.jfif linguist-documentation=false 152 | *.jfif linguist-language=JPEG 153 | *.jif linguist-detectable=false 154 | *.jif linguist-documentation=false 155 | *.jif linguist-language=JPEG 156 | # JP2 (JPEG 2000) 157 | *.jp2 linguist-detectable=false 158 | *.jp2 linguist-documentation=false 159 | *.jp2 linguist-language=JPEG-2000 160 | # GIF 161 | *.gif linguist-detectable=false 162 | *.gif linguist-documentation=false 163 | *.gif linguist-language=GIF 164 | # End of linguist script 165 | 166 | # File info 167 | # File type: gitattributes file (.gitattributes) 168 | # File version: 4 (2022, Tuesday, June 28th at 2:32 pm PST) 169 | # Line count (including blank lines and compiler line): 171 170 | # End of script 171 | -------------------------------------------------------------------------------- /OldVersions/GITATTRIBUTES/1/1-100/V5.gitattributes: -------------------------------------------------------------------------------- 1 | # Start of script 2 | # .gitattributes 3 | # This file defines what languages can show up in the GitHub linguist menu (the menu that tells you what percentage each language is using up on this project. 4 | # Some non-programming languages must be included manually with this file. Want to create your own? Do something similar to what is done here, and name the file 5 | # .gitattributes 6 | # and nothing else, no characters before, no characters after 7 | # Start of linguist script 8 | # HTML (HyperText Markup Language) document 9 | *.htm linguist-detectable=true 10 | *.htm linguist-documentation=false 11 | *.htm linguist-language=HTML 12 | *.html linguist-detectable=true 13 | *.html linguist-documentation=false 14 | *.html linguist-language=HTML 15 | *.mhtm linguist-detectable=true 16 | *.mhtm linguist-documentation=false 17 | *.mhtm linguist-language=HTML 18 | *.mhtml linguist-detectable=true 19 | *.mhtml linguist-documentation=false 20 | *.mhtml linguist-language=HTML 21 | *.xhtm linguist-detectable=true 22 | *.xhtm linguist-documentation=false 23 | *.xhtm linguist-language=HTML 24 | *.xhtml linguist-detectable=true 25 | *.xhtml linguist-documentation=false 26 | *.xhtml linguist-language=HTML 27 | # HTA (HTML Application) file 28 | *.hta linguist-detectable=true 29 | *.hta linguist-documentation=false 30 | *.hta linguist-language=HTML 31 | # CSS (Cascade Styling Sheets) stylesheet file 32 | *.css linguist-detectable=true 33 | *.css linguist-documentation=false 34 | *.css linguist-language=CSS 35 | # BrightScript source file 36 | *.brs linguist-detectable=true 37 | *.brs linguist-documentation=false 38 | *.brs linguist-language=BrightScript 39 | # Less stylesheet file 40 | *.less linguist-detectable=true 41 | *.less linguist-documentation=false 42 | *.less linguist-language=Less 43 | # JSON (JavaScript Object Notation) source file 44 | *.json linguist-detectable=false 45 | *.json linguist-documentation=false 46 | *.json linguist-language=JSON 47 | # WebVTT subtitle file 48 | *.vtt linguist-detectable=true 49 | *.vtt linguist-documentation=false 50 | *.vtt linguist-language=WebVTT 51 | # SubRip subtitle file 52 | *.srt linguist-detectable=true 53 | *.srt linguist-documentation=false 54 | *.srt linguist-language=SubRip-Text 55 | # YAML (YAML Ain't Markup Language) document 56 | # Do not include, as it would become a dominant language that shouldn't be the language people refer this project to 57 | *.yml linguist-detectable=false 58 | *.yml linguist-documentation=false 59 | *.yml linguist-language=YAML 60 | *.yaml linguist-detectable=false 61 | *.yaml linguist-documentation=false 62 | *.yaml linguist-language=YAML 63 | # Markdown 64 | # Do not include, as it would become the 100% dominant language and would hide all the other languages as "other" 65 | *.md linguist-detectable=false 66 | *.md linguist-documentation=false 67 | *.md linguist-language=Markdown 68 | *.mkd linguist-detectable=false 69 | *.mkd linguist-documentation=false 70 | *.mkd linguist-language=Markdown 71 | *.mdown linguist-detectable=false 72 | *.mdown linguist-documentation=false 73 | *.mdown linguist-language=Markdown 74 | *.markdown linguist-detectable=false 75 | *.markdown linguist-documentation=false 76 | *.markdown linguist-language=Markdown 77 | # Makefile (GNU Make) 78 | # Do not include, as it is not needed to be shown 79 | *.mk linguist-detectable=false 80 | *.mk linguist-documentation=false 81 | *.mk linguist-language=Makefile 82 | *.mak linguist-detectable=false 83 | *.mak linguist-documentation=false 84 | *.mak linguist-language=Makefile 85 | *.make linguist-detectable=false 86 | *.make linguist-documentation=false 87 | *.make linguist-language=Makefile 88 | *.makefile linguist-detectable=false 89 | *.makefile linguist-documentation=false 90 | *.makefile linguist-language=Makefile 91 | # SVG (Scalable Vector Graphics) image file 92 | # Do not include, as it would become the 100% dominant language and would hide all the other languages as "other" 93 | *.svg linguist-detectable=false 94 | *.svg linguist-documentation=false 95 | *.svg linguist-language=SVG 96 | # Git Configuration files 97 | # Do not include, as it would become the 100% dominant language and would hide all the other languages as "other" 98 | *.gitattributes linguist-detectable=false 99 | *.gitattributes linguist-documentation=false 100 | *.gitignore linguist-detectable=false 101 | *.gitignore linguist-documentation=false 102 | *.editorconfig linguist-detectable=false 103 | *.editorconfig linguist-documentation=false 104 | # Plain Text document 105 | # Do not include, as it would become the 100% dominant language and would hide all the other languages as "other" 106 | *.txt linguist-detectable=false 107 | *.txt linguist-documentation=false 108 | *.txt linguist-language=Plain-Text 109 | # ReStructuredText 110 | *.rst linguist-detectable=false 111 | *.rst linguist-documentation=false 112 | *.rst linguist-language=ReStructured-Text 113 | # WikiText 114 | *.wiki linguist-detectable=false 115 | *.wiki linguist-documentation=false 116 | *.wiki linguist-language=WikiText 117 | # BibTeX 118 | *.bib linguist-detectable=false 119 | *.bib linguist-documentation=false 120 | *.bib linguist-language=BibTeX 121 | # TeX 122 | *.tex linguist-detectable=false 123 | *.tex linguist-documentation=false 124 | *.tex linguist-language=TeX 125 | # Desktop entry 126 | *.desktop linguist-detectable=false 127 | *.desktop linguist-documentation=false 128 | *.desktop linguist-language=desktop 129 | # INI/CFG 130 | *.ini linguist-detectable=false 131 | *.ini linguist-documentation=false 132 | *.ini linguist-language=INI 133 | *.cfg linguist-detectable=false 134 | *.cfg linguist-documentation=false 135 | *.cfg linguist-language=INI 136 | # CFF 137 | *.cff linguist-detectable=false 138 | *.cff linguist-documentation=false 139 | *.cff linguist-language=Citation-File-Format 140 | # PNG/PNS 141 | *.png linguist-detectable=false 142 | *.png linguist-documentation=false 143 | *.png linguist-language=PNG 144 | *.pns linguist-detectable=false 145 | *.pns linguist-documentation=false 146 | *.pns linguist-language=PNG 147 | # JPG/JPEG/JFIF/JIF 148 | *.jpg linguist-detectable=false 149 | *.jpg linguist-documentation=false 150 | *.jpg linguist-language=JPEG 151 | *.jpeg linguist-detectable=false 152 | *.jpeg linguist-documentation=false 153 | *.jpeg linguist-language=JPEG 154 | *.jfif linguist-detectable=false 155 | *.jfif linguist-documentation=false 156 | *.jfif linguist-language=JPEG 157 | *.jif linguist-detectable=false 158 | *.jif linguist-documentation=false 159 | *.jif linguist-language=JPEG 160 | # JP2 (JPEG 2000) 161 | *.jp2 linguist-detectable=false 162 | *.jp2 linguist-documentation=false 163 | *.jp2 linguist-language=JPEG-2000 164 | # GIF 165 | *.gif linguist-detectable=false 166 | *.gif linguist-documentation=false 167 | *.gif linguist-language=GIF 168 | 169 | # End of linguist script 170 | 171 | # File info 172 | 173 | # File type: gitattributes file (*.gitattributes) 174 | # File version: 5 (2023, Friday, February 3rd at 1:13 pm PST) 175 | # Line count (including blank lines and compiler line): 178 176 | 177 | # End of script 178 | -------------------------------------------------------------------------------- /OldVersions/GITIGNORE/1/1-100/V1.gitignore: -------------------------------------------------------------------------------- 1 | CMakeLists.txt.user 2 | CMakeCache.txt 3 | CMakeFiles 4 | CMakeScripts 5 | Testing 6 | Makefile 7 | cmake_install.cmake 8 | install_manifest.txt 9 | compile_commands.json 10 | CTestTestfile.cmake 11 | _deps 12 | -------------------------------------------------------------------------------- /OldVersions/INITIAL_COMMIT/INITIAL_COMMIT_V1.txt: -------------------------------------------------------------------------------- 1 | {/*{:>(< 2 | 3 | INITIAL COMMIT 4 | 5 | This repository was generated from seanpm2001/Git-Template_V8 6 | This file aims to serve as a reminder to this projects first commit. 7 | This file should NOT be modified in production EVER 8 | Preserve it! 9 | 10 | >)<:}*/} 11 | File version: 1 (2022, Monday, January 3rd at 1:54 pm) 12 | -------------------------------------------------------------------------------- /OldVersions/INSTALL/English/1/1-100/INSTALL_V1: -------------------------------------------------------------------------------- 1 | --- 2 | Installing this Miscellaneous project by @seanpm2001 3 | --- 4 | 5 | 23 | 24 | Install instructions need to be added manually. 25 | 26 | --- 27 | Install instructions file version: 1 (Monday, August 23rd 2021 at 6:31 pm) 28 | --- 29 | -------------------------------------------------------------------------------- /OldVersions/ISSUE_TEMPLATE/CONFIG/YML/V1_config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: I want to help develop 4 | url: https://github.com/seanpm2001/Teams/discussions/ 5 | about: Thank you for your interest in this project! Please consider joining a team to start developing with me 6 | - name: I want to help translate 7 | url: https://github.com/seanpm2001/Teams/discussions/ 8 | about: Thank you for your interest in this project! Please consider joining a team to start translating projects with me 9 | 10 | # File info 11 | # File version: 1 (2022, Thursday, May 19th at 7:07 pm PST) 12 | # File type: GitHub issue template config file (*.yml) 13 | # Line count (including blank lines and compiler line): 14 14 | -------------------------------------------------------------------------------- /OldVersions/ISSUE_TEMPLATE/ISSUE-TEMPLATE/1/1-100/issue-template_V1.yml: -------------------------------------------------------------------------------- 1 | name: General issue 2 | description: Report a bug or other issue/Opening an issue in this SNU Programming Tools IDE project 3 | body: 4 | - type: markdown 5 | attributes: 6 | value: | 7 | Unknown 8 | - type: checkboxes 9 | attributes: 10 | label: Prerequisites 11 | description: | 12 | To rule out invalid issues, confirm and check each one of the checkboxes. 13 | options: 14 | - label: I verified that this is not an existing issue 15 | required: true 16 | - label: This is not a [question, poll, or discussion](https://github.com/seanpm2001/SNU_2D_ProgrammingTools/discussions/) 17 | required: true 18 | - label: I checked the [documentation](https://github.com/seanpm2001/SNU_2D_ProgrammingTools/tree/master/Docs/) to understand that the issue I report is not a normal behavior 19 | required: true 20 | validations: 21 | required: true 22 | 23 | - type: checkboxes 24 | attributes: 25 | label: I tried to reproduce the issue when... 26 | options: 27 | - label: The repository was downloaded to my device/was viewing through the web browser 28 | required: true 29 | - label: I was using the latest version of the project 30 | required: true 31 | - label: I was using the version from the right source 32 | required: false 33 | - label: I did not modify the project 34 | required: false 35 | - type: textarea 36 | attributes: 37 | label: Description 38 | description: Description of the bug or feature. Please also list the version of the programming language you tested with. 39 | validations: 40 | required: true 41 | 42 | - type: textarea 43 | attributes: 44 | label: Steps to Reproduce 45 | placeholder: | 46 | 1. [First Step] 47 | 2. [Second Step] 48 | 3. [and so on...] 49 | validations: 50 | required: true 51 | 52 | - type: textarea 53 | attributes: 54 | label: Expected Results 55 | description: What you expected to happen, example: no error is thrown 56 | validations: 57 | required: true 58 | 59 | - type: textarea 60 | attributes: 61 | label: Actual results 62 | description: What actually happened, error is thrown 63 | validations: 64 | required: true 65 | 66 | - type: input 67 | attributes: 68 | label: Git-image repository version 69 | validations: 70 | required: true 71 | 72 | - type: checkboxes 73 | attributes: 74 | label: Browsers effected, please open an issue in [SNU BrowserNose](https://github.com/seanpm2001/SNU_BrowserNose) as well, if BrowserNose fails to do the task. 75 | options: 76 | label: Tor 77 | required: false 78 | label: Mozilla Firefox 79 | required: false 80 | label: SeaMonkey 81 | required: false 82 | label: Pale Moon 83 | required: false 84 | label: TenFourFox 85 | required: false 86 | label: Konquerer 87 | required: false 88 | label: Line Mode Browser 89 | required: false 90 | label: IceWeasel/IceCat 91 | required: false 92 | label: IceRaven 93 | required: false 94 | label: DuckDuckGo 95 | required: false 96 | label: Safari 97 | required: false 98 | label: Netscape Navigator 99 | required: false 100 | label: Nexus 101 | required: false 102 | label: SlimJet 103 | required: false 104 | label: AOL Explorer 105 | required: false 106 | label: Opera Mini 107 | required: false 108 | label: Android stock browser 109 | required: false 110 | label: Dot browser 111 | required: false 112 | label: Microsoft Edge 113 | required: false 114 | label: Opera 115 | required: false 116 | label: Samsung Internet 117 | required: false 118 | label: Google Chrome 119 | required: false 120 | label: Google Chromium 121 | required: false 122 | label: Internet Explorer 123 | required: false 124 | label: Other 125 | required: false 126 | validations: 127 | required: true 128 | 129 | - type: input 130 | attributes: 131 | label: Specify the specific browser version down to the last number (example: Firefox 88.0.1esr) and specify if you are running on a desktop or mobile device. 132 | validations: 133 | required: true 134 | 135 | - type: checkboxes 136 | attributes: 137 | label: I am running this repository in a virtual machine... 138 | options: 139 | - label: Yes (with Oracle VM VirtualBox) 140 | required: false 141 | - label: Yes (with VMWare) 142 | required: false 143 | - label: Yes (with Hyper-V) 144 | required: false 145 | - label: Yes (with Qemu) 146 | required: false 147 | - label: Yes (with another virtual machine option that isn't listed) 148 | required: false 149 | - label: No (I am running it on my host computer) 150 | required: false 151 | 152 | - type: textarea 153 | attributes: 154 | label: Additional virtual machine configuration 155 | placeholder: | 156 | Sample (overwrite this) 157 | Microsoft Windows XP Service Pack 3 158 | Registry modification for activation 159 | Internet Explorer 6 160 | VirtualBox 6.1.20 (64 bit) 161 | 512 MB RAM 162 | 32 Gigabyte disk space 163 | Host operating system: Kubuntu 22.04 164 | VirtualBox guest additions? Installed 165 | Internet type: Broadband 166 | Specific error: Page won't load, things aren't displaying correctly, see above validations: 167 | validations: 168 | required: true 169 | 170 | - type: textarea 171 | attributes: 172 | label: Version used 173 | placeholder: | 174 | What version are you using? (supported versions only) 175 | validations: 176 | required: true 177 | 178 | attributes: 179 | label: Validate issue 180 | options: 181 | - label: I have filled out all the fields 182 | required: true 183 | - label: I agree to the terms of the [GPL3 license](https://www.gnu.org/licenses/gpl-3.0.en.html) 184 | required: true 185 | - label: I have confirmed this issue isn't a duplicate 186 | required: true 187 | - label: I agree to follow the [code of conduct](https://github.com/seanpm2001/CODE_OF_CONDUCT.md) 188 | required: true 189 | - label: I want my answer to be archived into the repository 190 | required: false 191 | 192 | # Issue template info 193 | # 1B (2022, Thursday, May 19th at 6:50 pm PST) 194 | # File type: YAML document (*.yml *.yaml) 195 | # Line count (including blank lines and compiler line): 197 196 | # File purpose: Serving as a modern issue template for this project. 197 | -------------------------------------------------------------------------------- /OldVersions/ISSUE_TEMPLATE/ISSUE-TEMPLATE/1/1-100/issue-template_V2.yml: -------------------------------------------------------------------------------- 1 | name: General issue 2 | description: Report a bug or other issue/Opening an issue in this SNU Programming Tools IDE project 3 | body: 4 | - type: markdown 5 | attributes: 6 | value: | 7 | Unknown 8 | - type: checkboxes 9 | attributes: 10 | label: Prerequisites 11 | description: | 12 | To rule out invalid issues, confirm and check each one of the checkboxes. 13 | options: 14 | - label: I verified that this is not an existing issue 15 | required: true 16 | - label: This is not a [question, poll, or discussion](https://github.com/seanpm2001/SNU_2D_ProgrammingTools/discussions/) 17 | required: true 18 | - label: I checked the [documentation](https://github.com/seanpm2001/SNU_2D_ProgrammingTools/tree/master/Docs/) to understand that the issue I report is not a normal behavior 19 | required: true 20 | validations: 21 | required: true 22 | 23 | - type: checkboxes 24 | attributes: 25 | label: I tried to reproduce the issue when... 26 | options: 27 | - label: The repository was downloaded to my device/was viewing through the web browser 28 | required: true 29 | - label: I was using the latest version of the project 30 | required: true 31 | - label: I was using the version from the right source 32 | required: false 33 | - label: I did not modify the project 34 | required: false 35 | - type: textarea 36 | attributes: 37 | label: Description 38 | description: Description of the bug or feature. Please also list the version of the programming language you tested with. 39 | validations: 40 | required: true 41 | 42 | - type: textarea 43 | attributes: 44 | label: Steps to Reproduce 45 | placeholder: | 46 | 1. [First Step] 47 | 2. [Second Step] 48 | 3. [and so on...] 49 | validations: 50 | required: true 51 | 52 | - type: textarea 53 | attributes: 54 | label: Expected Results 55 | description: What you expected to happen, example: no error is thrown 56 | 57 | - type: textarea 58 | attributes: 59 | label: Actual results 60 | description: What actually happened, error is thrown 61 | validations: 62 | required: true 63 | 64 | - type: input 65 | attributes: 66 | label: Git-image repository version 67 | validations: 68 | required: true 69 | 70 | - type: checkboxes 71 | attributes: 72 | label: Browsers effected, please open an issue in [SNU BrowserNose](https://github.com/seanpm2001/SNU_BrowserNose) as well, if BrowserNose fails to do the task. 73 | options: 74 | label: Tor 75 | required: false 76 | label: Mozilla Firefox 77 | required: false 78 | label: SeaMonkey 79 | required: false 80 | label: Pale Moon 81 | required: false 82 | label: TenFourFox 83 | required: false 84 | label: Konquerer 85 | required: false 86 | label: Line Mode Browser 87 | required: false 88 | label: IceWeasel/IceCat 89 | required: false 90 | label: IceRaven 91 | required: false 92 | label: DuckDuckGo 93 | required: false 94 | label: Safari 95 | required: false 96 | label: Netscape Navigator 97 | required: false 98 | label: Nexus 99 | required: false 100 | label: SlimJet 101 | required: false 102 | label: AOL Explorer 103 | required: false 104 | label: Opera Mini 105 | required: false 106 | label: Android stock browser 107 | required: false 108 | label: Dot browser 109 | required: false 110 | label: Microsoft Edge 111 | required: false 112 | label: Opera 113 | required: false 114 | label: Samsung Internet 115 | required: false 116 | label: Google Chrome 117 | required: false 118 | label: Google Chromium 119 | required: false 120 | label: Internet Explorer 121 | required: false 122 | label: Other 123 | required: false 124 | validations: 125 | required: true 126 | 127 | - type: input 128 | attributes: 129 | label: Specify the specific browser version down to the last number (example: Firefox 88.0.1esr) and specify if you are running on a desktop or mobile device. 130 | validations: 131 | required: true 132 | 133 | - type: checkboxes 134 | attributes: 135 | label: I am running this repository in a virtual machine... 136 | options: 137 | - label: Yes (with Oracle VM VirtualBox) 138 | required: false 139 | - label: Yes (with VMWare) 140 | required: false 141 | - label: Yes (with Hyper-V) 142 | required: false 143 | - label: Yes (with Qemu) 144 | required: false 145 | - label: Yes (with another virtual machine option that isn't listed) 146 | required: false 147 | - label: No (I am running it on my host computer) 148 | required: false 149 | 150 | - type: textarea 151 | attributes: 152 | label: Additional virtual machine configuration 153 | placeholder: | 154 | Sample (overwrite this) 155 | Microsoft Windows XP Service Pack 3 156 | Registry modification for activation 157 | Internet Explorer 6 158 | VirtualBox 6.1.20 (64 bit) 159 | 512 MB RAM 160 | 32 Gigabyte disk space 161 | Host operating system: Kubuntu 22.04 162 | VirtualBox guest additions? Installed 163 | Internet type: Broadband 164 | Specific error: Page won't load, things aren't displaying correctly, see above validations: 165 | validations: 166 | required: true 167 | 168 | - type: textarea 169 | attributes: 170 | label: Version used 171 | placeholder: | 172 | What version are you using? (supported versions only) 173 | validations: 174 | required: true 175 | 176 | attributes: 177 | label: Validate issue 178 | options: 179 | - label: I have filled out all the fields 180 | required: true 181 | - label: I agree to the terms of the [GPL3 license](https://www.gnu.org/licenses/gpl-3.0.en.html) 182 | required: true 183 | - label: I have confirmed this issue isn't a duplicate 184 | required: true 185 | - label: I agree to follow the [code of conduct](https://github.com/seanpm2001/CODE_OF_CONDUCT.md) 186 | required: true 187 | - label: I want my answer to be archived into the repository 188 | required: false 189 | 190 | # Issue template info 191 | # 2B (2022, Thursday, May 19th at 6:52 pm PST) 192 | # File type: YAML document (*.yml *.yaml) 193 | # Line count (including blank lines and compiler line): 195 194 | # File purpose: Serving as a modern issue template for this project. 195 | -------------------------------------------------------------------------------- /OldVersions/ISSUE_TEMPLATE/ISSUE-TEMPLATE/1/1-100/issue-template_V3.yml: -------------------------------------------------------------------------------- 1 | name: General issue 2 | description: Report a bug or other issue/Opening an issue in this SNU Programming Tools IDE project 3 | body: 4 | - type: markdown 5 | attributes: 6 | value: | 7 | Unknown 8 | - type: checkboxes 9 | attributes: 10 | label: Prerequisites 11 | description: | 12 | To rule out invalid issues, confirm and check each one of the checkboxes. 13 | options: 14 | - label: I verified that this is not an existing issue 15 | required: true 16 | - label: This is not a [question, poll, or discussion](https://github.com/seanpm2001/SNU_2D_ProgrammingTools/discussions/) 17 | required: true 18 | - label: I checked the [documentation](https://github.com/seanpm2001/SNU_2D_ProgrammingTools/tree/master/Docs/) to understand that the issue I report is not a normal behavior 19 | required: true 20 | validations: 21 | required: true 22 | 23 | - type: checkboxes 24 | attributes: 25 | label: I tried to reproduce the issue when... 26 | options: 27 | - label: The repository was downloaded to my device/was viewing through the web browser 28 | required: true 29 | - label: I was using the latest version of the project 30 | required: true 31 | - label: I was using the version from the right source 32 | required: false 33 | - label: I did not modify the project 34 | required: false 35 | - type: textarea 36 | attributes: 37 | label: Description 38 | description: Description of the bug or feature. Please also list the version of the programming language you tested with. 39 | validations: 40 | required: true 41 | 42 | - type: textarea 43 | attributes: 44 | label: Steps to Reproduce 45 | placeholder: | 46 | 1. [First Step] 47 | 2. [Second Step] 48 | 3. [and so on...] 49 | validations: 50 | required: true 51 | 52 | - type: textarea 53 | attributes: 54 | label: Expected Results 55 | description: What you expected to happen, example - no error is thrown 56 | placeholder: | 57 | 1. [First Step] 58 | 2. [Second Step] 59 | 3. [and so on...] 60 | validations: 61 | required: true 62 | 63 | - type: textarea 64 | attributes: 65 | label: Actual results 66 | description: What actually happened, error is thrown 67 | validations: 68 | required: true 69 | 70 | - type: input 71 | attributes: 72 | label: Git-image repository version 73 | validations: 74 | required: true 75 | 76 | - type: checkboxes 77 | attributes: 78 | label: Browsers effected, please open an issue in [SNU BrowserNose](https://github.com/seanpm2001/SNU_BrowserNose) as well, if BrowserNose fails to do the task. 79 | options: 80 | label: Tor 81 | required: false 82 | label: Mozilla Firefox 83 | required: false 84 | label: SeaMonkey 85 | required: false 86 | label: Pale Moon 87 | required: false 88 | label: TenFourFox 89 | required: false 90 | label: Konquerer 91 | required: false 92 | label: Line Mode Browser 93 | required: false 94 | label: IceWeasel/IceCat 95 | required: false 96 | label: IceRaven 97 | required: false 98 | label: DuckDuckGo 99 | required: false 100 | label: Safari 101 | required: false 102 | label: Netscape Navigator 103 | required: false 104 | label: Nexus 105 | required: false 106 | label: SlimJet 107 | required: false 108 | label: AOL Explorer 109 | required: false 110 | label: Opera Mini 111 | required: false 112 | label: Android stock browser 113 | required: false 114 | label: Dot browser 115 | required: false 116 | label: Microsoft Edge 117 | required: false 118 | label: Opera 119 | required: false 120 | label: Samsung Internet 121 | required: false 122 | label: Google Chrome 123 | required: false 124 | label: Google Chromium 125 | required: false 126 | label: Internet Explorer 127 | required: false 128 | label: Other 129 | required: false 130 | validations: 131 | required: true 132 | 133 | - type: input 134 | attributes: 135 | label: Specify the specific browser version down to the last number (example: Firefox 88.0.1esr) and specify if you are running on a desktop or mobile device. 136 | validations: 137 | required: true 138 | 139 | - type: checkboxes 140 | attributes: 141 | label: I am running this repository in a virtual machine... 142 | options: 143 | - label: Yes (with Oracle VM VirtualBox) 144 | required: false 145 | - label: Yes (with VMWare) 146 | required: false 147 | - label: Yes (with Hyper-V) 148 | required: false 149 | - label: Yes (with Qemu) 150 | required: false 151 | - label: Yes (with another virtual machine option that isn't listed) 152 | required: false 153 | - label: No (I am running it on my host computer) 154 | required: false 155 | 156 | - type: textarea 157 | attributes: 158 | label: Additional virtual machine configuration 159 | placeholder: | 160 | Sample (overwrite this) 161 | Microsoft Windows XP Service Pack 3 162 | Registry modification for activation 163 | Internet Explorer 6 164 | VirtualBox 6.1.20 (64 bit) 165 | 512 MB RAM 166 | 32 Gigabyte disk space 167 | Host operating system: Kubuntu 22.04 168 | VirtualBox guest additions? Installed 169 | Internet type: Broadband 170 | Specific error: Page won't load, things aren't displaying correctly, see above validations: 171 | validations: 172 | required: true 173 | 174 | - type: textarea 175 | attributes: 176 | label: Version used 177 | placeholder: | 178 | What version are you using? (supported versions only) 179 | validations: 180 | required: true 181 | 182 | attributes: 183 | label: Validate issue 184 | options: 185 | - label: I have filled out all the fields 186 | required: true 187 | - label: I agree to the terms of the [GPL3 license](https://www.gnu.org/licenses/gpl-3.0.en.html) 188 | required: true 189 | - label: I have confirmed this issue isn't a duplicate 190 | required: true 191 | - label: I agree to follow the [code of conduct](https://github.com/seanpm2001/CODE_OF_CONDUCT.md) 192 | required: true 193 | - label: I want my answer to be archived into the repository 194 | required: false 195 | 196 | # Issue template info 197 | # 3B (2022, Thursday, May 19th at 6:54 pm PST) 198 | # File type: YAML document (*.yml *.yaml) 199 | # Line count (including blank lines and compiler line): 201 200 | # File purpose: Serving as a modern issue template for this project. 201 | -------------------------------------------------------------------------------- /OldVersions/ISSUE_TEMPLATE/ISSUE-TEMPLATE/1/1-100/issue-template_V4.yml: -------------------------------------------------------------------------------- 1 | name: General issue 2 | description: Report a bug or other issue/Opening an issue in this SNU Programming Tools IDE project 3 | body: 4 | - type: markdown 5 | attributes: 6 | value: | 7 | Unknown 8 | - type: checkboxes 9 | attributes: 10 | label: Prerequisites 11 | description: | 12 | To rule out invalid issues, confirm and check each one of the checkboxes. 13 | options: 14 | - label: I verified that this is not an existing issue 15 | required: true 16 | - label: This is not a [question, poll, or discussion](https://github.com/seanpm2001/SNU_2D_ProgrammingTools/discussions/) 17 | required: true 18 | - label: I checked the [documentation](https://github.com/seanpm2001/SNU_2D_ProgrammingTools/tree/master/Docs/) to understand that the issue I report is not a normal behavior 19 | required: true 20 | validations: 21 | required: true 22 | 23 | - type: checkboxes 24 | attributes: 25 | label: I tried to reproduce the issue when... 26 | options: 27 | - label: The repository was downloaded to my device/was viewing through the web browser 28 | required: true 29 | - label: I was using the latest version of the project 30 | required: true 31 | - label: I was using the version from the right source 32 | required: false 33 | - label: I did not modify the project 34 | required: false 35 | - type: textarea 36 | attributes: 37 | label: Description 38 | description: Description of the bug or feature. Please also list the version of the programming language you tested with. 39 | validations: 40 | required: true 41 | 42 | - type: textarea 43 | attributes: 44 | label: Steps to Reproduce 45 | placeholder: | 46 | 1. [First Step] 47 | 2. [Second Step] 48 | 3. [and so on...] 49 | validations: 50 | required: true 51 | 52 | - type: textarea 53 | attributes: 54 | label: Expected Results 55 | description: What you expected to happen, example - no error is thrown 56 | placeholder: | 57 | 1. [First Step] 58 | 2. [Second Step] 59 | 3. [and so on...] 60 | validations: 61 | required: true 62 | 63 | - type: textarea 64 | attributes: 65 | label: Actual results 66 | description: What actually happened, error is thrown 67 | validations: 68 | required: true 69 | 70 | - type: input 71 | attributes: 72 | label: Git-image repository version 73 | validations: 74 | required: true 75 | 76 | - type: checkboxes 77 | attributes: 78 | label: Browsers effected, please open an issue in [SNU BrowserNose](https://github.com/seanpm2001/SNU_BrowserNose) as well, if BrowserNose fails to do the task. 79 | options: 80 | label: Tor 81 | required: false 82 | label: Mozilla Firefox 83 | required: false 84 | label: SeaMonkey 85 | required: false 86 | label: Pale Moon 87 | required: false 88 | label: TenFourFox 89 | required: false 90 | label: Konquerer 91 | required: false 92 | label: Line Mode Browser 93 | required: false 94 | label: IceWeasel/IceCat 95 | required: false 96 | label: IceRaven 97 | required: false 98 | label: DuckDuckGo 99 | required: false 100 | label: Safari 101 | required: false 102 | label: Netscape Navigator 103 | required: false 104 | label: Nexus 105 | required: false 106 | label: SlimJet 107 | required: false 108 | label: AOL Explorer 109 | required: false 110 | label: Opera Mini 111 | required: false 112 | label: Android stock browser 113 | required: false 114 | label: Dot browser 115 | required: false 116 | label: Microsoft Edge 117 | required: false 118 | label: Opera 119 | required: false 120 | label: Samsung Internet 121 | required: false 122 | label: Google Chrome 123 | required: false 124 | label: Google Chromium 125 | required: false 126 | label: Internet Explorer 127 | required: false 128 | label: Other 129 | required: false 130 | validations: 131 | required: true 132 | 133 | - type: input 134 | attributes: 135 | label: Specify the specific browser version down to the last number (example: Firefox 88.0.1esr) and specify if you are running on a desktop or mobile device. 136 | validations: 137 | required: true 138 | 139 | - type: checkboxes 140 | attributes: 141 | label: I am running this repository in a virtual machine... 142 | options: 143 | - label: Yes (with Oracle VM VirtualBox) 144 | required: false 145 | - label: Yes (with VMWare) 146 | required: false 147 | - label: Yes (with Hyper-V) 148 | required: false 149 | - label: Yes (with Qemu) 150 | required: false 151 | - label: Yes (with another virtual machine option that isn't listed) 152 | required: false 153 | - label: No (I am running it on my host computer) 154 | required: false 155 | 156 | - type: textarea 157 | attributes: 158 | label: Additional virtual machine configuration 159 | placeholder: | 160 | Sample (overwrite this) 161 | Microsoft Windows XP Service Pack 3 162 | Registry modification for activation 163 | Internet Explorer 6 164 | VirtualBox 6.1.20 (64 bit) 165 | 512 MB RAM 166 | 32 Gigabyte disk space 167 | Host operating system: Kubuntu 22.04 168 | VirtualBox guest additions? Installed 169 | Internet type: Broadband 170 | Specific error: Page won't load, things aren't displaying correctly, see above validations: 171 | validations: 172 | required: true 173 | 174 | - type: textarea 175 | attributes: 176 | label: Version used 177 | placeholder: | 178 | What version are you using? (supported versions only) 179 | validations: 180 | required: true 181 | 182 | attributes: 183 | label: Validate issue 184 | options: 185 | - label: I have filled out all the fields 186 | required: true 187 | - label: I agree to the terms of the [GPL3 license](https://www.gnu.org/licenses/gpl-3.0.en.html) 188 | required: true 189 | - label: I have confirmed this issue isn't a duplicate 190 | required: true 191 | - label: I agree to follow the [code of conduct](https://github.com/seanpm2001/CODE_OF_CONDUCT.md) 192 | required: true 193 | - label: I want my answer to be archived into the repository 194 | required: false 195 | 196 | # Issue template info 197 | # 4B (2022, Thursday, May 19th at 6:56 pm PST) 198 | # File type: YAML document (*.yml *.yaml) 199 | # Line count (including blank lines and compiler line): 201 200 | # File purpose: Serving as a modern issue template for this project. 201 | -------------------------------------------------------------------------------- /OldVersions/ISSUE_TEMPLATE/ISSUE-TEMPLATE/1/1-100/issue-template_V5.yml: -------------------------------------------------------------------------------- 1 | name: General issue 2 | description: Report a bug or other issue/Opening an issue in this SNU Programming Tools IDE project 3 | body: 4 | - type: markdown 5 | attributes: 6 | value: | 7 | Unknown 8 | - type: checkboxes 9 | attributes: 10 | label: Prerequisites 11 | description: | 12 | To rule out invalid issues, confirm and check each one of the checkboxes. 13 | options: 14 | - label: I verified that this is not an existing issue 15 | required: true 16 | - label: This is not a [question, poll, or discussion](https://github.com/seanpm2001/SNU_2D_ProgrammingTools/discussions/) 17 | required: true 18 | - label: I checked the [documentation](https://github.com/seanpm2001/SNU_2D_ProgrammingTools/tree/master/Docs/) to understand that the issue I report is not a normal behavior 19 | required: true 20 | validations: 21 | required: true 22 | 23 | - type: checkboxes 24 | attributes: 25 | label: I tried to reproduce the issue when... 26 | options: 27 | - label: The repository was downloaded to my device/was viewing through the web browser 28 | required: true 29 | - label: I was using the latest version of the project 30 | required: true 31 | - label: I was using the version from the right source 32 | required: false 33 | - label: I did not modify the project 34 | required: false 35 | - type: textarea 36 | attributes: 37 | label: Description 38 | description: Description of the bug or feature. Please also list the version of the programming language you tested with. 39 | validations: 40 | required: true 41 | 42 | - type: textarea 43 | attributes: 44 | label: Steps to Reproduce 45 | placeholder: | 46 | 1. [First Step] 47 | 2. [Second Step] 48 | 3. [and so on...] 49 | validations: 50 | required: true 51 | 52 | - type: textarea 53 | attributes: 54 | label: Expected Results 55 | description: What you expected to happen, example - no error is thrown 56 | placeholder: | 57 | 1. [First Step] 58 | 2. [Second Step] 59 | 3. [and so on...] 60 | validations: 61 | required: true 62 | 63 | - type: textarea 64 | attributes: 65 | label: Actual results 66 | description: What actually happened, error is thrown 67 | validations: 68 | required: true 69 | 70 | - type: input 71 | attributes: 72 | label: Git-image repository version 73 | validations: 74 | required: true 75 | 76 | - type: checkboxes 77 | attributes: 78 | label: Browsers effected, please open an issue in [SNU BrowserNose](https://github.com/seanpm2001/SNU_BrowserNose) as well, if BrowserNose fails to do the task. 79 | options: 80 | label: Tor 81 | required: false 82 | label: Mozilla Firefox 83 | required: false 84 | label: SeaMonkey 85 | required: false 86 | label: Pale Moon 87 | required: false 88 | label: TenFourFox 89 | required: false 90 | label: Konquerer 91 | required: false 92 | label: Line Mode Browser 93 | required: false 94 | label: IceWeasel/IceCat 95 | required: false 96 | label: IceRaven 97 | required: false 98 | label: DuckDuckGo 99 | required: false 100 | label: Safari 101 | required: false 102 | label: Netscape Navigator 103 | required: false 104 | label: Nexus 105 | required: false 106 | label: SlimJet 107 | required: false 108 | label: AOL Explorer 109 | required: false 110 | label: Opera Mini 111 | required: false 112 | label: Android stock browser 113 | required: false 114 | label: Dot browser 115 | required: false 116 | label: Microsoft Edge 117 | required: false 118 | label: Opera 119 | required: false 120 | label: Samsung Internet 121 | required: false 122 | label: Google Chrome 123 | required: false 124 | label: Google Chromium 125 | required: false 126 | label: Internet Explorer 127 | required: false 128 | label: Other 129 | required: false 130 | validations: 131 | required: true 132 | 133 | - type: input 134 | attributes: 135 | label: Specify the specific browser version down to the last number (example Firefox 88.0.1esr) 136 | validations: 137 | required: true 138 | 139 | - type: checkboxes 140 | attributes: 141 | label: I am running this repository in a virtual machine... 142 | options: 143 | - label: Yes (with Oracle VM VirtualBox) 144 | required: false 145 | - label: Yes (with VMWare) 146 | required: false 147 | - label: Yes (with Hyper-V) 148 | required: false 149 | - label: Yes (with Qemu) 150 | required: false 151 | - label: Yes (with another virtual machine option that isn't listed) 152 | required: false 153 | - label: No (I am running it on my host computer) 154 | required: false 155 | 156 | - type: textarea 157 | attributes: 158 | label: Additional virtual machine configuration 159 | placeholder: | 160 | Sample (overwrite this) 161 | Microsoft Windows XP Service Pack 3 162 | Registry modification for activation 163 | Internet Explorer 6 164 | VirtualBox 6.1.20 (64 bit) 165 | 512 MB RAM 166 | 32 Gigabyte disk space 167 | Host operating system: Kubuntu 22.04 168 | VirtualBox guest additions? Installed 169 | Internet type: Broadband 170 | Specific error: Page won't load, things aren't displaying correctly, see above validations: 171 | validations: 172 | required: true 173 | 174 | - type: textarea 175 | attributes: 176 | label: Version used 177 | placeholder: | 178 | What version are you using? (supported versions only) 179 | validations: 180 | required: true 181 | 182 | attributes: 183 | label: Validate issue 184 | options: 185 | - label: I have filled out all the fields 186 | required: true 187 | - label: I agree to the terms of the [GPL3 license](https://www.gnu.org/licenses/gpl-3.0.en.html) 188 | required: true 189 | - label: I have confirmed this issue isn't a duplicate 190 | required: true 191 | - label: I agree to follow the [code of conduct](https://github.com/seanpm2001/CODE_OF_CONDUCT.md) 192 | required: true 193 | - label: I want my answer to be archived into the repository 194 | required: false 195 | 196 | # Issue template info 197 | # 5B (2022, Thursday, May 19th at 6:58 pm PST) 198 | # File type: YAML document (*.yml *.yaml) 199 | # Line count (including blank lines and compiler line): 201 200 | # File purpose: Serving as a modern issue template for this project. 201 | -------------------------------------------------------------------------------- /OldVersions/ISSUE_TEMPLATE/ISSUE-TEMPLATE/1/1-100/issue-template_V6.yml: -------------------------------------------------------------------------------- 1 | name: General issue 2 | description: Report a bug or other issue/Opening an issue in this SNU Programming Tools IDE project 3 | body: 4 | - type: markdown 5 | attributes: 6 | value: | 7 | Unknown 8 | - type: checkboxes 9 | attributes: 10 | label: Prerequisites 11 | description: | 12 | To rule out invalid issues, confirm and check each one of the checkboxes. 13 | options: 14 | - label: I verified that this is not an existing issue 15 | required: true 16 | - label: This is not a [question, poll, or discussion](https://github.com/seanpm2001/SNU_2D_ProgrammingTools/discussions/) 17 | required: true 18 | - label: I checked the [documentation](https://github.com/seanpm2001/SNU_2D_ProgrammingTools/tree/master/Docs/) to understand that the issue I report is not a normal behavior 19 | required: true 20 | validations: 21 | required: true 22 | 23 | - type: checkboxes 24 | attributes: 25 | label: I tried to reproduce the issue when... 26 | options: 27 | - label: The repository was downloaded to my device/was viewing through the web browser 28 | required: true 29 | - label: I was using the latest version of the project 30 | required: true 31 | - label: I was using the version from the right source 32 | required: false 33 | - label: I did not modify the project 34 | required: false 35 | - type: textarea 36 | attributes: 37 | label: Description 38 | description: Description of the bug or feature. Please also list the version of the programming language you tested with. 39 | validations: 40 | required: true 41 | 42 | - type: textarea 43 | attributes: 44 | label: Steps to Reproduce 45 | placeholder: | 46 | 1. [First Step] 47 | 2. [Second Step] 48 | 3. [and so on...] 49 | validations: 50 | required: true 51 | 52 | - type: textarea 53 | attributes: 54 | label: Expected Results 55 | description: What you expected to happen, example - no error is thrown 56 | placeholder: | 57 | 1. [First Step] 58 | 2. [Second Step] 59 | 3. [and so on...] 60 | validations: 61 | required: true 62 | 63 | - type: textarea 64 | attributes: 65 | label: Actual results 66 | description: What actually happened, error is thrown 67 | validations: 68 | required: true 69 | 70 | - type: input 71 | attributes: 72 | label: Git-image repository version 73 | validations: 74 | required: true 75 | 76 | - type: checkboxes 77 | attributes: 78 | label: Browsers effected, please open an issue in [SNU BrowserNose](https://github.com/seanpm2001/SNU_BrowserNose) as well, if BrowserNose fails to do the task. 79 | options: 80 | label: Tor 81 | required: false 82 | label: Mozilla Firefox 83 | required: false 84 | label: SeaMonkey 85 | required: false 86 | label: Pale Moon 87 | required: false 88 | label: TenFourFox 89 | required: false 90 | label: Konquerer 91 | required: false 92 | label: Line Mode Browser 93 | required: false 94 | label: IceWeasel/IceCat 95 | required: false 96 | label: IceRaven 97 | required: false 98 | label: DuckDuckGo 99 | required: false 100 | label: Safari 101 | required: false 102 | label: Netscape Navigator 103 | required: false 104 | label: Nexus 105 | required: false 106 | label: SlimJet 107 | required: false 108 | label: AOL Explorer 109 | required: false 110 | label: Opera Mini 111 | required: false 112 | label: Android stock browser 113 | required: false 114 | label: Dot browser 115 | required: false 116 | label: Microsoft Edge 117 | required: false 118 | label: Opera 119 | required: false 120 | label: Samsung Internet 121 | required: false 122 | label: Google Chrome 123 | required: false 124 | label: Google Chromium 125 | required: false 126 | label: Internet Explorer 127 | required: false 128 | label: Other 129 | required: false 130 | validations: 131 | required: true 132 | 133 | - type: input 134 | attributes: 135 | label: Specify the specific browser version down to the last number (example Firefox 88.0.1esr) 136 | validations: 137 | required: true 138 | 139 | - type: checkboxes 140 | attributes: 141 | label: I am running this repository in a virtual machine... 142 | options: 143 | - label: Yes (with Oracle VM VirtualBox) 144 | required: false 145 | - label: Yes (with VMWare) 146 | required: false 147 | - label: Yes (with Hyper-V) 148 | required: false 149 | - label: Yes (with Qemu) 150 | required: false 151 | - label: Yes (with another virtual machine option that isn't listed) 152 | required: false 153 | - label: No (I am running it on my host computer) 154 | required: false 155 | 156 | - type: textarea 157 | attributes: 158 | label: Additional virtual machine configuration 159 | placeholder: | 160 | Sample (overwrite this) 161 | Microsoft Windows XP Service Pack 3 162 | Registry modification for activation 163 | Internet Explorer 6 164 | VirtualBox 6.1.20 (64 bit) 165 | 512 MB RAM 166 | 32 Gigabyte disk space 167 | Host operating system: Kubuntu 22.04 168 | VirtualBox guest additions? Installed 169 | Internet type: Broadband 170 | Specific error: Page won't load, things aren't displaying correctly, see above validations: 171 | validations: 172 | required: true 173 | 174 | - type: textarea 175 | attributes: 176 | label: Version used 177 | placeholder: | 178 | What version are you using? (supported versions only) 179 | validations: 180 | required: true 181 | 182 | attributes: 183 | label: Validate issue 184 | options: 185 | - label: I have filled out all the fields 186 | required: true 187 | - label: I agree to the terms of the [GPL3 license](https://www.gnu.org/licenses/gpl-3.0.en.html) 188 | required: true 189 | - label: I have confirmed this issue isn't a duplicate 190 | required: true 191 | - label: I agree to follow the [code of conduct](https://github.com/seanpm2001/CODE_OF_CONDUCT.md) 192 | required: true 193 | - label: I want my answer to be archived into the repository 194 | required: false 195 | 196 | # Issue template info 197 | # 6B (2022, Thursday, May 19th at 6:59 pm PST) 198 | # File type: YAML document (*.yml *.yaml) 199 | # Line count (including blank lines and compiler line): 201 200 | # File purpose: Serving as a modern issue template for this project. 201 | -------------------------------------------------------------------------------- /OldVersions/ISSUE_TEMPLATE/MISCELLANEOUS/YML/miscellaneous_V1.yml: -------------------------------------------------------------------------------- 1 | name: Miscellaneous 2 | description: Write a general issue without too much questioning 3 | body: 4 | - type: markdown 5 | attributes: 6 | value: | 7 | Unknown 8 | - type: checkboxes 9 | attributes: 10 | label: Prerequisites 11 | description: | 12 | To rule out invalid issues, confirm and check each one of the checkboxes. 13 | options: 14 | - label: I verified that this is not an existing issue 15 | required: true 16 | - label: This is not a question, poll, or discussion 17 | required: true 18 | - label: I checked the documentation to understand that the issue I report is not a normal behavior 19 | required: true 20 | - type: textarea 21 | attributes: 22 | label: Description 23 | description: Your issue description. Make sure to utilize Markdown to make your life easier :) 24 | validations: 25 | required: true 26 | # File info 27 | # File type: GitHub bug report issue template (*.yml) 28 | # File version: 1 (2022, Wednesday, November 23rd at 6:31 pm PST) 29 | # Line count (including blank lines and compiler line): 30 30 | -------------------------------------------------------------------------------- /OldVersions/KDESKTOP/K_V1.desktop: -------------------------------------------------------------------------------- 1 | # Start of script 2 | # Sample KDE desktop entry 3 | [Desktop Entry] 4 | Type=Application 5 | Exec=your-app %u 6 | MimeType=application/x-your-mime-type; 7 | Icon=some-icon 8 | X-DocPath=yourapp/index.html 9 | Terminal=false 10 | Name=Your App 11 | GenericName=Some Generic Name 12 | Comment=Short Description Of Your App 13 | Categories=Qt;KDE; 14 | # File info 15 | # File type: KDE desktop file (*.desktop) 16 | # File version: 1 (2021, Tuesday, December 14th at 4:05 pm) 17 | # Line count (including blank lines and compiler line): 19 18 | # End of script 19 | -------------------------------------------------------------------------------- /OldVersions/MAKEFILE/1/1-100/makefile_V1.mk: -------------------------------------------------------------------------------- 1 | # Start of script 2 | # The Makefile for this project 3 | # Rename the secondary copying license 4 | # Since I don't know how to just rename a file, I will copy it and delete the original, that is as close as I can get with GNU Make right now 5 | copy /COPYINGL to /COPYING 6 | rm -f /COPYINGL 7 | echo "COPYING license file has been corrected." 8 | # This syntax isn't valid yet, I don't know how to write in GNU Make very well 9 | # File info 10 | # File type: Makefile (MAKEFILE, *.mk) 11 | # File version: 1 (Wednesday, August 18th 2021 at 6:41 pm) 12 | # Line count (including blank lines and compiler line): 14 13 | # End of script 14 | -------------------------------------------------------------------------------- /OldVersions/PULL_REQUEST_TEMPLATE/pull_request_template_V1.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Creating a pull request 5 | 6 | Thank you for taking the time to create a pull request in this repository! Please fill out this form before submitting your PR. 7 | 8 | **Note:** you can change the language of the formatting if needed, but it must be valid syntax. Supported languages include: ASCIIDoc, Org mode, Markdown, WikiText, ReStructuredText, Creole, Pod, RDoc, Textile, and plain text. Be sure to change thw `markdown` tag to the appropriate language. 9 | 10 | Provide a general summary of your changes in the Title above 11 | 12 | ```markdown 13 | Your summary description (title) goes here 14 | ``` 15 | 16 | ## Description 17 | 18 | Describe your changes in detail 19 | 20 | ```markdown 21 | Your issue description (body) goes here 22 | ``` 23 | 24 | ## Related Issue 25 | 26 | - [ ] This project only accepts pull requests related to open issues 27 | - [ ] If suggesting a new feature or change, please discuss it in an issue first 28 | - [ ] If fixing a bug, there should be an issue describing it with steps to reproduce 29 | - [ ] Please link to the issue here: 30 | 31 | ```markdown 32 | Link to the issue here, #__ 33 | ``` 34 | 35 | ## Motivation and Context 36 | 37 | Why is this change required? What problem does it solve? 38 | 39 | ```markdown 40 | 41 | ``` 42 | 43 | ## How Has This Been Tested? 44 | 45 | - [ ] Please describe in detail how you tested your changes. 46 | - [ ] Include details of your testing environment, and the tests you ran to. 47 | - [ ] see how your change affects other areas of the code, etc. 48 | 49 | ## Screenshots (if appropriate): 50 | 51 | Please include the screenshots inside your pull request as well as a local link (hard copy) 52 | 53 | **Warning:** `.webp` and `.heif` images are not accepted. Please convert them to a different format (such as PNG, JPG, JPEG, JIF, GIF, TIF, etc.) 54 | 55 | **Warning:** Images outside of `/.github/Pull_Requests/Queue/PR/` are not accepted, and will be removed from the PR within 24 hours if not fixed 56 | 57 | ```markdown 58 | Remove this section, and only include the links if you use this section. Be sure to delete image fields that are not needed. Max screenshots per PR: 5. Also, if screenshots aren't necessary, please delete this entire section 59 | 60 | ![Example1](/.github/Pull_Requests/Queue/PR/Image.png) 61 | ![Example2](/.github/Pull_Requests/Queue/PR/Image.png) 62 | ![Example3](/.github/Pull_Requests/Queue/PR/Image.png) 63 | ![Example4](/.github/Pull_Requests/Queue/PR/Image.png) 64 | ![Example5](/.github/Pull_Requests/Queue/PR/Image.png) 65 | ``` 66 | 67 | ## Types of changes 68 | 69 | What types of changes does your code introduce? Put an `x` in all the boxes that apply: 70 | 71 | - [ ] Bug fix (non-breaking change which fixes an issue) 72 | - [ ] New feature (non-breaking change which adds functionality) 73 | - [ ] Breaking change (fix or feature that would cause existing functionality to change) 74 | 75 | ## Checklist: 76 | 77 | Go over all the following points, and put an `x` in all the boxes that apply. 78 | 79 | If you're unsure about any of these, don't hesitate to ask. We're here to help! 80 | 81 | - [ ] My source code (if source code is provided) follows the source code style of this project. 82 | - [ ] My change requires a change to the documentation. 83 | - [ ] My change does not delete necessary files 84 | - [ ] I have updated the documentation accordingly. 85 | - [ ] I have read the [**`CONTRIBUTING`**](/CONTRIBUTING.md) document in my spoken language, and understand the terms 86 | - [ ] I have added tests to cover my changes. 87 | - [ ] I have gone through all the steps, and have thoroughly read the instructions 88 | 89 | *** 90 | 91 | 102 | -------------------------------------------------------------------------------- /OldVersions/README/English/1/README_V0.1.5.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # 5 | 6 | ![{Project icon} This image failed to load. It may be due to the file not being reached, or a general error. Reload the page to fix a possible general error.](Image.svg) 7 | 8 | # By: 9 | 10 | 11 | 12 | ## [Seanpm2001](https://github.com/seanpm2001/), [](https://github.com//) Et; Al. 13 | 14 | 15 | ### Top 16 | 17 | # `README.md` 18 | 19 | *** 20 | 21 | ## Read this article in a different language 22 | 23 | **Sorted by:** `A-Z` 24 | 25 | [Sorting options unavailable](https://github.com//) 26 | 27 | ( [af Afrikaans](/.github/README_AF.md) Afrikaans | [sq Shqiptare](/.github/README_SQ.md) Albanian | [am አማርኛ](/.github/README_AM.md) Amharic | [ar عربى](/.github/README_AR.md) Arabic | [hy հայերեն](/.github/README_HY.md) Armenian | [az Azərbaycan dili](/.github/README_AZ.md) Azerbaijani | [eu Euskara](/.github/README_EU.md) Basque | [be Беларуская](/.github/README_BE.md) Belarusian | [bn বাংলা](/.github/README_BN.md) Bengali | [bs Bosanski](/.github/README_BS.md) Bosnian | [bg български](/.github/README_BG.md) Bulgarian | [ca Català](/.github/README_CA.md) Catalan | [ceb Sugbuanon](/.github/README_CEB.md) Cebuano | [ny Chichewa](/.github/README_NY.md) Chichewa | [zh-CN 简体中文](/.github/README_ZH-CN.md) Chinese (Simplified) | [zh-t 中國傳統的)](/.github/README_ZH-T.md) Chinese (Traditional) | [co Corsu](/.github/README_CO.md) Corsican | [hr Hrvatski](/.github/README_HR.md) Croatian | [cs čeština](/.github/README_CS.md) Czech | [da dansk](README_DA.md) Danish | [nl Nederlands](/.github/README_NL.md) Dutch | [**en-us English**](/.github/README.md) English | [EO Esperanto](/.github/README_EO.md) Esperanto | [et Eestlane](/.github/README_ET.md) Estonian | [tl Pilipino](/.github/README_TL.md) Filipino | [fi Suomalainen](/.github/README_FI.md) Finnish | [fr français](/.github/README_FR.md) French | [fy Frysk](/.github/README_FY.md) Frisian | [gl Galego](/.github/README_GL.md) Galician | [ka ქართველი](/.github/README_KA) Georgian | [de Deutsch](/.github/README_DE.md) German | [el Ελληνικά](/.github/README_EL.md) Greek | [gu ગુજરાતી](/.github/README_GU.md) Gujarati | [ht Kreyòl ayisyen](/.github/README_HT.md) Haitian Creole | [ha Hausa](/.github/README_HA.md) Hausa | [haw Ōlelo Hawaiʻi](/.github/README_HAW.md) Hawaiian | [he עִברִית](/.github/README_HE.md) Hebrew | [hi हिन्दी](/.github/README_HI.md) Hindi | [hmn Hmong](/.github/README_HMN.md) Hmong | [hu Magyar](/.github/README_HU.md) Hungarian | [is Íslenska](/.github/README_IS.md) Icelandic | [ig Igbo](/.github/README_IG.md) Igbo | [id bahasa Indonesia](/.github/README_ID.md) Icelandic | [ga Gaeilge](/.github/README_GA.md) Irish | [it Italiana/Italiano](/.github/README_IT.md) | [ja 日本語](/.github/README_JA.md) Japanese | [jw Wong jawa](/.github/README_JW.md) Javanese | [kn ಕನ್ನಡ](/.github/README_KN.md) Kannada | [kk Қазақ](/.github/README_KK.md) Kazakh | [km ខ្មែរ](/.github/README_KM.md) Khmer | [rw Kinyarwanda](/.github/README_RW.md) Kinyarwanda | [ko-south 韓國語](/.github/README_KO_SOUTH.md) Korean (South) | [ko-north 문화어](README_KO_NORTH.md) Korean (North) (NOT YET TRANSLATED) | [ku Kurdî](/.github/README_KU.md) Kurdish (Kurmanji) | [ky Кыргызча](/.github/README_KY.md) Kyrgyz | [lo ລາວ](/.github/README_LO.md) Lao | [la Latine](/.github/README_LA.md) Latin | [lt Lietuvis](/.github/README_LT.md) Lithuanian | [lb Lëtzebuergesch](/.github/README_LB.md) Luxembourgish | [mk Македонски](/.github/README_MK.md) Macedonian | [mg Malagasy](/.github/README_MG.md) Malagasy | [ms Bahasa Melayu](/.github/README_MS.md) Malay | [ml മലയാളം](/.github/README_ML.md) Malayalam | [mt Malti](/.github/README_MT.md) Maltese | [mi Maori](/.github/README_MI.md) Maori | [mr मराठी](/.github/README_MR.md) Marathi | [mn Монгол](/.github/README_MN.md) Mongolian | [my မြန်မာ](/.github/README_MY.md) Myanmar (Burmese) | [ne नेपाली](/.github/README_NE.md) Nepali | [no norsk](/.github/README_NO.md) Norwegian | [or ଓଡିଆ (ଓଡିଆ)](/.github/README_OR.md) Odia (Oriya) | [ps پښتو](/.github/README_PS.md) Pashto | [fa فارسی](/.github/README_FA.md) |Persian [pl polski](/.github/README_PL.md) Polish | [pt português](/.github/README_PT.md) Portuguese | [pa ਪੰਜਾਬੀ](/.github/README_PA.md) Punjabi | No languages available that start with the letter Q | [ro Română](/.github/README_RO.md) Romanian | [ru русский](/.github/README_RU.md) Russian | [sm Faasamoa](/.github/README_SM.md) Samoan | [gd Gàidhlig na h-Alba](/.github/README_GD.md) Scots Gaelic | [sr Српски](/.github/README_SR.md) Serbian | [st Sesotho](/.github/README_ST.md) Sesotho | [sn Shona](/.github/README_SN.md) Shona | [sd سنڌي](/.github/README_SD.md) Sindhi | [si සිංහල](/.github/README_SI.md) Sinhala | [sk Slovák](/.github/README_SK.md) Slovak | [sl Slovenščina](/.github/README_SL.md) Slovenian | [so Soomaali](/.github/README_SO.md) Somali | [[es en español](/.github/README_ES.md) Spanish | [su Sundanis](/.github/README_SU.md) Sundanese | [sw Kiswahili](/.github/README_SW.md) Swahili | [sv Svenska](/.github/README_SV.md) Swedish | [tg Тоҷикӣ](/.github/README_TG.md) Tajik | [ta தமிழ்](/.github/README_TA.md) Tamil | [tt Татар](/.github/README_TT.md) Tatar | [te తెలుగు](/.github/README_TE.md) Telugu | [th ไทย](/.github/README_TH.md) Thai | [tr Türk](/.github/README_TR.md) Turkish | [tk Türkmenler](/.github/README_TK.md) Turkmen | [uk Український](/.github/README_UK.md) Ukrainian | [ur اردو](/.github/README_UR.md) Urdu | [ug ئۇيغۇر](/.github/README_UG.md) Uyghur | [uz O'zbek](/.github/README_UZ.md) Uzbek | [vi Tiếng Việt](/.github/README_VI.md) Vietnamese | [cy Cymraeg](/.github/README_CY.md) Welsh | [xh isiXhosa](/.github/README_XH.md) Xhosa | [yi יידיש](/.github/README_YI.md) Yiddish | [yo Yoruba](/.github/README_YO.md) Yoruba | [zu Zulu](/.github/README_ZU.md) Zulu ) Available in 110 languages (108 when not counting English and North Korean, as North Korean has not been translated yet [Read about it here](/OldVersions/Korean(North)/README.md)) 28 | 29 | Translations in languages other than English are machine translated and are not yet accurate. No errors have been fixed yet as of March 21st 2021. Please report translation errors [here](https://github.com///issues/). Make sure to backup your correction with sources and guide me, as I don't know languages other than English well (I plan on getting a translator eventually) please cite [wiktionary](https://en.wiktionary.org) and other sources in your report. Failing to do so will result in a rejection of the correction being published. 30 | 31 | Note: due to limitations with GitHub's interpretation of markdown (and pretty much every other web-based interpretation of markdown) clicking these links will redirect you to a separate file on a separate page that isn't the intended page. You will be redirected to the [.github folder](/.github/) of this project, where the README translations are hosted. 32 | 33 | Translations are currently done with Bing translate and DeepL. Support for Google Translate translations is coming to a close due to privacy concerns. 34 | 35 | *** 36 | 37 | # Index 38 | 39 | [00.0 - Top](#Top) 40 | 41 | > [00.1 - Title](#) 42 | 43 | > [00.2 - Read this article in a different language](#Read-this-article-in-a-different-language) 44 | 45 | > [00.3 - Index](#Index) 46 | 47 | [01.0 - Description](#RepositoryName) 48 | 49 | [02.0 - About](#About) 50 | 51 | [03.0 - Wiki](#Wiki) 52 | 53 | [04.0 - History](#History) 54 | 55 | > [04.1 - Pre-history](#Pre-history) 56 | 57 | > [04.2 - Alpha History](#Alpha-history) 58 | 59 | > [04.3 - Beta History](#Beta-history) 60 | 61 | > [04.4 - Modern History](#Modern-history) 62 | 63 | [05.0 - Version history](#Version-history) 64 | 65 | [06.0 - Software status](#Software-status) 66 | 67 | [78.0 - Sponsor info](#Sponsor-info) 68 | 69 | [08.0 - Contributers](#Contributers) 70 | 71 | [09.0 - Issues](#Issues) 72 | 73 | > [09.1 - Current issues](#Current-issues) 74 | 75 | > [09.2 - Past issues](#Past-issues) 76 | 77 | > [09.3 - Past pull requests](#Past-pull-requests) 78 | 79 | > [09.4 - Active pull requests](#Active-pull-requests) 80 | 81 | [10.0 - Resources](#Resources) 82 | 83 | [11.0 - Contributing](#Contributing) 84 | 85 | [12.0 - About README](#About-README) 86 | 87 | [13.0 - README Version history](#README-version-history) 88 | 89 | [14.0 - Footer](#You-have-reached-the-end-of-the-README-file) 90 | 91 | > [14.9 - End of file](#EOF) 92 | 93 | *** 94 | 95 | # 96 | 97 | 98 | *** 99 | 100 | ## About 101 | 102 | See above. 103 | 104 | *** 105 | 106 | ## Wiki 107 | 108 | [Click/tap here to view this projects Wiki](https://github.com///wiki) 109 | 110 | If the project has been forked, the Wiki was likely removed. Luckily, I include an embedded version. You can view it [here](/External/ProjectWiki/). 111 | 112 | *** 113 | 114 | ## History 115 | 116 | Write about this projects history here. 117 | 118 | ### Pre-history 119 | 120 | No pre-history to show for this project. 121 | 122 | ### Alpha history 123 | 124 | No Alpha history to show for this project. 125 | 126 | ### Beta history 127 | 128 | No Beta history to show for this project. 129 | 130 | ### Modern history 131 | 132 | No Modern history to show for this project. 133 | 134 | *** 135 | 136 | ## Sponsor info 137 | 138 | ![SponsorButton.png](/SponsorButton.png) 139 | 140 | You can sponsor this project if you like, but please specify what you want to donate to. [See the funds you can donate to here](https://github.com/seanpm2001/Sponsor-info/tree/main/For-sponsors/) 141 | 142 | You can view other sponsor info [here](https://github.com/seanpm2001/Sponsor-info/) 143 | 144 | Try it out! The sponsor button is right up next to the watch/unwatch button. 145 | 146 | *** 147 | 148 | ## Version history 149 | 150 | **Version history currently unavailable** 151 | 152 | **No other versions listed** 153 | 154 | *** 155 | 156 | ## Software status 157 | 158 | All of my works are free some restrictions. DRM (**D**igital **R**estrictions **M**anagement) is not present in any of my works. 159 | 160 | ![DRM-free_label.en.svg](/DRM-free_label.en.svg) 161 | 162 | This sticker is supported by the Free Software Foundation. I never intend to include DRM in my works. 163 | 164 | I am ussing the abbreviation "Digital Restrictions Management" instead of the more known "Digital Rights Management" as the common way of addressing it is false, there are no rights with DRM. The spelling "Digital Restrictions Management" is more accurate, and is supported by [Richard M. Stallman (RMS)](https://en.wikipedia.org/wiki/Richard_Stallman) and the [Free Software Foundation (FSF)](https://en.wikipedia.org/wiki/Free_Software_Foundation) 165 | 166 | This section is used to raise awareness for the problems with DRM, and also to protest it. DRM is defective by design and is a major threat to all computer users and software freedom. 167 | 168 | Image credit: [defectivebydesign.org/drm-free/...](https://www.defectivebydesign.org/drm-free/how-to-use-label/) 169 | 170 | *** 171 | 172 | ## Contributers 173 | 174 | Currently, I am the only contributer. Contributing is allowed, as long as you follow the rules of the [CONTRIBUTING.md](/CONTRIBUTING.md) file. 175 | 176 | > * 1. [seanpm2001](https://github.com/seanpm2001/) - x commits (As of DoW, Month, DoM, Yr at ##:## a/pm) 177 | 178 | > * 2. No other contributers. 179 | 180 | *** 181 | 182 | ## Issues 183 | 184 | ### Current issues 185 | 186 | * None at the moment 187 | 188 | * No other current issues 189 | 190 | If the repository has been forked, issues likely have been removed. Luckily I keep an archive of certain images [here](/.github/Issues/) 191 | 192 | [Read the privacy policy on issue archival here](/.github/Issues/README.md) 193 | 194 | **TL;DR** 195 | 196 | I archive my own issues. Your issue won't be archived unless you request it to be archived. 197 | 198 | ### Past issues 199 | 200 | * None at the moment 201 | 202 | * No other past issues 203 | 204 | If the repository has been forked, issues likely have been removed. Luckily I keep an archive of certain images [here](/.github/Issues/) 205 | 206 | [Read the privacy policy on issue archival here](/.github/Issues/README.md) 207 | 208 | **TL;DR** 209 | 210 | I archive my own issues. Your issue won't be archived unless you request it to be archived. 211 | 212 | ### Past pull requests 213 | 214 | * None at the moment 215 | 216 | * No other past pull requests 217 | 218 | If the repository has been forked, issues likely have been removed. Luckily I keep an archive of certain images [here](/.github/Issues/) 219 | 220 | [Read the privacy policy on issue archival here](/.github/Issues/README.md) 221 | 222 | **TL;DR** 223 | 224 | I archive my own issues. Your issue won't be archived unless you request it to be archived. 225 | 226 | ### Active pull requests 227 | 228 | * None at the moment 229 | 230 | * No other active pull requests 231 | 232 | If the repository has been forked, issues likely have been removed. Luckily I keep an archive of certain images [here](/.github/Issues/) 233 | 234 | [Read the privacy policy on issue archival here](/.github/Issues/README.md) 235 | 236 | **TL;DR** 237 | 238 | I archive my own issues. Your issue won't be archived unless you request it to be archived. 239 | 240 | *** 241 | 242 | ## Resources 243 | 244 | Here are some other resources for this project: 245 | 246 | [Project language file A](PROJECT_LANG_1.) 247 | 248 | [Join the discussion on GitHub](https://github.com///discussions) 249 | 250 | No other resources at the moment. 251 | 252 | *** 253 | 254 | ## Contributing 255 | 256 | Contributing is allowed for this project, as long as you follow the rules of the `CONTRIBUTING.md` file. 257 | 258 | [Click/tap here to view the contributing rules for this project](/CONTRIBUTING.md) 259 | 260 | *** 261 | 262 | ## About README 263 | 264 | **File type:** `Markdown Document (*.md *.mkd *.markdown)` 265 | 266 | File version: `0.1.5 (Monday, August 23rd 2021 at 6:11 pm)` 267 | 268 | Line count: `0,351` 269 | 270 | *** 271 | 272 | ## README version history 273 | 274 | Version 0.1 (Sunday, March 21st 2021 at 7:50 pm) 275 | 276 | > Changes: 277 | 278 | > * Started the file 279 | 280 | > * Added the title section 281 | 282 | > * Added the index 283 | 284 | > * Added the about section 285 | 286 | > * Added the Wiki section 287 | 288 | > * Added the version history section 289 | 290 | > * Added the issues section. 291 | 292 | > * Added the past issues section 293 | 294 | > * Added the past pull requests section 295 | 296 | > * Added the active pull requests section 297 | 298 | > * Added the contributors section 299 | 300 | > * Added the contributing section 301 | 302 | > * Added the about README section 303 | 304 | > * Added the README version history section 305 | 306 | > * Added the resources section 307 | 308 | > * Added a software status section, with a DRM free sticker and message 309 | 310 | > * Added the sponsor info section 311 | 312 | **ITERATION 5** 313 | 314 | > * Updated the title section 315 | 316 | > * Updated the index 317 | 318 | > * Added the history section 319 | 320 | > * Updated the file info section 321 | 322 | > * Updated the file history section 323 | 324 | > * No other changes in version 0.1 325 | 326 | Version 1 (Coming soon) 327 | 328 | > Changes: 329 | 330 | > * Coming soon 331 | 332 | > * No other changes in version 1 333 | 334 | Version 2 (Coming soon) 335 | 336 | > Changes: 337 | 338 | > * Coming soon 339 | 340 | > * No other changes in version 2 341 | 342 | *** 343 | 344 | ### You have reached the end of the README file 345 | 346 | ( [Back to top](#Top) | [Exit to GitHub](https://github.com) | [Exit to DuckDuckGo](https://duckduckgo.com/) ) 347 | 348 | ### EOF 349 | 350 | *** 351 | -------------------------------------------------------------------------------- /OldVersions/README/English/1/README_V0.1.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # 5 | 6 | ![{Project icon} This image failed to load. It may be due to the file not being reached, or a general error. Reload the page to fix a possible general error.](Image.svg) 7 | 8 | # By: 9 | 10 | ![{Developer name} This image failed to load. It may be due to the file not being reached, or a general error. Reload the page to fix a possible general error.](Image2.svg) 11 | 12 | ### Top 13 | 14 | # `README.md` 15 | 16 | *** 17 | 18 | ## Read this article in a different language 19 | 20 | [ar عربى](README_AR.md) [zh-t 中國傳統的)](README_ZH-T.md)[**en-us**](README.md) [fr français](README_FR.md) [de Deutsch](README_DE.md) [EO Esperanto](README_EO.md) [ja 日本語](README_JA.md) [ko-south 韓國語](README_KO_SOUTH.md) [pl polski](README_PL.md) [ru русский](README_RU.md) [es en español](README_ES.md) 21 | 22 | Translations in languages other than English are machine translated and are not yet accurate. No errors have been fixed yet as of March 21st 2021. Please report translation errors [here](https://github.com/seanpm2001//issues/). Make sure to backup your correction with sources and guide me, as I don't know languages other than English well (I plan on getting a translator eventually) please cite [wiktionary](https://en.wiktionary.org) and other sources in your report. Failing to do so will result in a rejection of the correction being published. 23 | 24 | *** 25 | 26 | # Index 27 | 28 | [00.0 - Top](#Top) 29 | 30 | > [00.1 - Title](#) 31 | 32 | > [00.2 - Read this article in a different language](#Read-this-article-in-a-different-language) 33 | 34 | > [00.3 - Index](#Index) 35 | 36 | [01.0 - Description](#RepositoryName) 37 | 38 | [02.0 - About](#About) 39 | 40 | [03.0 - Wiki](#Wiki) 41 | 42 | [04.0 - Version history](#Version-history) 43 | 44 | [05.0 - Software status](#Software-status) 45 | 46 | [06.0 - Sponsor info](#Sponsor-info) 47 | 48 | [07.0 - Contributers](#Contributers) 49 | 50 | [08.0 - Issues](#Issues) 51 | 52 | > [08.1 - Current issues](#Current-issues) 53 | 54 | > [08.2 - Past issues](#Past-issues) 55 | 56 | > [08.3 - Past pull requests](#Past-pull-requests) 57 | 58 | > [08.4 - Active pull requests](#Active-pull-requests) 59 | 60 | [09.0 - Resources](#Resources) 61 | 62 | [10.0 - Contributing](#Contributing) 63 | 64 | [11.0 - About README](#About-README) 65 | 66 | [12.0 - README Version history](#README-version-history) 67 | 68 | [13.0 - Footer](#You-have-reached-the-end-of-the-README-file) 69 | 70 | > [13.1 - End of file](#EOF) 71 | 72 | *** 73 | 74 | # 75 | 76 | 77 | *** 78 | 79 | ## About 80 | 81 | See above. 82 | 83 | *** 84 | 85 | ## Wiki 86 | 87 | [Click/tap here to view this projects Wiki](https://github.com/seanpm2001//wiki) 88 | 89 | If the project has been forked, the Wiki was likely removed. Luckily, I include an embedded version. You can view it [here](/External/ProjectWiki/). 90 | 91 | *** 92 | 93 | ## Sponsor info 94 | 95 | ![SponsorButton.png](SponsorButton.png) 96 | 97 | You can sponsor this project if you like, but please specify what you want to donate to. [See the funds you can donate to here](https://github.com/seanpm2001/Sponsor-info/tree/main/For-sponsors) 98 | 99 | You can view other sponsor info [here](https://github.com/seanpm2001/Sponsor-info/) 100 | 101 | Try it out! The sponsor button is right up next to the watch/unwatch button. 102 | 103 | *** 104 | 105 | ## Version history 106 | 107 | **Version history currently unavailable** 108 | 109 | **No other versions listed** 110 | 111 | *** 112 | 113 | ## Software status 114 | 115 | All of my works are free some restrictions. DRM (**D**igital **R**estrictions **M**anagement) is not present in any of my works. 116 | 117 | ![DRM-free_label.en.svg](DRM-free_label.en.svg) 118 | 119 | This sticker is supported by the Free Software Foundation. I never intend to include DRM in my works. 120 | 121 | I am ussing the abbreviation "Digital Restrictions Management" instead of the more known "Digital Rights Management" as the common way of addressing it is false, there are no rights with DRM. The spelling "Digital Restrictions Management" is more accurate, and is supported by [Richard M. Stallman (RMS)](https://en.wikipedia.org/wiki/Richard_Stallman) and the [Free Software Foundation (FSF)](https://en.wikipedia.org/wiki/Free_Software_Foundation) 122 | 123 | This section is used to raise awareness for the problems with DRM, and also to protest it. DRM is defective by design and is a major threat to all computer users and software freedom. 124 | 125 | Image credit: [defectivebydesign.org/drm-free/...](https://www.defectivebydesign.org/drm-free/how-to-use-label) 126 | 127 | *** 128 | 129 | ## Contributers 130 | 131 | Currently, I am the only contributer. Contributing is allowed, as long as you follow the rules of the [CONTRIBUTING.md](CONTRIBUTING.md) file. 132 | 133 | > * 1. [seanpm2001](https://github.com/seanpm2001/) - x commits (As of DoW, Month, DoM, Yr at ##:## a/pm) 134 | 135 | > * 2. No other contributers. 136 | 137 | *** 138 | 139 | ## Issues 140 | 141 | ### Current issues 142 | 143 | * None at the moment 144 | 145 | * No other current issues 146 | 147 | If the repository has been forked, issues likely have been removed. Luckily I keep an archive of certain images [here](/.github/Issues/) 148 | 149 | [Read the privacy policy on issue archival here](/.github/Issues/README.md) 150 | 151 | **TL;DR** 152 | 153 | I archive my own issues. Your issue won't be archived unless you request it to be archived. 154 | 155 | ### Past issues 156 | 157 | * None at the moment 158 | 159 | * No other past issues 160 | 161 | If the repository has been forked, issues likely have been removed. Luckily I keep an archive of certain images [here](/.github/Issues/) 162 | 163 | [Read the privacy policy on issue archival here](/.github/Issues/README.md) 164 | 165 | **TL;DR** 166 | 167 | I archive my own issues. Your issue won't be archived unless you request it to be archived. 168 | 169 | ### Past pull requests 170 | 171 | * None at the moment 172 | 173 | * No other past pull requests 174 | 175 | If the repository has been forked, issues likely have been removed. Luckily I keep an archive of certain images [here](/.github/Issues/) 176 | 177 | [Read the privacy policy on issue archival here](/.github/Issues/README.md) 178 | 179 | **TL;DR** 180 | 181 | I archive my own issues. Your issue won't be archived unless you request it to be archived. 182 | 183 | ### Active pull requests 184 | 185 | * None at the moment 186 | 187 | * No other active pull requests 188 | 189 | If the repository has been forked, issues likely have been removed. Luckily I keep an archive of certain images [here](/.github/Issues/) 190 | 191 | [Read the privacy policy on issue archival here](/.github/Issues/README.md) 192 | 193 | **TL;DR** 194 | 195 | I archive my own issues. Your issue won't be archived unless you request it to be archived. 196 | 197 | *** 198 | 199 | ## Resources 200 | 201 | Here are some other resources for this project: 202 | 203 | [Project language file](PROJECT_LANG.) 204 | 205 | [Join the discussion on GitHub](https://github.com/seanpm2001//discussions) 206 | 207 | No other resources at the moment. 208 | 209 | *** 210 | 211 | ## Contributing 212 | 213 | Contributing is allowed for this project, as long as you follow the rules of the `CONTRIBUTING.md` file. 214 | 215 | [Click/tap here to view the contributing rules for this project](CONTRIBUTING.md) 216 | 217 | *** 218 | 219 | ## About README 220 | 221 | File type: `Markdown (*.md)` 222 | 223 | File version: `0.1 (Sunday, March 21st 2021 at 7:50 pm)` 224 | 225 | Line count: `0,296` 226 | 227 | *** 228 | 229 | ## README version history 230 | 231 | Version 0.1 (Sunday, March 21st 2021 at 7:50 pm) 232 | 233 | > Changes: 234 | 235 | > * Started the file 236 | 237 | > * Added the title section 238 | 239 | > * Added the index 240 | 241 | > * Added the about section 242 | 243 | > * Added the Wiki section 244 | 245 | > * Added the version history section 246 | 247 | > * Added the issues section. 248 | 249 | > * Added the past issues section 250 | 251 | > * Added the past pull requests section 252 | 253 | > * Added the active pull requests section 254 | 255 | > * Added the contributors section 256 | 257 | > * Added the contributing section 258 | 259 | > * Added the about README section 260 | 261 | > * Added the README version history section 262 | 263 | > * Added the resources section 264 | 265 | > * Added a software status section, with a DRM free sticker and message 266 | 267 | > * Added the sponsor info section 268 | 269 | > * No other changes in version 0.1 270 | 271 | Version 1 (Coming soon) 272 | 273 | > Changes: 274 | 275 | > * Coming soon 276 | 277 | > * No other changes in version 1 278 | 279 | Version 2 (Coming soon) 280 | 281 | > Changes: 282 | 283 | > * Coming soon 284 | 285 | > * No other changes in version 2 286 | 287 | *** 288 | 289 | ### You have reached the end of the README file 290 | 291 | [Back to top](#Top) [Exit](https://github.com) 292 | 293 | ### EOF 294 | 295 | *** 296 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # 5 | 6 | ![{Project icon} This image failed to load. It may be due to the file not being reached, or a general error. Reload the page to fix a possible general error.](Image.svg) 7 | 8 | # By: 9 | 10 | 11 | 12 | ## [Seanpm2001](https://github.com/seanpm2001/), [](https://github.com//) Et; Al. 13 | 14 | 15 | ### Top 16 | 17 | # `README.md` 18 | 19 | *** 20 | 21 | ## Read this article in a different language 22 | 23 | **Sorted by:** `A-Z` 24 | 25 | [Sorting options unavailable](https://github.com//) 26 | 27 | ( [af Afrikaans](/.github/README_AF.md) Afrikaans | [sq Shqiptare](/.github/README_SQ.md) Albanian | [am አማርኛ](/.github/README_AM.md) Amharic | [ar عربى](/.github/README_AR.md) Arabic | [hy հայերեն](/.github/README_HY.md) Armenian | [az Azərbaycan dili](/.github/README_AZ.md) Azerbaijani | [eu Euskara](/.github/README_EU.md) Basque | [be Беларуская](/.github/README_BE.md) Belarusian | [bn বাংলা](/.github/README_BN.md) Bengali | [bs Bosanski](/.github/README_BS.md) Bosnian | [bg български](/.github/README_BG.md) Bulgarian | [ca Català](/.github/README_CA.md) Catalan | [ceb Sugbuanon](/.github/README_CEB.md) Cebuano | [ny Chichewa](/.github/README_NY.md) Chichewa | [zh-CN 简体中文](/.github/README_ZH-CN.md) Chinese (Simplified) | [zh-t 中國傳統的)](/.github/README_ZH-T.md) Chinese (Traditional) | [co Corsu](/.github/README_CO.md) Corsican | [hr Hrvatski](/.github/README_HR.md) Croatian | [cs čeština](/.github/README_CS.md) Czech | [da dansk](README_DA.md) Danish | [nl Nederlands](/.github/README_NL.md) Dutch | [**en-us English**](/.github/README.md) English | [EO Esperanto](/.github/README_EO.md) Esperanto | [et Eestlane](/.github/README_ET.md) Estonian | [tl Pilipino](/.github/README_TL.md) Filipino | [fi Suomalainen](/.github/README_FI.md) Finnish | [fr français](/.github/README_FR.md) French | [fy Frysk](/.github/README_FY.md) Frisian | [gl Galego](/.github/README_GL.md) Galician | [ka ქართველი](/.github/README_KA) Georgian | [de Deutsch](/.github/README_DE.md) German | [el Ελληνικά](/.github/README_EL.md) Greek | [gu ગુજરાતી](/.github/README_GU.md) Gujarati | [ht Kreyòl ayisyen](/.github/README_HT.md) Haitian Creole | [ha Hausa](/.github/README_HA.md) Hausa | [haw Ōlelo Hawaiʻi](/.github/README_HAW.md) Hawaiian | [he עִברִית](/.github/README_HE.md) Hebrew | [hi हिन्दी](/.github/README_HI.md) Hindi | [hmn Hmong](/.github/README_HMN.md) Hmong | [hu Magyar](/.github/README_HU.md) Hungarian | [is Íslenska](/.github/README_IS.md) Icelandic | [ig Igbo](/.github/README_IG.md) Igbo | [id bahasa Indonesia](/.github/README_ID.md) Icelandic | [ga Gaeilge](/.github/README_GA.md) Irish | [it Italiana/Italiano](/.github/README_IT.md) | [ja 日本語](/.github/README_JA.md) Japanese | [jw Wong jawa](/.github/README_JW.md) Javanese | [kn ಕನ್ನಡ](/.github/README_KN.md) Kannada | [kk Қазақ](/.github/README_KK.md) Kazakh | [km ខ្មែរ](/.github/README_KM.md) Khmer | [rw Kinyarwanda](/.github/README_RW.md) Kinyarwanda | [ko-south 韓國語](/.github/README_KO_SOUTH.md) Korean (South) | [ko-north 문화어](README_KO_NORTH.md) Korean (North) (NOT YET TRANSLATED) | [ku Kurdî](/.github/README_KU.md) Kurdish (Kurmanji) | [ky Кыргызча](/.github/README_KY.md) Kyrgyz | [lo ລາວ](/.github/README_LO.md) Lao | [la Latine](/.github/README_LA.md) Latin | [lt Lietuvis](/.github/README_LT.md) Lithuanian | [lb Lëtzebuergesch](/.github/README_LB.md) Luxembourgish | [mk Македонски](/.github/README_MK.md) Macedonian | [mg Malagasy](/.github/README_MG.md) Malagasy | [ms Bahasa Melayu](/.github/README_MS.md) Malay | [ml മലയാളം](/.github/README_ML.md) Malayalam | [mt Malti](/.github/README_MT.md) Maltese | [mi Maori](/.github/README_MI.md) Maori | [mr मराठी](/.github/README_MR.md) Marathi | [mn Монгол](/.github/README_MN.md) Mongolian | [my မြန်မာ](/.github/README_MY.md) Myanmar (Burmese) | [ne नेपाली](/.github/README_NE.md) Nepali | [no norsk](/.github/README_NO.md) Norwegian | [or ଓଡିଆ (ଓଡିଆ)](/.github/README_OR.md) Odia (Oriya) | [ps پښتو](/.github/README_PS.md) Pashto | [fa فارسی](/.github/README_FA.md) |Persian [pl polski](/.github/README_PL.md) Polish | [pt português](/.github/README_PT.md) Portuguese | [pa ਪੰਜਾਬੀ](/.github/README_PA.md) Punjabi | No languages available that start with the letter Q | [ro Română](/.github/README_RO.md) Romanian | [ru русский](/.github/README_RU.md) Russian | [sm Faasamoa](/.github/README_SM.md) Samoan | [gd Gàidhlig na h-Alba](/.github/README_GD.md) Scots Gaelic | [sr Српски](/.github/README_SR.md) Serbian | [st Sesotho](/.github/README_ST.md) Sesotho | [sn Shona](/.github/README_SN.md) Shona | [sd سنڌي](/.github/README_SD.md) Sindhi | [si සිංහල](/.github/README_SI.md) Sinhala | [sk Slovák](/.github/README_SK.md) Slovak | [sl Slovenščina](/.github/README_SL.md) Slovenian | [so Soomaali](/.github/README_SO.md) Somali | [[es en español](/.github/README_ES.md) Spanish | [su Sundanis](/.github/README_SU.md) Sundanese | [sw Kiswahili](/.github/README_SW.md) Swahili | [sv Svenska](/.github/README_SV.md) Swedish | [tg Тоҷикӣ](/.github/README_TG.md) Tajik | [ta தமிழ்](/.github/README_TA.md) Tamil | [tt Татар](/.github/README_TT.md) Tatar | [te తెలుగు](/.github/README_TE.md) Telugu | [th ไทย](/.github/README_TH.md) Thai | [tr Türk](/.github/README_TR.md) Turkish | [tk Türkmenler](/.github/README_TK.md) Turkmen | [uk Український](/.github/README_UK.md) Ukrainian | [ur اردو](/.github/README_UR.md) Urdu | [ug ئۇيغۇر](/.github/README_UG.md) Uyghur | [uz O'zbek](/.github/README_UZ.md) Uzbek | [vi Tiếng Việt](/.github/README_VI.md) Vietnamese | [cy Cymraeg](/.github/README_CY.md) Welsh | [xh isiXhosa](/.github/README_XH.md) Xhosa | [yi יידיש](/.github/README_YI.md) Yiddish | [yo Yoruba](/.github/README_YO.md) Yoruba | [zu Zulu](/.github/README_ZU.md) Zulu ) Available in 110 languages (108 when not counting English and North Korean, as North Korean has not been translated yet [Read about it here](/OldVersions/Korean(North)/README.md)) 28 | 29 | Translations in languages other than English are machine translated and are not yet accurate. No errors have been fixed yet as of March 21st 2021. Please report translation errors [here](https://github.com///issues/). Make sure to backup your correction with sources and guide me, as I don't know languages other than English well (I plan on getting a translator eventually) please cite [wiktionary](https://en.wiktionary.org) and other sources in your report. Failing to do so will result in a rejection of the correction being published. 30 | 31 | Note: due to limitations with GitHub's interpretation of markdown (and pretty much every other web-based interpretation of markdown) clicking these links will redirect you to a separate file on a separate page that isn't the intended page. You will be redirected to the [.github folder](/.github/) of this project, where the README translations are hosted. 32 | 33 | Translations are currently done with Bing translate and DeepL. Support for Google Translate translations is coming to a close due to privacy concerns. 34 | 35 | *** 36 | 37 | # Index 38 | 39 | [00.0 - Top](#Top) 40 | 41 | > [00.1 - Title](#) 42 | 43 | > [00.2 - Read this article in a different language](#Read-this-article-in-a-different-language) 44 | 45 | > [00.3 - Index](#Index) 46 | 47 | [01.0 - Description](#RepositoryName) 48 | 49 | [02.0 - About](#About) 50 | 51 | [03.0 - Wiki](#Wiki) 52 | 53 | [04.0 - History](#History) 54 | 55 | > [04.1 - Pre-history](#Pre-history) 56 | 57 | > [04.2 - Alpha History](#Alpha-history) 58 | 59 | > [04.3 - Beta History](#Beta-history) 60 | 61 | > [04.4 - Modern History](#Modern-history) 62 | 63 | [05.0 - Copying](#Copying) 64 | 65 | [06.0 - Credits](#Credits) 66 | 67 | [07.0 - Installation](#Installation) 68 | 69 | [08.0 - Version history](#Version-history) 70 | 71 | [09.0 - Version history](#Version-history) 72 | 73 | [10.0 - Software status](#Software-status) 74 | 75 | [11.0 - Sponsor info](#Sponsor-info) 76 | 77 | [12.0 - Contributers](#Contributers) 78 | 79 | [13.0 - Issues](#Issues) 80 | 81 | > [13.1 - Current issues](#Current-issues) 82 | 83 | > [13.2 - Past issues](#Past-issues) 84 | 85 | > [13.3 - Past pull requests](#Past-pull-requests) 86 | 87 | > [13.4 - Active pull requests](#Active-pull-requests) 88 | 89 | [14.0 - Resources](#Resources) 90 | 91 | [15.0 - Contributing](#Contributing) 92 | 93 | [16.0 - About README](#About-README) 94 | 95 | [17.0 - README Version history](#README-version-history) 96 | 97 | [18.0 - Footer](#You-have-reached-the-end-of-the-README-file) 98 | 99 | > [18.9 - End of file](#EOF) 100 | 101 | *** 102 | 103 | # 104 | 105 | 106 | *** 107 | 108 | ## About 109 | 110 | See above. 111 | 112 | *** 113 | 114 | ## Wiki 115 | 116 | [Click/tap here to view this projects Wiki](https://github.com///wiki) 117 | 118 | If the project has been forked, the Wiki was likely removed. Luckily, I include an embedded version. You can view it [here](/External/ProjectWiki/). 119 | 120 | *** 121 | 122 | ## History 123 | 124 | Write about this projects history here. 125 | 126 | ### Pre-history 127 | 128 | No pre-history to show for this project. 129 | 130 | ### Alpha history 131 | 132 | No Alpha history to show for this project. 133 | 134 | ### Beta history 135 | 136 | No Beta history to show for this project. 137 | 138 | ### Modern history 139 | 140 | No Modern history to show for this project. 141 | 142 | *** 143 | 144 | ## Copying 145 | 146 | View the copying license for this project [here](/COPYING) (if you haven't built the project yet with the makefile, here is the original link: [COPYINGL](/COPYINGL) 147 | 148 | Please note that you also have to follow the rules of the GNU General Public License v3 (GPL3) which you can view [here](/LICENSE.txt) 149 | 150 | *** 151 | 152 | ## Credits 153 | 154 | View the credits file for this project and see the people who got together to make this project by [clicking/tapping here](/CREDITS) 155 | 156 | *** 157 | 158 | ## Installation 159 | 160 | View the installation instructions file for this project [here](/INSTALL) 161 | 162 | Requirements: Read the instructions for more info, and get the latest up-to-date instructions [here](https://gist.github.com/seanpm2001/745564a46186888e829fdeb9cda584de) 163 | 164 | *** 165 | 166 | ## Sponsor info 167 | 168 | ![SponsorButton.png](/SponsorButton.png) 169 | 170 | You can sponsor this project if you like, but please specify what you want to donate to. [See the funds you can donate to here](https://github.com/seanpm2001/Sponsor-info/tree/main/For-sponsors/) 171 | 172 | You can view other sponsor info [here](https://github.com/seanpm2001/Sponsor-info/) 173 | 174 | Try it out! The sponsor button is right up next to the watch/unwatch button. 175 | 176 | *** 177 | 178 | ## Version history 179 | 180 | **Version history currently unavailable** 181 | 182 | **No other versions listed** 183 | 184 | *** 185 | 186 | ## Software status 187 | 188 | All of my works are free some restrictions. DRM (**D**igital **R**estrictions **M**anagement) is not present in any of my works. 189 | 190 | ![DRM-free_label.en.svg](/DRM-free_label.en.svg) 191 | 192 | This sticker is supported by the Free Software Foundation. I never intend to include DRM in my works. 193 | 194 | I am using the abbreviation "Digital Restrictions Management" instead of the more known "Digital Rights Management" as the common way of addressing it is false, there are no rights with DRM. The spelling "Digital Restrictions Management" is more accurate, and is supported by [Richard M. Stallman (RMS)](https://en.wikipedia.org/wiki/Richard_Stallman) and the [Free Software Foundation (FSF)](https://en.wikipedia.org/wiki/Free_Software_Foundation) 195 | 196 | This section is used to raise awareness for the problems with DRM, and also to protest it. DRM is defective by design and is a major threat to all computer users and software freedom. 197 | 198 | Image credit: [defectivebydesign.org/drm-free/...](https://www.defectivebydesign.org/drm-free/how-to-use-label/) 199 | 200 | *** 201 | 202 | ## Contributers 203 | 204 | Currently, I am the only contributer. Contributing is allowed, as long as you follow the rules of the [CONTRIBUTING.md](/CONTRIBUTING.md) file. 205 | 206 | > * 1. [seanpm2001](https://github.com/seanpm2001/) - x commits (As of Yr, DoW, Month, DoM, at ##:## a/pm) 207 | 208 | > * 2. No other contributers. 209 | 210 | *** 211 | 212 | ## Issues 213 | 214 | ### Current issues 215 | 216 | * None at the moment 217 | 218 | * No other current issues 219 | 220 | If the repository has been forked, issues likely have been removed. Luckily I keep an archive of certain images [here](/.github/Issues/) 221 | 222 | [Read the privacy policy on issue archival here](/.github/Issues/README.md) 223 | 224 | **TL;DR** 225 | 226 | I archive my own issues. Your issue won't be archived unless you request it to be archived. 227 | 228 | ### Past issues 229 | 230 | * None at the moment 231 | 232 | * No other past issues 233 | 234 | If the repository has been forked, issues likely have been removed. Luckily I keep an archive of certain images [here](/.github/Issues/) 235 | 236 | [Read the privacy policy on issue archival here](/.github/Issues/README.md) 237 | 238 | **TL;DR** 239 | 240 | I archive my own issues. Your issue won't be archived unless you request it to be archived. 241 | 242 | ### Past pull requests 243 | 244 | * None at the moment 245 | 246 | * No other past pull requests 247 | 248 | If the repository has been forked, issues likely have been removed. Luckily I keep an archive of certain images [here](/.github/Issues/) 249 | 250 | [Read the privacy policy on issue archival here](/.github/Issues/README.md) 251 | 252 | **TL;DR** 253 | 254 | I archive my own issues. Your issue won't be archived unless you request it to be archived. 255 | 256 | ### Active pull requests 257 | 258 | * None at the moment 259 | 260 | * No other active pull requests 261 | 262 | If the repository has been forked, issues likely have been removed. Luckily I keep an archive of certain images [here](/.github/Issues/) 263 | 264 | [Read the privacy policy on issue archival here](/.github/Issues/README.md) 265 | 266 | **TL;DR** 267 | 268 | I archive my own issues. Your issue won't be archived unless you request it to be archived. 269 | 270 | *** 271 | 272 | ## Resources 273 | 274 | Here are some other resources for this project: 275 | 276 | [Project language file A](PROJECT_LANG_1.) 277 | 278 | [Join the discussion on GitHub](https://github.com///discussions) 279 | 280 | No other resources at the moment. 281 | 282 | *** 283 | 284 | ## Contributing 285 | 286 | Contributing is allowed for this project, as long as you follow the rules of the `CONTRIBUTING.md` file. 287 | 288 | [Click/tap here to view the contributing rules for this project](/CONTRIBUTING.md) 289 | 290 | *** 291 | 292 | ## About README 293 | 294 | **File type:** `Markdown Document (*.md *.mkd *.markdown)` 295 | 296 | **File version:** `0.1.6 (Monday, August 23rd 2021 at 6:37 pm)` 297 | 298 | **Line count (including blank lines and compiler line):** `0,407` 299 | 300 | *** 301 | 302 | ## README version history 303 | 304 | Version 0.1 (Sunday, March 21st 2021 at 7:50 pm) 305 | 306 | > Changes: 307 | 308 | > * Started the file 309 | 310 | > * Added the title section 311 | 312 | > * Added the index 313 | 314 | > * Added the about section 315 | 316 | > * Added the Wiki section 317 | 318 | > * Added the version history section 319 | 320 | > * Added the issues section. 321 | 322 | > * Added the past issues section 323 | 324 | > * Added the past pull requests section 325 | 326 | > * Added the active pull requests section 327 | 328 | > * Added the contributors section 329 | 330 | > * Added the contributing section 331 | 332 | > * Added the about README section 333 | 334 | > * Added the README version history section 335 | 336 | > * Added the resources section 337 | 338 | > * Added a software status section, with a DRM free sticker and message 339 | 340 | > * Added the sponsor info section 341 | 342 | **ITERATION 5** 343 | 344 | > * Updated the title section 345 | 346 | > * Updated the index 347 | 348 | > * Added the history section 349 | 350 | > * Updated the file info section 351 | 352 | > * Updated the file history section 353 | 354 | **ITERATION 6** 355 | 356 | > * Updated the title section 357 | 358 | > * Fixed and update template links 359 | 360 | > * Updated the index 361 | 362 | > * Added the copying section 363 | 364 | > * Added the credits section 365 | 366 | > * Added the installation section 367 | 368 | > * Updated the resources section 369 | 370 | > * Updated the contributors section 371 | 372 | > * Added the technical notes section 373 | 374 | > * Updated the footer 375 | 376 | > * Updated the file info section 377 | 378 | > * Updated the file history section 379 | 380 | > * No other changes in version 0.1 381 | 382 | Version 1 (Coming soon) 383 | 384 | > Changes: 385 | 386 | > * Coming soon 387 | 388 | > * No other changes in version 1 389 | 390 | Version 2 (Coming soon) 391 | 392 | > Changes: 393 | 394 | > * Coming soon 395 | 396 | > * No other changes in version 2 397 | 398 | *** 399 | 400 | ### You have reached the end of the README file 401 | 402 | ( [Back to top](#Top) | [Exit to GitHub](https://github.com) | [Exit to Bing](https://www.bing.com/) | [Exit to DuckDuckGo](https://duckduckgo.com/) | [Exit to Ecosia](https://www.ecosia.org) ) 403 | 404 | ### EOF 405 | 406 | *** 407 | -------------------------------------------------------------------------------- /RepoData/Description/GitHub/OldVersions/English/USA/README.md: -------------------------------------------------------------------------------- 1 | 🌳️🌐️#️⃣️ The Bliss Browser BrightScript language support module, allowing BrightScript programs to be written in and ran within the browser. 2 | -------------------------------------------------------------------------------- /RepoData/Description/GitHub/OldVersions/English/USA/README_V1.txt: -------------------------------------------------------------------------------- 1 | 🌳️🌐️#️⃣️ The Bliss Browser BrightScript language support module, allowing BrightScript programs to be written in and ran within the browser. 2 | -------------------------------------------------------------------------------- /RepoData/Description/GitHub/README.txt: -------------------------------------------------------------------------------- 1 | 🌳️🌐️#️⃣️ The Bliss Browser BrightScript language support module, allowing BrightScript programs to be written in and ran within the browser. 2 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Security Policy 5 | 6 | ## Supported Versions 7 | 8 | This project is a Git-image project, and doesn't have security issues like common repositories. They are still possible, and instructions will be listed below. 9 | 10 | ## Version history 11 | 12 | | Version | Supported | Support status | 13 | | ------- | ------------------ |-----------------| 14 | | Versions | not | listed yet | 15 | | v1.0.0 | :heavy_check_mark: | NOT YET RELEASED | 16 | 17 | ## Reporting a Vulnerability 18 | 19 | DO NOT REPORT A ZERO DAY VULNERABILITY PUBLICLY! 20 | 21 | Please instead direct message me via GitHub. If there is no response within 90 days, you can post the vulnerability as an issue, as part of the standard 0 day security exploit reporting guidelines. 22 | 23 | If a vulnerability is caused by an outdated dependancy, you can report it publicly, as it usually isn't that much of a problem. 24 | 25 | Other security currently isn't available. If there are any further questions, message me via email at [seanpm2001-mailing-list@protonmail.com](mailto:seanpm2001-mailing-list@protonmail.com) 26 | 27 | *** 28 | 29 | ## File info 30 | 31 | **File type:** `Markdown document (*.md *.mkd *.mdown *.markdown)` 32 | 33 | **File version:** `1 (2022, Thursday, May 19th at 3:05 pm PST)` 34 | 35 | **Line count (including blank lines and compiler line):** `72` 36 | 37 | *** 38 | 39 | ## File history 40 | 41 |

Click/tap here to expand/collapse the history for this file

42 | 43 | **Version 1 (2022, Thursday, May 19th at 3:05 pm PST)** 44 | 45 | > Changes: 46 | 47 | > * Started the file 48 | 49 | > * Added the supported versions section 50 | 51 | > * Added the version history section 52 | 53 | > * Added the reporting a vulnerability section 54 | 55 | > * Added the file info section 56 | 57 | > * Added the file history section 58 | 59 | > * No other changes in version 1 60 | 61 | **Version 2 (Coming soon)** 62 | 63 | > Changes: 64 | 65 | > * Coming soon 66 | 67 | > * No other changes in version 2 68 | 69 |
70 | 71 | *** 72 | -------------------------------------------------------------------------------- /SponsorButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Bliss_Browser_BrightScript/b4e3147bb6e9eb4541ebd795a9624fd68daa86d4/SponsorButton.png -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-leap-day -------------------------------------------------------------------------------- /makefile.mk: -------------------------------------------------------------------------------- 1 | # Start of script 2 | # The Makefile for this project 3 | # Rename the secondary copying license 4 | # Since I don't know how to just rename a file, I will copy it and delete the original, that is as close as I can get with GNU Make right now 5 | copy /COPYINGL to /COPYING 6 | rm -f /COPYINGL 7 | echo "COPYING license file has been corrected." 8 | # This syntax isn't valid yet, I don't know how to write in GNU Make very well 9 | # File info 10 | # File type: Makefile (MAKEFILE, *.mk) 11 | # File version: 1 (Wednesday, August 18th 2021 at 6:41 pm) 12 | # Line count (including blank lines and compiler line): 14 13 | # End of script 14 | -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- 1 | 2 | *** 3 | 4 | # Creating a pull request 5 | 6 | Thank you for taking the time to create a pull request in this repository! Please fill out this form before submitting your PR. 7 | 8 | **Note:** you can change the language of the formatting if needed, but it must be valid syntax. Supported languages include: ASCIIDoc, Org mode, Markdown, WikiText, ReStructuredText, Creole, Pod, RDoc, Textile, and plain text. Be sure to change thw `markdown` tag to the appropriate language. 9 | 10 | Provide a general summary of your changes in the Title above 11 | 12 | ```markdown 13 | Your summary description (title) goes here 14 | ``` 15 | 16 | ## Description 17 | 18 | Describe your changes in detail 19 | 20 | ```markdown 21 | Your issue description (body) goes here 22 | ``` 23 | 24 | ## Related Issue 25 | 26 | - [ ] This project only accepts pull requests related to open issues 27 | - [ ] If suggesting a new feature or change, please discuss it in an issue first 28 | - [ ] If fixing a bug, there should be an issue describing it with steps to reproduce 29 | - [ ] Please link to the issue here: 30 | 31 | ```markdown 32 | Link to the issue here, #__ 33 | ``` 34 | 35 | ## Motivation and Context 36 | 37 | Why is this change required? What problem does it solve? 38 | 39 | ```markdown 40 | 41 | ``` 42 | 43 | ## How Has This Been Tested? 44 | 45 | - [ ] Please describe in detail how you tested your changes. 46 | - [ ] Include details of your testing environment, and the tests you ran to. 47 | - [ ] see how your change affects other areas of the code, etc. 48 | 49 | ## Screenshots (if appropriate): 50 | 51 | Please include the screenshots inside your pull request as well as a local link (hard copy) 52 | 53 | **Warning:** `.webp` and `.heif` images are not accepted. Please convert them to a different format (such as PNG, JPG, JPEG, JIF, GIF, TIF, etc.) 54 | 55 | **Warning:** Images outside of `/.github/Pull_Requests/Queue/PR/` are not accepted, and will be removed from the PR within 24 hours if not fixed 56 | 57 | ```markdown 58 | Remove this section, and only include the links if you use this section. Be sure to delete image fields that are not needed. Max screenshots per PR: 5. Also, if screenshots aren't necessary, please delete this entire section 59 | 60 | ![Example1](/.github/Pull_Requests/Queue/PR/Image.png) 61 | ![Example2](/.github/Pull_Requests/Queue/PR/Image.png) 62 | ![Example3](/.github/Pull_Requests/Queue/PR/Image.png) 63 | ![Example4](/.github/Pull_Requests/Queue/PR/Image.png) 64 | ![Example5](/.github/Pull_Requests/Queue/PR/Image.png) 65 | ``` 66 | 67 | ## Types of changes 68 | 69 | What types of changes does your code introduce? Put an `x` in all the boxes that apply: 70 | 71 | - [ ] Bug fix (non-breaking change which fixes an issue) 72 | - [ ] New feature (non-breaking change which adds functionality) 73 | - [ ] Breaking change (fix or feature that would cause existing functionality to change) 74 | 75 | ## Checklist: 76 | 77 | Go over all the following points, and put an `x` in all the boxes that apply. 78 | 79 | If you're unsure about any of these, don't hesitate to ask. We're here to help! 80 | 81 | - [ ] My source code (if source code is provided) follows the source code style of this project. 82 | - [ ] My change requires a change to the documentation. 83 | - [ ] My change does not delete necessary files 84 | - [ ] I have updated the documentation accordingly. 85 | - [ ] I have read the [**`CONTRIBUTING`**](/CONTRIBUTING.md) document in my spoken language, and understand the terms 86 | - [ ] I have added tests to cover my changes. 87 | - [ ] I have gone through all the steps, and have thoroughly read the instructions 88 | 89 | *** 90 | 91 | 102 | --------------------------------------------------------------------------------