Skip to content

Commit

Permalink
Update copyright years
Browse files Browse the repository at this point in the history
  • Loading branch information
Natalia Smirnova committed Mar 7, 2024
1 parent c0f73be commit 3adafc3
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 27 deletions.
2 changes: 1 addition & 1 deletion LICENSE.md
@@ -1,6 +1,6 @@
The MIT License

Copyright (c) 2015-2020 [EPAM Systems, Inc.](https://www.epam.com/)
Copyright (c) 2015-2024 [EPAM Systems, Inc.](https://www.epam.com/)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Expand Up @@ -18,7 +18,7 @@ const AboutPanel = ({ version }) => (
<img src="images/logo.svg"></img>
<h3 className="miew-name">Miew – 3D Molecular Viewer </h3>
<p>{version}</p>
<p>Copyright © 2015–2020 EPAM Systems, Inc.</p>
<p>Copyright © 2015–2024 EPAM Systems, Inc.</p>
<p>
<a href="https://epa.ms/miew">https://epa.ms/miew</a>
</p>
Expand Down
2 changes: 1 addition & 1 deletion packages/lib/demo/menu.html
Expand Up @@ -398,7 +398,7 @@ <h3 class="text-center" style="max-width:35ex;margin:20px auto 10px">
<small class="PACKAGE_VERSION" style="white-space:nowrap;"></small>
</h3>

<p>Copyright © 2015–2020 EPAM Systems, Inc.</p>
<p>Copyright © 2015–2024 EPAM Systems, Inc.</p>
<p><a href="https://epa.ms/miew">https://epa.ms/miew</a></p>
</div>
<hr>
Expand Down
31 changes: 16 additions & 15 deletions packages/lib/docs/getting-started-for-dummies.md
@@ -1,27 +1,28 @@
# Getting Started with Miew Development: The Beginner's Guide

Copyright (c) 2015–2020 [EPAM Systems, Inc.](https://www.epam.com/)
Copyright (c) 2015–2024 [EPAM Systems, Inc.](https://www.epam.com/)

![Miew screenshot](https://github.com/epam/miew/raw/master/README.png)

Table of contents:

<!-- TOC depthFrom:2 depthTo:6 withLinks:1 updateOnSave:1 orderedList:0 -->

- [Project Overview](#project-overview)
- [Web Application](#web-application)
- [Embeddable Component](#embeddable-component)
- [Display Modes](#display-modes)
- [Source Data](#source-data)
- [Biochemistry](#biochemistry)
- [Proteins](#proteins)
- [Nucleic Acids](#nucleic-acids)
- [Development Tools](#development-tools)
- [Git](#git)
- [Node.js](#nodejs)
- [JavaScript](#javascript)
- [IDE](#ide)
- [Usage](#usage)
- [Getting Started with Miew Development: The Beginner's Guide](#getting-started-with-miew-development-the-beginners-guide)
- [Project Overview](#project-overview)
- [Web Application](#web-application)
- [Embeddable Component](#embeddable-component)
- [Display Modes](#display-modes)
- [Source Data](#source-data)
- [Biochemistry](#biochemistry)
- [Proteins](#proteins)
- [Nucleic Acids](#nucleic-acids)
- [Development Tools](#development-tools)
- [Git](#git)
- [Node.js](#nodejs)
- [JavaScript](#javascript)
- [IDE](#ide)
- [Usage](#usage)

<!-- /TOC -->

Expand Down
2 changes: 1 addition & 1 deletion packages/lib/examples/grid.html
Expand Up @@ -86,7 +86,7 @@ <h2>Adverse effects</h2>
<hr/>

<footer>
Miew – 3D Molecular Viewer. Copyright (c) 2015–2020 EPAM Systems, Inc.
Miew – 3D Molecular Viewer. Copyright (c) 2015–2024 EPAM Systems, Inc.
</footer>
</div>

Expand Down
16 changes: 8 additions & 8 deletions packages/lib/src/io/exporters/fbx/FBXResult.js
Expand Up @@ -168,7 +168,7 @@ export default class FBXResult {
const creator = `Miew FBX Exporter v${this._info.version}`; // Supposed to be an engine

return `; FBX 6.1.0 project file
; Created by ${creator} Copyright (c) 2015-2020 EPAM Systems, Inc.
; Created by ${creator} Copyright (c) 2015-2024 EPAM Systems, Inc.
; For support please contact miew@epam.com
; ----------------------------------------------------
Expand All @@ -178,7 +178,7 @@ FBXHeaderExtension: {
CreationTimeStamp: {
Version: ${timeStampVersion}
Year: ${date.getFullYear()}
Month: ${date.getMonth() + 1}
Month: ${date.getMonth() + 1}
Day: ${date.getDate()}
Hour: ${date.getHours()}
Minute: ${date.getMinutes()}
Expand All @@ -191,7 +191,7 @@ FBXHeaderExtension: {
}
}
CreationTime: "${date}"
Creator: "${creator}"
Creator: "${creator}"
`;
}

Expand Down Expand Up @@ -222,12 +222,12 @@ ${defaultDefinitions}
const vertCount = model.verticesCount;
allModels += `
Model: "Model::${this._info.name}_${i}", "Mesh" {
Version: ${modelVersion}
Version: ${modelVersion}
${defaultProperties}
${this._verticesIndices(model.positions, model.indices)}
${this._normalLayer(model.normals)}
${this._colorLayer(model.colors, vertCount)}
${defaultMaterialLayer}
${this._normalLayer(model.normals)}
${this._colorLayer(model.colors, vertCount)}
${defaultMaterialLayer}
${defaultLayerBlock}
}`;
}
Expand Down Expand Up @@ -394,7 +394,7 @@ Connections: {
Version: ${layerElementNormalVersion}
Name: "${layerElementNormalName}"
MappingInformationType: "ByVertice"
ReferenceInformationType: "Direct"
ReferenceInformationType: "Direct"
Normals: ${normalsStr}
}`;
}
Expand Down

0 comments on commit 3adafc3

Please sign in to comment.