diff --git a/.gitattributes b/.gitattributes index 50cdb18..a0de014 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,12 +1,14 @@ +# .gitattributes v2.0.2.0 +# add git lfs support for .psd +# +# handle .imgbotconfig +*.imgbotconfig linguist-language=json # Auto detect text files and perform LF normalization # http://davidlaing.com/2012/09/19/customise-your-gitattributes-to-become-a-git-ninja/ * text=auto - *.cs text diff=csharp - # Set the default behavior, in case people don't have core.autocrlf set. * text=auto - # Explicitly declare text files you want to always be normalized and converted # to native line endings on checkout. *.c text @@ -14,31 +16,24 @@ *.cs diff=csharp *.csproj text=auto merge=union *.cfg KSP configs - - # Declare files that will always have CRLF line endings on checkout. *.sln text=auto eol=crlf merge=union - # normalize tabs instead of spaces for all .cfg files *.cfg filter=tabspace - # git config --global filter.tabspace.smudge 'unexpand --tabs=4 --first-only' # git config --global filter.tabspace.clean 'expand --tabs=4 --initial' - # Denote all files that are truly binary and should not be modified. *.png binary *.jpg binary *.dds binary *.tga binary -*.psd binary +*.psd filter=lfs diff=lfs merge=lfs -text *.mu binary *.mbm binary - ############################################################################### # Set default behavior to automatically normalize line endings. ############################################################################### * text=auto - ############################################################################### # Set the merge driver for project and solution files # @@ -50,7 +45,6 @@ # intervention with every merge. To do so, just comment the entries below and # uncomment the group further below ############################################################################### - *.sln text eol=crlf *.csproj text eol=crlf *.vbproj text eol=crlf @@ -63,13 +57,10 @@ *.modelproj text eol=crlf *.sqlproj text eol=crlf *.wmaproj text eol=crlf - *.xproj text eol=crlf *.props text eol=crlf *.filters text eol=crlf *.vcxitems text eol=crlf - - #*.sln merge=binary #*.csproj merge=binary #*.vbproj merge=binary @@ -82,12 +73,10 @@ #*.modelproj merge=binary #*.sqlproj merge=binary #*.wwaproj merge=binary - #*.xproj merge=binary #*.props merge=binary #*.filters merge=binary #*.vcxitems merge=binary - ## GITATTRIBUTES FOR WEB PROJECTS # # These settings are for any web project. @@ -98,13 +87,11 @@ # # Note that binary is a macro for -text -diff. ###################################################################### - # Auto detect ## Handle line endings automatically for files detected as ## text and leave all files detected as binary untouched. ## This will handle all files NOT defined below. * text=auto - # Source code *.bash text eol=lf *.bat text eol=crlf @@ -139,10 +126,8 @@ *.tsx text *.xml text *.xhtml text diff=html - # Docker Dockerfile text - # Documentation *.ipynb text *.markdown text @@ -168,7 +153,6 @@ NEWS text readme text *README* text TODO text - # Templates *.dot text *.ejs text @@ -185,7 +169,6 @@ TODO text *.tpl text *.twig text *.vue text - # Configs *.cnf text *.conf text @@ -203,10 +186,8 @@ package-lock.json text -diff browserslist text Makefile text makefile text - # Heroku Procfile text - # Graphics *.ai binary *.bmp binary @@ -234,7 +215,6 @@ Procfile text *.tiff binary *.wbmp binary *.webp binary - # Audio *.kar binary *.m4a binary @@ -243,7 +223,6 @@ Procfile text *.mp3 binary *.ogg binary *.ra binary - # Video *.3gpp binary *.3gp binary @@ -262,7 +241,6 @@ Procfile text *.swc binary *.swf binary *.webm binary - # Archives *.7z binary *.gz binary @@ -270,21 +248,16 @@ Procfile text *.rar binary *.tar binary *.zip binary - # Fonts *.ttf binary *.eot binary *.otf binary *.woff binary *.woff2 binary - # Executables *.exe binary *.pyc binary - # RC files (like .babelrc or .eslintrc) *.*rc text - # Ignore files (like .npmignore or .gitignore) *.*ignore text - diff --git a/.github/.imgbotconfig b/.github/.imgbotconfig new file mode 100644 index 0000000..bb6b3a1 --- /dev/null +++ b/.github/.imgbotconfig @@ -0,0 +1,17 @@ +{ + "schedule": "weekly", + "ignoredFiles": [ + "GameData/*", + "docs/LegalMumboJumbo/*", + "GameData/ShieldedPicoPort/*", + "GameData/ShieldedPicoPort/Textures/*", + "source/*", + "**/Assets/**", + "**/Flags/**", + "**/Agents/**", + "**/@Thumbs/**" + ], + "aggressiveCompression": "false", + "compressWiki": "true", + "minKBReduced": 500 +} diff --git a/.github/settings.yml b/.github/settings.yml new file mode 100644 index 0000000..e02200c --- /dev/null +++ b/.github/settings.yml @@ -0,0 +1,260 @@ +# settings.yml 1.0.9.0 +# CC BY-NC-ND 3.0 Unported +# zer0Kerbal +# created 01 Jan 2022 +# updated 26 Feb 2022 +# These settings are synced to GitHub by https://probot.github.io/apps/settings/ + +repository: + # See https://docs.github.com/en/rest/reference/repos#update-a-repository for all available settings. + + # The name of the repository. Changing this will rename the repository + name: ShieldedPicoPort + + # A short description of the repository that will show up on GitHub + description: Adds shielded PicoPorts for Kerbal Space Program. Requires PicoPorts part mod. + + # A URL with more information about the repository + homepage: https://forum.kerbalspaceprogram.com/index.php?/topic/192187-* + + # A comma-separated list of topics to set on the repository + topics: shielded,docking,docking-port,pico,picoport,kerbal,kerbalspaceprogram,ksp,ksp-mods,ksp-parts,kerbal-space,kerbal-space-program,kerbal-mods,zedk + + # Either `true` to make the repository private, or `false` to make it public. + private: false + + # Either `true` to enable issues for this repository, `false` to disable them. + has_issues: true + + # Either `true` to enable projects for this repository, or `false` to disable them. + # If projects are disabled for the organization, passing `true` will cause an API error. + has_projects: true + + # Either `true` to enable the wiki for this repository, `false` to disable it. + has_wiki: true + + # Either `true` to enable downloads for this repository, `false` to disable them. + has_downloads: true + + # Updates the default branch for this repository. + default_branch: master + + # Either `true` to allow squash-merging pull requests, or `false` to prevent + # squash-merging. + allow_squash_merge: true + + # Either `true` to allow merging pull requests with a merge commit, or `false` + # to prevent merging pull requests with merge commits. + allow_merge_commit: true + + # Either `true` to allow rebase-merging pull requests, or `false` to prevent + # rebase-merging. + allow_rebase_merge: true + + # Either `true` to enable automatic deletion of branches on merge, or `false` to disable + delete_branch_on_merge: true + +# Labels: define labels for Issues and Pull Requests +labels: + - name: bug π + color: CC0000 + description: An issue with the system. Something isn't working... KSC... we have an error code + + - name: "help wanted" + color: 008672 + description: "assistance, help, input solicited" + + - name: duplicate + color: FFFFF0 + description: "duplicated issue - it happens" + + - name: "semantic: adoption" + # include the old name to rename an existing label + oldname: adoption + color: BADA55 + description: relating to adoption + + - name: "semantic: release" + color: 00FF00 + description: release + + - name: "semantic: prerelease" + color: 00FF00 + description: prerelase + + - name: "semantic: beta" + color: 00FF00 + description: beta + + - name: "semantic: alpha" + color: 00FF00 + description: alpha + + - name: "issue: text" + color: FBCA04 + description: issue type + + - name: "issue: compatibility/patch" + color: CC0DEB + description: issue type + + - name: "issue: model" + color: FBCA04 + description: issue type + + - name: "issue: texture" + color: FBCA04 + description: issue type + + - name: "issue: sound" + color: FBCA04 + description: issue type + + - name: "issue: config" + color: FBCA04 + description: issue type + + - name: "issue: code" + color: FBCA04 + description: issue type + + - name: "issue: documentation" + color: FBCA04 + description: issue type + + - name: "issue: relationship" + color: FBCA04 + description: issue type + + - name: "issue: license" + color: FBCA04 + description: issue type + + - name: "issue: install" + color: FBCA04 + description: issue type + + - name: "issue: other" + color: FBCA04 + description: issue type + + - name: "issue: external" + color: FBCA04 + description: issue originates from external sources + + - name: "type: localization" + oldname: localization + # include the old name to rename an existing label + color: FFFFF0 + description: related to localization and translations + + - name: "type: infrastructure" + color: ffdda8 + description: improvements or additions to project infrastructure + + - name: "type: automation" + color: fbca04 + description: issues for automation actions + + - name: "type: fix" + color: 91ca55 + description: Iterations on existing features or infrastructure. + + - name: "type: testing" + color: fbca04 + description: Related to testing. + + - name: "type: chore" + color: fef2c0 + description: Converting measurements, reorganizing folder structure, and other necessary (but less impactful) tasks. + + - name: "type: discussion" + oldname: discussion + color: d4c5f9 + description: Questions, queries, posers, proposals and info that requires discussion. + + - name: "type: docs" + color: fef2c0 + description: Related to documentation and information. + + - name: "type: enhancement" + oldname: "Mod-enhancement" + # include the old name to rename an existing label + color: 5ebeff + description: Requested functionality, features, pages, workflows, endpoints, etc. + + - name: "type: feature" + oldname: "Mod-feature" + # include the old name to rename an existing label + description: Brand new functionality, features, pages, workflows, endpoints, etc. + + - name: "type: request" + oldname: "Mod-request" + # include the old name to rename an existing label + color: 5ebeff + description: Requested functionality, features, pages, workflows, endpoints, etc. + + - name: "type: archive" + color: FFFFF0 + description: archive + + - name: "type: upstream" + oldname: "upstream" + # include the old name to rename an existing label + color: FFFFF0 + description: upstream or side stream + + - name: "type: pull request" + oldname: "pull request" + color: FFFFF0 + description: upstream or side stream + + - name: "work: choatic" + color: FBCA04 + description: The situation is chaotic, novel practices used. + + - name: "work: complex" + color: d4c5f9 + description: The situation is complex, emergent practices used. + + - name: "work: complicated" + color: ffb8c6 + description: The situation is complicated, good practices used. + + - name: "work: obvious" + color: 91ca55 + description: The situation is obvious, best practices used. + + - name: "state: approved" + color: 91ca55 + description: Approved to proceed. + + - name: "state: blocked" + color: d73a4a + description: Something is blocking action. + + - name: "state: pending" + color: fbca04 + description: Taking action, but need a few things to happen first. A feature that needs dependencies merged, or a bug that needs further data. + + - name: "state: inactive" + color: e6e6e6 + description: No action needed or possible. The issue is either fixed, addressed better by other issues, or just out of product scope. + + - name: "state: planning" + color: FFFF00 + description: + + - name: "state: won't fix" + color: e6e6e6 + description: No action will be taken at this time + +# Milestones: define milestones for Issues and Pull Requests +milestones: + - title: Release v1.1.0.0 + description: progress toward releasing v1.1.0.0 + state: open + + - title: Localization - Master + description: progress toward total localization + state: open diff --git a/.github/workflows/AVC-VersionFileValidator.yml b/.github/workflows/AVC-VersionFileValidator.yml index f0bd512..ae7626f 100644 --- a/.github/workflows/AVC-VersionFileValidator.yml +++ b/.github/workflows/AVC-VersionFileValidator.yml @@ -1,3 +1,4 @@ +# v1.3.1 # This is a standard workflow to validate all .version files # found in the root directory of the repository and any subdirectories, # whenever something is pushed to any branch in the repository, or to a "foreign" branch active in a pull request. @@ -15,5 +16,6 @@ jobs: uses: actions/checkout@v2 with: fetch-depth: 1 - - name: Validate files - uses: DasSkelett/AVC-VersionFileValidator@v1 + - name: KSP-AVC Version File Validator + uses: DasSkelett/AVC-VersionFileValidator@v1.3.1 + diff --git a/.github/workflows/createIndexesfromMarkdown.yml b/.github/workflows/createIndexesfromMarkdown.yml new file mode 100644 index 0000000..67e9aad --- /dev/null +++ b/.github/workflows/createIndexesfromMarkdown.yml @@ -0,0 +1,34 @@ +# 1.0.1.0 +# created: 05 Feb 2022 +# updated: 20 Feb 2022 +# Create Indexes from Markdown +# https://github.com/DaanV2/Markdown-Action-Create-Indexes + +name: Create markdown indexes + +# Controls when the action will run. +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2.3.4 + - uses: DaanV2/Markdown-Action-Create-Indexes@v1.5.13 + with: + folder: ${{github.workspace}}/docs/ + + - name: Commit changes + continue-on-error: true + run: | + cd ${{github.workspace}} + git config --global user.email "Bot@Example.com" + git config --global user.name "DaanV2 Bot" + git add . + git commit -m "auto: Generated markdown indexes" + git push diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml new file mode 100644 index 0000000..6ba923a --- /dev/null +++ b/.github/workflows/greetings.yml @@ -0,0 +1,17 @@ +# 1.1.0.1 - 2 Dec 2021 +# An action for filtering pull requests and issues from first-time contributors. +# https://github.com/marketplace/actions/first-interaction + +name: Greetings + +on: [pull_request, issues, issue_comment, discussion_comment, fork, gollum] + +jobs: + greeting: + runs-on: ubuntu-latest + steps: + - uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: 'Thank you. Kindly read [contributiing.md](https://github.com/zer0Kerbal/.github/blob/master/.github/CONTRIBUTING.md), [code_of_conduct.md](https://github.com/zer0Kerbal/.github/blob/master/.github/CODE_OF_CONDUCT.md) and [styleguide.md](https://github.com/zer0Kerbal/.github/blob/master/.github/STYLEGUIDE.md). These are boilerplate.' + pr-message: 'Thank you. Kindly read [contributiing.md](https://github.com/zer0Kerbal/.github/blob/master/.github/CONTRIBUTING.md), [code_of_conduct.md](https://github.com/zer0Kerbal/.github/blob/master/.github/CODE_OF_CONDUCT.md) and [styleguide.md](https://github.com/zer0Kerbal/.github/blob/master/.github/STYLEGUIDE.md). These are boilerplate.' diff --git a/.gitignore b/.gitignore index 892a174..d33e5c0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,6 @@ -ο»Ώ# Prerequisites +ο»Ώ# .gitignore v2.0.2.0 + +# Prerequisites *.d # Compiled Object files @@ -48,25 +50,6 @@ # zer0Kerbal common files -LegalMumboJumbo/ -Archive/ -Old/ -flaticons/ -Links/ -docs/* -old/* -NetKAN/* -images.txt -shields.md -buildRelease.bat -buildReleaseSub.bat -deploy.bat -deploySub.bat -_buildRelease.bat -_buildReleaseSub.bat -_deploy.bat -_deploySub.bat -mod.version regex4loc.txt _* @@ -105,6 +88,17 @@ TestResult.xml # MemoryCaptures can get excessive in size. # They also could contain extremely sensitive data /[Mm]emoryCaptures/ +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ # Asset meta data should only be ignored when the corresponding asset is also ignored !/[Aa]ssets/**/*.meta @@ -161,3 +155,4 @@ crashlytics-build.properties /[Aa]ssets/[Ss]treamingAssets/aa.meta /[Aa]ssets/[Ss]treamingAssets/aa/* graphics/Thumbs.db +*.old diff --git a/Changelog.cfg b/Changelog.cfg deleted file mode 100644 index 2040fbd..0000000 --- a/Changelog.cfg +++ /dev/null @@ -1,69 +0,0 @@ -// Changelog.cfg v1.0.0.3 -// ShieldedPicoPort -// created: 01 Aug 2019 -// updated: 2020 03 06 - -// ββββββββββββββββββββββββββββββββββββββββββββββββββ -// βββ changelog ββββββββββββββββββββββββββββββββββββ -// ββββββββββββββββββββββββββββββββββββββββββββββββββ - -KERBALCHANGELOG -{ - showChangelog = True - modName = Shielded PicoPort - license = CC BY-NC-SA 4.0 - author = zer0Kerbal - VERSION - { - version = 1.0.1.1 - versionName = >>-- Reminiaturized - for KSP 1.8.1 --<< - change = corrected % which should have been @ - change = minor corrections to .version and changelog (thank you to @HebaruSan and @BenjaminCronin) - } - VERSION - { - version = 1.0.1.0 - versionName = >>-- Reminiaturized - for KSP 1.8.1 --<< - change = corrected changelog - change = added localization code - change = removed extraneous scale = - change = removed localization code since it just doesn't work this way. :( - change = updated to new KERBALCHANGELOG format! - CHANGE - { - change added three new models! - subchange = Basic, - subchange = Now has Female - subchange = Now has Male - subchange = Now has and Plus - } - } - VERSION - { - version = 1.0.0.2 - versionName = Needy little things - change = [D][BUG 1.0.0.2a] part isn't loading - change = [D][BUG 1.0.0.2a] change in folder structure was not reflected in patches :NEEDS statement which in turn caused the part to not load. - change = remove errors in Changelog.cfg - } - VERSION - { - version = 1.0.0.1 - versionName = ReStocked and Flush - change = added PicoPortShielded.restockwhitelist - change = added ReStock patch (so PicoPortShielded will show up with ReStock installed) - change = turned off PicoPortShielded.restockwhitelist - change = adjusted placement of model so will no longer sink into part attached to - change = moved TweakScale and ConnectedLivingSpaces patches into separate files - change = - } - VERSION - { - version = 1.0.0.0 - versionName = Phalanx those Ports! - change = >>-- creation by zer0Kerbal --<< - } -} - -// CC BY-NC-SA-4.0 -// zer0Kerbal diff --git a/GameData/KGEx/ShieldedPicoPort/1.1.0.0.md b/GameData/KGEx/ShieldedPicoPort/1.1.0.0.md new file mode 100644 index 0000000..700cff1 --- /dev/null +++ b/GameData/KGEx/ShieldedPicoPort/1.1.0.0.md @@ -0,0 +1,65 @@ + + +[![Mod Version][shield:mod:static]][MOD:forum] +[![KSP version][shield:ksp:static]][KSP:website] ![KSP-AVC][shield:kspavc] [![License GPLv3][shield:license]][LINK:license] [![][LOGO:gplv3]][LINK:license] +![Code][shield:code:static] ![Validate AVC .version files][shield:avcvalid] +*** + +# Version 1.1.0.0 - The Final Countdown +## for KSP 1.11.2 --<< + - thorough linting of configs + - minor corrections to readme and changelog + - backend automations +### Added ***Inflatable PicoPort Basic*** +### added all parts to ConnectedLivingSpaces and TweakScale patches +*** + +> See [Full Changelog][MOD:changelog] for full details of changes +> See [Known Issues][MOD:issues] for known issues +*** +*red box below is a link to forum post on how to get support* +[![How to get support][image:get-support]][thread:getsupport] + +![][HERO:0] +*** +
Kerbal Space Program 1.11.2
+ *Be Kind: Lithobrake, not jakebrake! Keep your Module Manager up to date* + + +[MOD:license]: https://github.com/zer0Kerbal/ShieldedPicoPort/blob/master/LICENSE +[MOD:issues]: https://github.com/zer0Kerbal/ShieldedPicoPort/issues +[MOD:known]: https://github.com/zer0Kerbal/ShieldedPicoPort/wiki/Known-Issues +[MOD:forum]: https://forum.kerbalspaceprogram.com/index.php?/topic/191045-* +[MOD:changelog]: https://raw.githubusercontent.com/zer0Kerbal/ShieldedPicoPort/master/Changelog.cfg +[KSP:website]: http://kerbalspaceprogram.com/ + + +[shield:mod:static]: https://img.shields.io/badge/ShieldedPicoPort%20version-1.1.0.0-orange.svg?style=plastic +[shield:ksp:static]: https://img.shields.io/badge/KSP%20version-1.11.2-3Cf.svg?style=plastic + +[shield:mod:latest]: https://img.shields.io/github/v/release/zer0Kerbal/ShieldedPicoPort?include_prereleases?style=plastic +[shield:mod]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/zer0Kerbal/ShieldedPicoPort/master/json/mod.json +[shield:ksp]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/zer0Kerbal/ShieldedPicoPort/master/json/ksp.json +[shield:license]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/zer0Kerbal/ShieldedPicoPort/master/json/license.json +[shield:code]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/zer0Kerbal/ShieldedPicoPort/master/json/code.json +[shield:kspavc]: https://img.shields.io/badge/KSP-AVC--supported-brightgreen.svg?style=plastic +[shield:avcvalid]: https://github.com/zer0Kerbal/ShieldedPicoPort/workflows/Validate%20AVC%20.version%20files/badge.svg + +[image:get-support]: https://i.postimg.cc/vHP6zmrw/image.png +[thread:getsupport]: https://forum.kerbalspaceprogram.com/index.php?/topic/83212-* + +[LINK:license]: https://www.gnu.org/licenses/gpl-2.0-standalone.html "GPLv2" +1 + +[LOGO:gplv2]: https://i.postimg.cc/9FrwMgK6/GPL-17x17.png "GPLv2" + +[HERO:0]: https:// "" + + \ No newline at end of file diff --git a/GameData/KGEx/ShieldedPicoPort/GPLv2.txt b/GameData/KGEx/ShieldedPicoPort/GPLv2.txt new file mode 100644 index 0000000..7a0ecdf --- /dev/null +++ b/GameData/KGEx/ShieldedPicoPort/GPLv2.txt @@ -0,0 +1,341 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + +Kerbal Space Program 1.11.2
+ *Be Kind: Lithobrake, not jakebrake! Keep your Module Manager up to date* + + +[MOD:license]: https://github.com/zer0Kerbal/ShieldedPicoPort/blob/master/LICENSE +[MOD:issues]: https://github.com/zer0Kerbal/ShieldedPicoPort/issues +[MOD:known]: https://github.com/zer0Kerbal/ShieldedPicoPort/wiki/Known-Issues +[MOD:forum]: https://forum.kerbalspaceprogram.com/index.php?/topic/191045-* +[MOD:changelog]: https://raw.githubusercontent.com/zer0Kerbal/ShieldedPicoPort/master/Changelog.cfg +[KSP:website]: http://kerbalspaceprogram.com/ + + +[shield:mod:static]: https://img.shields.io/badge/ShieldedPicoPort%20version-1.1.0.0-orange.svg?style=plastic +[shield:ksp:static]: https://img.shields.io/badge/KSP%20version-1.11.2-3Cf.svg?style=plastic + +[shield:mod:latest]: https://img.shields.io/github/v/release/zer0Kerbal/ShieldedPicoPort?include_prereleases?style=plastic +[shield:mod]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/zer0Kerbal/ShieldedPicoPort/master/json/mod.json +[shield:ksp]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/zer0Kerbal/ShieldedPicoPort/master/json/ksp.json +[shield:license]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/zer0Kerbal/ShieldedPicoPort/master/json/license.json +[shield:code]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/zer0Kerbal/ShieldedPicoPort/master/json/code.json +[shield:kspavc]: https://img.shields.io/badge/KSP-AVC--supported-brightgreen.svg?style=plastic +[shield:avcvalid]: https://github.com/zer0Kerbal/ShieldedPicoPort/workflows/Validate%20AVC%20.version%20files/badge.svg + +[image:get-support]: https://i.postimg.cc/vHP6zmrw/image.png +[thread:getsupport]: https://forum.kerbalspaceprogram.com/index.php?/topic/83212-* + +[LINK:license]: https://www.gnu.org/licenses/gpl-2.0-standalone.html "GPLv2" +1 + +[LOGO:gplv2]: https://i.postimg.cc/9FrwMgK6/GPL-17x17.png "GPLv2" + +[HERO:0]: https:// "" + + \ No newline at end of file diff --git a/img/ReStock-01.png b/img/ReStock-01.png index d8f00d3..59e10ad 100644 Binary files a/img/ReStock-01.png and b/img/ReStock-01.png differ diff --git a/img/ReStock-canvas-2.png b/img/ReStock-canvas-2.png index 6294d76..c429938 100644 Binary files a/img/ReStock-canvas-2.png and b/img/ReStock-canvas-2.png differ diff --git a/img/ReStock-canvas-3.png b/img/ReStock-canvas-3.png index 55ae13d..86afee6 100644 Binary files a/img/ReStock-canvas-3.png and b/img/ReStock-canvas-3.png differ diff --git a/img/ReStock-canvass.png b/img/ReStock-canvass.png index 23ee557..86b576d 100644 Binary files a/img/ReStock-canvass.png and b/img/ReStock-canvass.png differ diff --git a/img/ReStock.png b/img/ReStock.png index 1a7f263..d3fef93 100644 Binary files a/img/ReStock.png and b/img/ReStock.png differ diff --git a/img/curseforge.png b/img/curseforge.png new file mode 100644 index 0000000..0aee9da Binary files /dev/null and b/img/curseforge.png differ diff --git a/img/hero.png b/img/hero.png index c669f18..fe9e07d 100644 Binary files a/img/hero.png and b/img/hero.png differ diff --git a/json/code.json b/json/code.json new file mode 100644 index 0000000..6ca8695 --- /dev/null +++ b/json/code.json @@ -0,0 +1,8 @@ +{ + "schemaVersion": 1, + "label": "Code", + "labelColor": "66ccff", + "message": "ΛΛModule ManagerΛΛ", + "color": "darkblue", + "style": "plastic" +} diff --git a/json/ksp.json b/json/ksp.json index e482ad8..eb6f65e 100644 --- a/json/ksp.json +++ b/json/ksp.json @@ -1,8 +1,8 @@ { - "schemaVersion": 1, - "label": "KSP", - "labelColor": "darkblue", - "message": "1.8.1", - "color": "66ccff", - "style": "plastic" -} \ No newline at end of file + "schemaVersion": 1, + "label": "KSP", + "labelColor": "black", + "message": "1.11.2", + "color": "66ccff", + "style": "plastic" +} diff --git a/json/license.json b/json/license.json new file mode 100644 index 0000000..ace48be --- /dev/null +++ b/json/license.json @@ -0,0 +1,10 @@ +{ + "schemaVersion": 1, + "label": "License", + "labelColor": "white", + "message": "GPLv2", + "color": "A42E2B", + "logoColor": "A42E2B", + "namedLogo": "gnu", + "style": "plastic" +} diff --git a/json/mod.json b/json/mod.json index 65011d0..f0a56ce 100644 --- a/json/mod.json +++ b/json/mod.json @@ -1,9 +1,8 @@ { - "schemaVersion": 1, - "label": "Shielded PicoPort (SPP)", - "labelColor": "darkgreen", - "message": "1.0.1.0", - "color": "orange", - "color": "orange", - "style": "plastic" + "schemaVersion": 1, + "label": "ShieldedPicoPort", + "labelColor": "BADA55", + "message": "1.1.0.0", + "color": "darkgreen", + "style": "plastic" }