This commit is contained in:
@@ -53,8 +53,12 @@ trial / seeder system
|
|||||||
|
|
||||||
- Regression tests completed and ready to use *before* release so we can add issues to it as they come up and test reliably
|
- Regression tests completed and ready to use *before* release so we can add issues to it as they come up and test reliably
|
||||||
- Rockfish licensing finished up
|
- Rockfish licensing finished up
|
||||||
|
todo: revoke is weird to do, have to make a license to revoke it and generate and send
|
||||||
|
what should happen instead is that we should just be able to click on a license in the existing list of licenses for that customer and press a revoke button, get an are you sure prompt then it should save it but *NOT* email any warning to the customer (it may not email now anyway a revoke need to check)
|
||||||
lots to do there but enough for trial and sales for now in existing is enough
|
lots to do there but enough for trial and sales for now in existing is enough
|
||||||
one license redundant route also should be baked into initial release even if it points to same place for now
|
one license redundant route also should be baked into initial release even if it points to same place for now
|
||||||
|
|
||||||
|
|
||||||
- Biz decisions
|
- Biz decisions
|
||||||
Share it product pages for v8 so can be purchased
|
Share it product pages for v8 so can be purchased
|
||||||
pricing
|
pricing
|
||||||
@@ -382,7 +386,7 @@ console.log(parseFloat(localeParseFloat("1,100.9"))); // user's locale
|
|||||||
console.log(parseFloat(localeParseFloat("1,100.9", "us"))); // US locale
|
console.log(parseFloat(localeParseFloat("1,100.9", "us"))); // US locale
|
||||||
console.log(parseFloat(localeParseFloat("1,100.9", "nl"))); // Dutch locale: reversed meaning of separators
|
console.log(parseFloat(localeParseFloat("1,100.9", "nl"))); // Dutch locale: reversed meaning of separators
|
||||||
|
|
||||||
|
todo 4: to look into, chartjs is big apparently this works and is smaller: https://github.com/leeoniya/uPlot/
|
||||||
|
|
||||||
## SERVER MISC ITEMS
|
## SERVER MISC ITEMS
|
||||||
|
|
||||||
|
|||||||
@@ -384,6 +384,13 @@ server {
|
|||||||
add_header X-Content-Type-Options "nosniff" always;
|
add_header X-Content-Type-Options "nosniff" always;
|
||||||
add_header X-Frame-Options "SAMEORIGIN" always;
|
add_header X-Frame-Options "SAMEORIGIN" always;
|
||||||
add_header Referrer-Policy "strict-origin" always;
|
add_header Referrer-Policy "strict-origin" always;
|
||||||
|
gzip on;
|
||||||
|
gzip_vary on;
|
||||||
|
gzip_min_length 10240;
|
||||||
|
gzip_proxied expired no-cache no-store private auth;
|
||||||
|
gzip_http_version 1.1;
|
||||||
|
gzip_types application/javascript text/css application/json text/plain;
|
||||||
|
|
||||||
|
|
||||||
proxy_pass http://127.0.0.1:7575;
|
proxy_pass http://127.0.0.1:7575;
|
||||||
proxy_http_version 1.1;
|
proxy_http_version 1.1;
|
||||||
@@ -445,6 +452,12 @@ server {
|
|||||||
add_header X-Content-Type-Options "nosniff" always;
|
add_header X-Content-Type-Options "nosniff" always;
|
||||||
add_header X-Frame-Options "SAMEORIGIN" always;
|
add_header X-Frame-Options "SAMEORIGIN" always;
|
||||||
add_header Referrer-Policy "strict-origin" always;
|
add_header Referrer-Policy "strict-origin" always;
|
||||||
|
gzip on;
|
||||||
|
gzip_vary on;
|
||||||
|
gzip_min_length 10240;
|
||||||
|
gzip_proxied expired no-cache no-store private auth;
|
||||||
|
gzip_http_version 1.1;
|
||||||
|
gzip_types application/javascript text/css application/json text/plain;
|
||||||
|
|
||||||
proxy_pass http://127.0.0.1:7575;
|
proxy_pass http://127.0.0.1:7575;
|
||||||
proxy_http_version 1.1;
|
proxy_http_version 1.1;
|
||||||
@@ -536,6 +549,13 @@ server {
|
|||||||
add_header X-Content-Type-Options "nosniff" always;
|
add_header X-Content-Type-Options "nosniff" always;
|
||||||
add_header X-Frame-Options "SAMEORIGIN" always;
|
add_header X-Frame-Options "SAMEORIGIN" always;
|
||||||
add_header Referrer-Policy "strict-origin" always;
|
add_header Referrer-Policy "strict-origin" always;
|
||||||
|
gzip on;
|
||||||
|
gzip_vary on;
|
||||||
|
gzip_min_length 10240;
|
||||||
|
gzip_proxied expired no-cache no-store private auth;
|
||||||
|
gzip_http_version 1.1;
|
||||||
|
gzip_types application/javascript text/css application/json text/plain;
|
||||||
|
|
||||||
proxy_pass http://127.0.0.1:7575;
|
proxy_pass http://127.0.0.1:7575;
|
||||||
proxy_http_version 1.1;
|
proxy_http_version 1.1;
|
||||||
proxy_set_header Upgrade $http_upgrade;
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
|||||||
Reference in New Issue
Block a user