Skip to content

Commit 11d0a6c

Browse files
committed
minor updates
1 parent 38826f8 commit 11d0a6c

File tree

6 files changed

+13
-14
lines changed

6 files changed

+13
-14
lines changed

.github/workflows/tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ name: tests
33
on:
44
release:
55
types: [published]
6-
workflow_dispatch:
76

87
jobs:
98
run-tests:

LICENCE.txt renamed to LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2023 Ioannis Stefanis
1+
Copyright (c) 2023-2024 Ioannis Stefanis
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

NOTICE.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Controllio
2-
Copyright (c) 2023 Ioannis Stefanis
2+
Copyright (c) 2023-2024 Ioannis Stefanis
33

44
The app uses:
55

@@ -13,4 +13,4 @@ The app uses:
1313

1414
- the Complex libray, licensed under the MIT License, available at https://github.com/arian/Complex, which is included modified in the 'assets' directory
1515

16-
- the Tablot numerical method, whose two implementations originally developed in Python are licensed under the MIT License, available at https://code.activestate.com/recipes/576934/ and https://code.activestate.com/recipes/576938/ respectively (their licences are included in the 'assets' directory)
16+
- the Tablot numerical method, whose two implementations originally developed in Python are licensed under the MIT License, available at https://code.activestate.com/recipes/576934/ and https://code.activestate.com/recipes/576938/ respectively (their licenses are included in the 'assets' directory)

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,11 @@ A User Guide is included in the web app, and can be launched from the main menu
9595

9696
The project uses a simplified variation of the MVC pattern, organizing code into _model_ and _view_ parts:
9797

98-
- `\model\` contains all code modeling the circuit elements, state & functionality:
98+
- `/model/` contains all code modeling the circuit elements, state & functionality:
9999
- the definitions of the main circuit elements (_tf_, _adder_, _block_), as JS classes
100100
- the circuit/block simplification algorithms' logic
101101
- the services related to the circuit state & core functionality (ex. _elementConnectionService_)
102-
- `\view\` contains all code related to the visual part of the app & its UI:
102+
- `/view/` contains all code related to the visual part of the app & its UI:
103103
- the views of the main circuit elements (ex. _tfView_) & all other UI components (ex. _navbarView_)
104104
- the core rendering & UI services (ex. _elementRenderingService_, _elementSelectingAndDraggingService_)
105105
- the app features' services (ex. _optimizeTopologyService_)
@@ -109,12 +109,12 @@ The project uses a simplified variation of the MVC pattern, organizing code into
109109

110110
In addition:
111111

112-
- `\assets\` contains any other resources used (ex. libraries, images)
113-
- `\math\` contains the math services (ex. _complexAnalysisService_)
114-
- `\test\` contains the app's tests
115-
- `\util\` contains any general-purpose utility code & services (ex. _loggingService_)
112+
- `/assets/` contains any other resources used (ex. libraries, images)
113+
- `/math/` contains the math services (ex. _complexAnalysisService_)
114+
- `/test/` contains the app's tests
115+
- `/util/` contains any general-purpose utility code & services (ex. _loggingService_)
116116

117117
## License
118118

119-
Controllio is distributed under the MIT License, included in the 'LICENCE.TXT' file.
120-
Copyright (C) 2023 Ioannis Stefanis
119+
Controllio is distributed under the MIT License, included in the 'LICENSE.TXT' file.
120+
Copyright (C) 2023-2024 Ioannis Stefanis

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "controllio",
33
"description": "Web app for experimenting with control systems online",
4-
"version": "0.5.0-beta.5",
4+
"version": "0.5.0-beta.6",
55
"license": "MIT",
66
"author": {
77
"name": "Ioannis Stefanis"

view/services/feature/userGuideService.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ const init = function () {
5151
<li>is written in a widely-used programming language (vanilla Javascript), and can be easily extended</li>
5252
</ul>
5353
<h3>License</h3>
54-
<p>Controllio is distributed under the MIT License, included in the 'LICENCE.TXT' file.</p>
54+
<p>Controllio is distributed under the MIT License, included in the 'LICENSE.TXT' file.</p>
5555
</section>
5656
<section class="tab-content" id="popup-window-tab-content-2">
5757
<h3>Modelling a dynamical system</h3>

0 commit comments

Comments
 (0)