mirror of
https://github.com/PorktoberRevolution/ReStocked
synced 2024-09-01 17:34:42 +00:00
Compare commits
24 Commits
50e1ebc7ab
...
1.3.0
Author | SHA1 | Date | |
---|---|---|---|
eaaf03fcdf | |||
1253bc3d3d | |||
6923c21329 | |||
a4a5438fce | |||
edfc367142 | |||
c21dffbdd7 | |||
6db20ee793 | |||
43c13e7608 | |||
05c95e8ae8 | |||
e696ea7389 | |||
d1942672e0 | |||
967851b650 | |||
d3ba149ea9 | |||
745bcaa376 | |||
f8667a8e7a | |||
6161095581 | |||
f3a6970a36 | |||
b1cc1f4e1a | |||
d24f1e7768 | |||
1ebf86d3e5 | |||
778779c9d2 | |||
896d4fe3d0 | |||
20e48cccf1 | |||
e2eb2ac725 |
45
.github/workflows/build.yml
vendored
Normal file
45
.github/workflows/build.yml
vendored
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
name: Package Checks
|
||||||
|
|
||||||
|
# Controls when the action will run. Triggers the workflow on push or pull request
|
||||||
|
# events but only for the prod branch
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
branches: [ prod ]
|
||||||
|
|
||||||
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
||||||
|
jobs:
|
||||||
|
# This workflow contains a single job called "build"
|
||||||
|
build-package:
|
||||||
|
env:
|
||||||
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||||
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
|
OAUTH_TOKEN: ${{ secrets.OAUTH_TOKEN }}
|
||||||
|
# The type of runner that the job will run on
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
# Steps represent a sequence of tasks that will be executed as part of the job
|
||||||
|
steps:
|
||||||
|
# Checkout this repo
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
# Checkout another repo
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
# Repository name with owner.
|
||||||
|
repository: 'post-kerbin-mining-corporation/build-deploy'
|
||||||
|
# branch
|
||||||
|
ref: 'actions'
|
||||||
|
path: 'build-deploy'
|
||||||
|
- uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: '3.8'
|
||||||
|
architecture: 'x64'
|
||||||
|
- name: Installing dependencies
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install flake8 pytest awscli boto3 requests
|
||||||
|
#- name: Running deploy tests
|
||||||
|
# run: pytest -s --testpath "GameData/" build-deploy/src/tests/ # run the deploy tests
|
||||||
|
- name: Building Restock package
|
||||||
|
run: python build-deploy/src/package.py --f "Distribution/Restock/.mod_data.yml"
|
||||||
|
- name: Building Restock+ package
|
||||||
|
run: python build-deploy/src/package.py --f "Distribution/Restock/.mod_data.yml"
|
47
.github/workflows/deploy.yml
vendored
Normal file
47
.github/workflows/deploy.yml
vendored
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
name: Package and Deploy
|
||||||
|
|
||||||
|
# Controls when the action will run. Triggers the workflow on push or pull request
|
||||||
|
# events but only for the prod branch
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ prod ]
|
||||||
|
|
||||||
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
||||||
|
jobs:
|
||||||
|
# This workflow contains a single job called "build"
|
||||||
|
deploy-package:
|
||||||
|
env:
|
||||||
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||||
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
|
OAUTH_TOKEN: ${{ secrets.OAUTH_TOKEN }}
|
||||||
|
# The type of runner that the job will run on
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
# Steps represent a sequence of tasks that will be executed as part of the job
|
||||||
|
steps:
|
||||||
|
# Checkout this repo
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
# Checkout another repo
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
# Repository name with owner.
|
||||||
|
repository: 'post-kerbin-mining-corporation/build-deploy'
|
||||||
|
# branch
|
||||||
|
ref: 'actions'
|
||||||
|
path: 'build-deploy'
|
||||||
|
- uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: '3.8'
|
||||||
|
architecture: 'x64'
|
||||||
|
- name: Installing dependencies
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install flake8 pytest awscli boto3 requests
|
||||||
|
- name: Building Restock
|
||||||
|
run: python build-deploy/src/package.py --f "Distribution/Restock/.mod_data.yml"
|
||||||
|
- name: Building RestockPlus
|
||||||
|
run: python build-deploy/src/package.py --f "Distribution/RestockPlus/.mod_data.yml"
|
||||||
|
- name: Staging package
|
||||||
|
run: python build-deploy/src/stage.py --f "Distribution/Restock/.mod_data.yml" # Run the staging script
|
||||||
|
- name: Deploying Restock
|
||||||
|
run: python build-deploy/src/deploy.py --f "Distribution/RestockPlus/.mod_data.yml" # Deploy package to spacedock, curse, github
|
@ -17,12 +17,14 @@ v1.3.0
|
|||||||
- Rotated the HG-5 antenna model to match stock
|
- Rotated the HG-5 antenna model to match stock
|
||||||
- Updated old Mk1, Mk2 Illuminator models to use reflectivity on their lenses
|
- Updated old Mk1, Mk2 Illuminator models to use reflectivity on their lenses
|
||||||
- Added White variant to Mk1, Mk2 Illuminators
|
- Added White variant to Mk1, Mk2 Illuminators
|
||||||
- Updated claw lamps with lens reflectivity and light cookies.
|
- Updated claw lamps with lens reflectivity and light cookies
|
||||||
- Added RCS nozzle glows to improve RCS effects
|
- Added RCS nozzle glows to improve RCS effects
|
||||||
- Updated small solar panel parts to allow them to be repaired
|
- Updated small solar panel parts to allow them to be repaired
|
||||||
- Updated Russian localization (Fedor-St)
|
- Updated Russian localization (Fedor-St)
|
||||||
- Updated Japanese localization (Chemical-Factory)
|
- Updated Japanese localization (Chemical-Factory)
|
||||||
- Updated twin boar replacement to target "new" Squad model
|
- Updated twin boar replacement to target "new" Squad model
|
||||||
|
- Fixed bottom of 2.5m RCS Tank collider mesh
|
||||||
|
- Added procedural drag cube use back to all engine plates to mimic Stock behaviour
|
||||||
|
|
||||||
v1.2.1
|
v1.2.1
|
||||||
------
|
------
|
||||||
|
@ -50,7 +50,7 @@ To install, drag the ReStock folder and ModuleManager DLL from the GameData fold
|
|||||||
- Assets
|
- Assets
|
||||||
- Patches
|
- Patches
|
||||||
- etc.
|
- etc.
|
||||||
- ModuleManager.4.1.3.dll
|
- ModuleManager.4.1.4.dll
|
||||||
|
|
||||||
===============
|
===============
|
||||||
ASSET BLACKLIST
|
ASSET BLACKLIST
|
||||||
|
@ -2,13 +2,14 @@ v1.3.0
|
|||||||
------
|
------
|
||||||
- KSP 1.11
|
- KSP 1.11
|
||||||
- Updated French localization (vinix38)
|
- Updated French localization (vinix38)
|
||||||
- Removed Light Adjustement patch, replaced with new stock functionality as part of base Restock
|
- Removed Light Adjustement patch, replaced with new stock functionality as part of base Restock.
|
||||||
- Added a new version of the HG-20 High Gain Antenna matching the orientation of the stock HG-5. The old version has been soft-deprecated.
|
- Added a new version of the HG-20 High Gain Antenna matching the orientation of the stock HG-5. The old version has been soft-deprecated.
|
||||||
- Updated Advanced Grabbing Unit Junior with new light module and graphics.
|
- Updated Advanced Grabbing Unit Junior with new light module and graphics.
|
||||||
- Soft-deprecated all various RV-series and RC-series RCS blocks
|
- Soft-deprecated all various RV-series and RC-series RCS blocks.
|
||||||
|
- Added procedural drag cube use for all engine plates to mimic Stock behaviour.
|
||||||
- New RCS parts:
|
- New RCS parts:
|
||||||
- RV-105-A RCS Thruster Block : RCS block with 45 degree canted nozzles, available in 5x, 4x, 3x, 2x variants
|
- RV-105-A RCS Thruster Block : RCS block with 45 degree canted nozzles, available in 5x, 4x, 3x, 2x variants.
|
||||||
- RV-1X-A RCS Thruster Block : Micro RCS block with 45 degree canted nozzles, available in 5x, 4x, 3x, 2x variants
|
- RV-1X-A RCS Thruster Block : Micro RCS block with 45 degree canted nozzles, available in 5x, 4x, 3x, 2x variants.
|
||||||
- New Engine parts:
|
- New Engine parts:
|
||||||
- Launch Escape System Jr. (Andrew Cassidy): 0.625m Escape Tower with white and red/black variants.
|
- Launch Escape System Jr. (Andrew Cassidy): 0.625m Escape Tower with white and red/black variants.
|
||||||
|
|
||||||
|
@ -21,8 +21,8 @@ DEPENDENCIES
|
|||||||
============
|
============
|
||||||
|
|
||||||
Required:
|
Required:
|
||||||
- Restock (1.2.0)
|
- Restock (1.3.0)
|
||||||
- ModuleManager (4.1.3)
|
- ModuleManager (4.1.4)
|
||||||
|
|
||||||
=============
|
=============
|
||||||
CREDITS
|
CREDITS
|
||||||
@ -59,7 +59,7 @@ To install, drag the ReStockPlus folder from the GameData folder you downloaded
|
|||||||
- Assets
|
- Assets
|
||||||
- Parts
|
- Parts
|
||||||
- etc.
|
- etc.
|
||||||
- ModuleManager.4.1.3.dll
|
- ModuleManager.4.1.4.dll
|
||||||
|
|
||||||
|
|
||||||
============
|
============
|
||||||
@ -72,6 +72,9 @@ This mod provides localization support for the following languages:
|
|||||||
- Brazilian Portuguese (AluisioASG)
|
- Brazilian Portuguese (AluisioASG)
|
||||||
- Spanish (Niako)
|
- Spanish (Niako)
|
||||||
- Simplified Chinese (Duck1998)
|
- Simplified Chinese (Duck1998)
|
||||||
|
- French (vinix38)
|
||||||
|
- Japanese (Chemical-Factory)
|
||||||
|
- Russian (Fedor-St)
|
||||||
|
|
||||||
=========
|
=========
|
||||||
LICENSING
|
LICENSING
|
||||||
|
Reference in New Issue
Block a user