Skip to content

Commit

Permalink
Merge pull request #758 from zerasul/develop
Browse files Browse the repository at this point in the history
v1.4.1
  • Loading branch information
zerasul authored Aug 30, 2022
2 parents 2e41651 + c0e2cb0 commit c11d4e7
Show file tree
Hide file tree
Showing 14 changed files with 983 additions and 347 deletions.
4 changes: 3 additions & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,6 @@ vsc-extension-quickstart.md
**/*.map
**/*.ts
coverage/**
.nyc_output/
.nyc_output/
.github/**
azure-pipelines.yml
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

This is the change Log of Genesis Code. For more information you can see the [Documentation page](https://zerasul.github.io/genesis-code-docs/).

## 1.4.1

* [Added Support for Dogarasu SGDK Docker Image](https://github.com/zerasul/genesis-code/issues/627).
* [Fixed Bug for run in background Emulator in MacOs](https://github.com/zerasul/genesis-code/issues/52).
* [Fix Gens.code Multiples Instances Error.](https://github.com/zerasul/genesis-code/issues/672).
* [Updated Rescomp Context Help Information for the Last Version of SGDK (Supports 1.70)](https://github.com/zerasul/genesis-code/issues/545).
* Updated Dependencies.

## 1.4.0

* [Added Docker container Support](https://github.com/zerasul/genesis-code/issues/326).
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ Now, you can define a custom docker image tag for generate a new container.

![dockertag](dockertag.png)

**NOTE:** If you want to use [Doragasu SGDK Docker Image](https://gitlab.com/doragasu/docker-sgdk), you can use the check in Configuration and you must add the current Docker Image Tag description (with the gitlab registry URL).

## Bitmap Viewer

Now you can use the Bitmap Viewer; with some information of the images. You can open as alternative viewer on VSCODE (right click and Reopen Editor... on tab).
Expand All @@ -79,6 +81,14 @@ Now you can use the Bitmap Viewer; with some information of the images. You can

## Release Notes

### 1.4.1

* Added Support for Dogarasu SGDK Docker Image.
* Added Configuration Flag for Dogarasu SGDK Docker Image.
* Fix Gens.code Multiples Instances Error.
* Updated Rescomp Context Help Information for the Last Version of SGDK (Supports 1.70).
* Updated Dependencies.

### 1.4.0

* Added Docker container Support.
Expand Down
84 changes: 41 additions & 43 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,55 +1,53 @@
trigger:

- master
- master

strategy:
matrix:
linux:
imageName: 'ubuntu-18.04'
imageName: "ubuntu-latest"
mac:
imageName: 'macos-10.15'
imageName: "macos-latest"
windows:
imageName: 'vs2017-win2016'
imageName: "windows-latest"

pool:
vmImage: $(imageName)

steps:

- task: NodeTool@0
inputs:
versionSpec: '12.x'
displayName: 'Install Node.js'

- bash: |
/usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
echo ">>> Started xvfb"
displayName: Start xvfb
condition: and(succeeded(), eq(variables['Agent.OS'], 'Linux'))

- bash: |
echo ">>> Compile vscode-test"
yarn && yarn compile
echo ">>> Compiled vscode-test"
cd sample
echo ">>> Run sample integration test"
yarn && yarn compile && yarn test
displayName: Run Tests
env:
DISPLAY: ':99.0'

- task: SonarCloudPrepare@1
inputs:
SonarCloud: 'SonarCloud'
organization: 'zerasul-github'
scannerMode: 'CLI'
configMode: 'manual'
cliProjectKey: 'genesis-code-project'
cliProjectName: 'Genesis Code'
cliSources: 'src/'
extraProperties: |
# Additional properties that will be passed to the scanner,
# Put one key=value per line, example:
sonar.exclusions=src/test/
- task: SonarCloudAnalyze@1
- task: NodeTool@0
inputs:
versionSpec: "12.x"
displayName: "Install Node.js"

- bash: |
/usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
echo ">>> Started xvfb"
displayName: Start xvfb
condition: and(succeeded(), eq(variables['Agent.OS'], 'Linux'))
- bash: |
echo ">>> Compile vscode-test"
yarn && yarn compile
echo ">>> Compiled vscode-test"
cd sample
echo ">>> Run sample integration test"
yarn && yarn compile && yarn test
displayName: Run Tests
env:
DISPLAY: ":99.0"
- task: SonarCloudPrepare@1
inputs:
SonarCloud: "SonarCloud"
organization: "zerasul-github"
scannerMode: "CLI"
configMode: "manual"
cliProjectKey: "genesis-code-project"
cliProjectName: "Genesis Code"
cliSources: "src/"
extraProperties: |
# Additional properties that will be passed to the scanner,
# Put one key=value per line, example:
sonar.exclusions=src/test/
- task: SonarCloudAnalyze@1
Loading

0 comments on commit c11d4e7

Please sign in to comment.