Skip to content

Commit

Permalink
Dates update
Browse files Browse the repository at this point in the history
  • Loading branch information
imirzov committed Apr 13, 2021
1 parent ce6c355 commit d6ac47b
Show file tree
Hide file tree
Showing 19 changed files with 20 additions and 22 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
© Ihor Mirzov, July 2020
© Ihor Mirzov, 2019-2021
Distributed under GNU General Public License v3.0

<br/><br/>
Expand Down Expand Up @@ -92,9 +92,7 @@ Get [Python3](https://www.python.org/downloads/) (>3.6) and install it.

[Download latest release](https://github.com/calculix/cae/releases) (source code) and unpack it.

Open terminal in a directory where you've unpacked CAE.

Allow all files to be executed (Linux only):
Open terminal in a directory where you've unpacked CAE. Allow all files to be executed (Linux only):

sudo chmod -R 777 ./*

Expand Down
2 changes: 1 addition & 1 deletion config/kom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
© Ihor Mirzov, 2019-2020
© Ihor Mirzov, 2019-2021
Distributed under GNU General Public License v3.0
CalculiX Keyword Object Model
Expand Down
2 changes: 1 addition & 1 deletion src/actions.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

""" © Ihor Mirzov, 2019-2020
""" © Ihor Mirzov, 2019-2021
Distributed under GNU General Public License v3.0
Main window actions - all processed signals. """
Expand Down
2 changes: 1 addition & 1 deletion src/cae.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

""" © Ihor Mirzov, 2019-2020
""" © Ihor Mirzov, 2019-2021
Distributed under GNU General Public License v3.0
Main module.
Expand Down
2 changes: 1 addition & 1 deletion src/clean.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

""" © Ihor Mirzov, 2019-2020
""" © Ihor Mirzov, 2019-2021
Distributed under GNU General Public License v3.0
Methods for cleaning up temporary/unused files/folders """
Expand Down
2 changes: 1 addition & 1 deletion src/doc.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

""" © Ihor Mirzov, 2019-2020
""" © Ihor Mirzov, 2019-2021
Distributed under GNU General Public License v3.0
A tool to prepare new release of CrunchiX HTML help pages """
Expand Down
2 changes: 1 addition & 1 deletion src/file_tools.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

""" © Ihor Mirzov, 2019-2020
""" © Ihor Mirzov, 2019-2021
Distributed under GNU General Public License v3.0
Method to read files. """
Expand Down
2 changes: 1 addition & 1 deletion src/gui/cgx.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

""" © Ihor Mirzov, 2019-2020
""" © Ihor Mirzov, 2019-2021
Distributed under GNU General Public License v3.0
Methods for GraphiX window. """
Expand Down
2 changes: 1 addition & 1 deletion src/gui/keyword_dialog.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

""" © Ihor Mirzov, 2019-2020
""" © Ihor Mirzov, 2019-2021
Distributed under GNU General Public License v3.0
Dialog window to create/edit keyword's implementation.
Expand Down
2 changes: 1 addition & 1 deletion src/gui/log.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

""" © Ihor Mirzov, 2019-2020
""" © Ihor Mirzov, 2019-2021
Distributed under GNU General Public License v3.0
Custon logging handlers for catching CCX and CGX output.
Expand Down
2 changes: 1 addition & 1 deletion src/importer.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

""" © Ihor Mirzov, 2019-2020
""" © Ihor Mirzov, 2019-2021
Distributed under GNU General Public License v3.0
File importer:
Expand Down
2 changes: 1 addition & 1 deletion src/model/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

""" © Ihor Mirzov, 2019-2020
""" © Ihor Mirzov, 2019-2021
Distributed under GNU General Public License v3.0
Model unites KOM object and parsers.
Expand Down
2 changes: 1 addition & 1 deletion src/model/job.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

""" © Ihor Mirzov, 2019-2020
""" © Ihor Mirzov, 2019-2021
Distributed under GNU General Public License v3.0
Job submition and convertion. Run a detached process and
Expand Down
2 changes: 1 addition & 1 deletion src/model/kom.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

""" © Ihor Mirzov, 2019-2020
""" © Ihor Mirzov, 2019-2021
Distributed under GNU General Public License v3.0
CalculiX Keyword Object Model (hierarchy).
Expand Down
2 changes: 1 addition & 1 deletion src/model/parsers/mesh.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

""" © Ihor Mirzov, 2019-2020
""" © Ihor Mirzov, 2019-2021
Distributed under GNU General Public License v3.0
Parses finite element mesh from the CalculiX .inp-file.
Expand Down
2 changes: 1 addition & 1 deletion src/path.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

""" © Ihor Mirzov, 2019-2020
""" © Ihor Mirzov, 2019-2021
Distributed under GNU General Public License v3.0
Absolute paths to the application's main folders. """
Expand Down
2 changes: 1 addition & 1 deletion src/settings.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

""" © Ihor Mirzov, 2019-2020
""" © Ihor Mirzov, 2019-2021
Distributed under GNU General Public License v3.0
Application's settings.
Expand Down
2 changes: 1 addition & 1 deletion src/tests.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

""" © Ihor Mirzov, 2019-2020
""" © Ihor Mirzov, 2019-2021
Distributed under GNU General Public License v3.0
Utilities for testing """
Expand Down
2 changes: 1 addition & 1 deletion src/tree.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

""" © Ihor Mirzov, 2019-2020
""" © Ihor Mirzov, 2019-2021
Distributed under GNU General Public License v3.0
Methods to work with main window's treeView widget. """
Expand Down

0 comments on commit d6ac47b

Please sign in to comment.