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
6 changes: 3 additions & 3 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Apache License
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/

Expand Down Expand Up @@ -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.
Expand All @@ -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.
4 changes: 3 additions & 1 deletion packages/atlas-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion packages/atlas-core/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
8 changes: 8 additions & 0 deletions packages/atlas-core/scripts/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(
[
{
Expand Down
Loading