diff --git a/LICENSE b/LICENSE index 51dfbf50d..8c705ebe1 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Apache License + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -186,7 +186,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2020 Mendix Technology BV + Copyright 2022 Mendix Technology B.V. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -198,4 +198,4 @@ Apache License distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and - limitations under the License. + limitations under the License. \ No newline at end of file diff --git a/packages/atlas-core/CHANGELOG.md b/packages/atlas-core/CHANGELOG.md index ecd2e83af..ac6236aff 100644 --- a/packages/atlas-core/CHANGELOG.md +++ b/packages/atlas-core/CHANGELOG.md @@ -6,10 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [4.3.4] Atlas Core - 2026-2-25 + ### Fixed - We fixed an issue with label alignment in Check Box widgets. -- We fixed an issue Text Box widget being stretched when corresponding label is multiline. +- We fixed an issue Text Box widget being stretched when corresponding label is multiline. ## [4.3.3] Atlas Core - 2026-1-30 diff --git a/packages/atlas-core/package.json b/packages/atlas-core/package.json index bfb4aa796..12666cf07 100644 --- a/packages/atlas-core/package.json +++ b/packages/atlas-core/package.json @@ -1,7 +1,7 @@ { "name": "atlas-core", "moduleName": "Atlas Core", - "version": "4.3.3", + "version": "4.3.4", "license": "Apache-2.0", "copyright": "© Mendix Technology BV 2024. All rights reserved.", "repository": { diff --git a/packages/atlas-core/scripts/build.ts b/packages/atlas-core/scripts/build.ts index fea5778d0..cdd92953f 100644 --- a/packages/atlas-core/scripts/build.ts +++ b/packages/atlas-core/scripts/build.ts @@ -87,9 +87,17 @@ async function copyStylesAndAssets(watchMode: boolean, destination: string): Pro const watchArg = watchMode ? "--watch" : ""; try { + // create version file const versionFile = join(destination, "themesource", "atlas_core", ".version"); echo("version:"); echo(packageFile.version).to(versionFile); + + // create license file + const licenseSource = join(repoRoot, "LICENSE"); + const licenseDestination = join(destination, "License.txt"); + cp(licenseSource, licenseDestination); + console.info(`Copied LICENSE to ${licenseDestination}`); + await concurrently( [ {