Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: |
echo "REACT_APP_NAME=Pybricks Labs" >> $GITHUB_ENV
echo "REACT_APP_SUFFIX=-labs" >> $GITHUB_ENV
echo "REACT_APP_VERSION=$GITHUB_SHA" >> $GITHUB_ENV
echo "REACT_APP_VERSION=$(date --iso)-$GITHUB_SHA" >> $GITHUB_ENV
- run: yarn build
- uses: actions/upload-artifact@v6
with:
Expand Down
4 changes: 2 additions & 2 deletions src/app/constants.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
// Copyright (c) 2021-2023 The Pybricks Authors
// Copyright (c) 2021-2026 The Pybricks Authors
import docsPackage from '@pybricks/ide-docs/package.json';

// Definitions for compile-time UI settings.
Expand Down Expand Up @@ -49,7 +49,7 @@ export const pybricksUsbLinuxUdevRulesUrl =
'https://pybricks.com/projects/tutorials/dev/tools/linux/';

/** Pybricks copyright statement. */
export const pybricksCopyright = 'Copyright (c) 2020-2023 The Pybricks Authors';
export const pybricksCopyright = 'Copyright (c) 2020-2026 The Pybricks Authors';

/** The LEGO name with registered trademark symbol. */
export const legoRegisteredTrademark = 'LEGO®';
Expand Down