Skip to content

Commit a01ff35

Browse files
authoredMay 9, 2022
Merge pull request #44 from clavay/master
Update to Django 3
2 parents 16c7c01 + 5632f6c commit a01ff35

File tree

286 files changed

+16717
-3429
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

286 files changed

+16717
-3429
lines changed
 

‎CHANGELOG.txt

+40
Original file line numberDiff line numberDiff line change
@@ -214,3 +214,43 @@
214214
- fixed re-login after logout (#22)
215215
- added LINK_TARGET option to change the default behaviour of links in view overview (#23)
216216
- Catching exceptions if DB close while pyscada is running
217+
218+
0.7.0rc17, 0.7.0rc18
219+
- add pre_delete signals to stop the background process before deleting a device
220+
- move widget post_save signal to the model to remove the global receiver (not filtering by sender)
221+
- move device handlers to core
222+
- add stop in DAQ Process restart
223+
- move the device and variable protocol specific configuration to core
224+
- add protocol name in device __str__ for the variable js admin file
225+
- add complex events
226+
227+
0.7.0rc19
228+
- add fk_name in admin for bacnet device with 2 ForeignKey to Device model
229+
230+
0.7.0rc20
231+
- add django channels to send informations between processes
232+
233+
0.7.0rc21
234+
- Update docker config file
235+
- Add optional PID_FILE_NAME to settings to allow multiple instances
236+
- Add custom periodic auto caltulated variable
237+
238+
0.7.0rc22
239+
- Add choose_login.html to have multiple login ways
240+
- Add circular gauge to display control items
241+
- Add silent delete option in admin for VariableState and Device to delete a lot of data
242+
- Add grafana doc and config file to use Grafana to display data from a PyScada instance
243+
- Add dictionaries to store string with a key. Allows to store strings for Variables
244+
245+
0.7.0rc23
246+
- Add svg to render ProcessFlowDiagram. Allows to resize to fit the window size
247+
- Add OPC-UA protocol
248+
- close DB connection in scheduler to allow multiple instance on the same DB to run
249+
- Add INT8 and UINT8 variable value class
250+
- change the date range picker JS library
251+
- Add logrotate config file
252+
- Add a slider to change the refresh rate value of data handling
253+
254+
0.7.1rc1
255+
- Update to Django 3
256+
- Update docker config and doc to use pyscada repository

‎docker/nginx/nginx.conf

+9-7
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,17 @@ http {
5252
}
5353

5454
# configuration of the server
55-
server {
56-
listen 80;
57-
listen [::]:80;
58-
server_name _; # substitute your machine's IP address or FQDN
59-
return 301 https://$host$request_uri;
60-
}
55+
#server {
56+
# listen 80;
57+
# listen [::]:80;
58+
# server_name _; # substitute your machine's IP address or FQDN
59+
# return 301 https://$host$request_uri;
60+
#}
6161

6262
server {
63-
listen 443 default_server ssl;
63+
listen 80 default_server;
64+
listen [::]:80;
65+
listen 443 ssl;
6466
listen [::]:443 ssl;
6567

6668
server_name _; # substitute your machine's IP address or FQDN

0 commit comments

Comments
 (0)
Please sign in to comment.