Skip to content

Commit

Permalink
Merge pull request #296 from pylonide/development
Browse files Browse the repository at this point in the history
v2.9.0
  • Loading branch information
exsilium authored Nov 29, 2022
2 parents 8a61cdf + 55cd398 commit 56d39c9
Show file tree
Hide file tree
Showing 11 changed files with 1,893 additions and 392 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 13.x, 14.x, 15.x, 16.x, 17.x]
node-version: [14.x, 15.x, 16.x, 17.x, 18.x, 19.x]
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install and test
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 12
node-version: 14
- run: npm ci

publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 12
node-version: 14
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm publish
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Pylon is built entirely on a web stack, making it the most hacker-friendly IDE t
## Features

- High performance ACE text editor with bundled syntax highlighting to support a wide range of programming languages.
- Modern node support (NodeJS >= 12.22.1)
- Modern node support (NodeJS >= 14.21.1)
- Up to date dependencies and compatibility fixes
- Terminal

Expand Down Expand Up @@ -59,9 +59,9 @@ For quality of life it is recommended to remap Caps Lock hardware key to act as

If installing on Windows, please refer to [Installation on Windows](#installation-on-windows-experimental).

Requirements (>= 2.7.0):
Requirements (>= 2.9.0):

* NodeJS `>= 12.22.1`
* NodeJS `>= 14.21.1`
* g++-4.9 (Required for node-pty compilation)
* make (Required for node-pty compilation)
* python (Required for node-pty compilation)
Expand Down
2 changes: 1 addition & 1 deletion configs/default.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ var config = [
"ext/jslanguage/jslanguage",
"ext/csslanguage/csslanguage",
"ext/htmllanguage/htmllanguage",
"ext/autotest/autotest",
//"ext/autotest/autotest",
"ext/closeconfirmation/closeconfirmation",
"ext/codetools/codetools",
"ext/colorpicker/colorpicker",
Expand Down
Loading

0 comments on commit 56d39c9

Please sign in to comment.