Skip to content

Commit 1ccd552

Browse files
authored
Merge pull request #29 from NetLogo/v1.1.0
Helio v1.1.0
2 parents e3fc150 + 3e4e2ce commit 1ccd552

150 files changed

Lines changed: 2814 additions & 2222 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/actions/setup-node-deps/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: Setup Node.js and Dependencies
2-
description: Sets up Node.js 22 with yarn cache and installs dependencies
2+
description: Sets up Node.js 24 with yarn cache and installs dependencies
33

44
runs:
55
using: composite
66
steps:
77
- name: Setup Node.js
88
uses: actions/setup-node@v4
99
with:
10-
node-version: "22"
10+
node-version: "24"
1111
cache: "yarn"
1212

1313
- name: Install dependencies

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup Node.js
2323
uses: actions/setup-node@v4
2424
with:
25-
node-version: 22
25+
node-version: 24
2626
cache: "yarn"
2727

2828
- name: Initialize Repository
@@ -51,7 +51,7 @@ jobs:
5151
- name: Setup Node.js
5252
uses: actions/setup-node@v4
5353
with:
54-
node-version: 22
54+
node-version: 24
5555
cache: "yarn"
5656

5757
- name: Initialize Repository

.github/workflows/deploy-nettango.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup Node.js
1919
uses: actions/setup-node@v4
2020
with:
21-
node-version: "22"
21+
node-version: "24"
2222
cache: "yarn"
2323

2424
- name: Install dependencies

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,8 @@ packages/mustache/test-dist/
3636
# should not be tracked
3737
GITIGNORE_*
3838
GITIGNORE_*/**/*
39+
40+
.env
41+
.env.local
42+
.env.development
43+
.env.production

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22
1+
24

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ For development guides, contribution instructions, and more, please refer to the
4444

4545
### Getting Started
4646
1. **Install Requirements**
47-
- [Node.js v22](https://nodejs.org/en/download/)
47+
- [Node.js v24](https://nodejs.org/en/download/)
4848
- [Yarn v1](https://classic.yarnpkg.com/lang/en/docs/install/)
4949
- [WSL](https://learn.microsoft.com/en-us/windows/wsl/install) (for Windows users)
5050

apps/docs/.env

Lines changed: 0 additions & 16 deletions
This file was deleted.

apps/docs/.env.development

Lines changed: 0 additions & 16 deletions
This file was deleted.

apps/docs/.env.example

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
NUXT_TELEMETRY_DISABLED=true
2+
3+
PROJECT_ROOT="."
4+
REPO_ROOT=../..
5+
VERSIONS_SRC="/versions.json"
6+
EXTENSIONS_DIR="$REPO_ROOT/external/extensions"
7+
8+
PRODUCT_NAME="NetLogo Documentation"
9+
PRODUCT_DESCRIPTION="The official documentation for the NetLogo modeling environment, including user manuals, tutorials, and reference materials."
10+
PRODUCT_KEYWORDS="NetLogo, Documentation, User Manual, Tutorials, Reference, Agent-Based Modeling, Simulation, Programming, Modeling Environment"
11+
PRODUCT_VERSION="7.0.3"
12+
PRODUCT_DISPLAY_NAME="7.0.3"
13+
PRODUCT_BUILD_DATE=$(date +%Y-%m-%dT%H:%M:%SZ)
14+
PRODUCT_WEBSITE="https://docs.netlogo.org"
15+
16+
BUILD_LATEST=${BUILD_LATEST:-true}
17+
BUILD_REPO="git@github.com:NetLogo/docs.git"
18+
BUILD_BRANCH="main"
19+
20+
# We will enable it when it is planned
21+
# for release
22+
NUXT_PRIM_TOOLTIP_DISABLED=1
23+
24+
# Enable for Development
25+
# NUXT_DEV_TOOLS=true

apps/docs/.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,8 @@ logs
2626
.idea
2727

2828
routes.json
29+
30+
# Environment variables
31+
.env
32+
.env.*.local
33+
.env.local

0 commit comments

Comments
 (0)