Skip to content

Commit

Permalink
Merge branch 'develop' into 3003.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mattLLVW committed Apr 23, 2021
2 parents 7c1fc3c + 85aba13 commit 96e678f
Show file tree
Hide file tree
Showing 60 changed files with 3,317 additions and 2,844 deletions.
25 changes: 0 additions & 25 deletions .github/workflows/build-statics.yml

This file was deleted.

7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,13 @@ More [here](https://github.com/latenighttales/alcali/blob/2019.2/docs/docs/scree

If you'd like to contribute, check the [contribute](https://alcali.dev/contribute/) documentation on how to install a dev environment and submit PR!

And if you like this project, consider donating:

via GitHub Sponsors, or

[![ko-fi](https://www.ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/J3J3173F6)


## Changelog

## [3000.1.0] - 2020-04-26
Expand Down
13 changes: 8 additions & 5 deletions api/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,12 +162,15 @@ def conformity(self):
if not last_highstate:
return None
highstate_ret = last_highstate.loaded_ret()
for state in highstate_ret["return"]:
# Flat out error(return is a string)
if isinstance(highstate_ret["return"], list):
return False

# Flat out error(return is a string)
return_item = highstate_ret.get("return")
if not return_item or isinstance(return_item, list):
return False

for state in return_item:
# One of the state is not ok
if not highstate_ret["return"][state]["result"]:
if not return_item.get(state, {}).get("result"):
return False
return True

Expand Down
2 changes: 1 addition & 1 deletion dist/index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><link rel=icon href=/static/favicon.ico><title>ALCALI</title><link rel=stylesheet href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900"><link href="https://fonts.googleapis.com/css?family=Material+Icons" rel=stylesheet><link href=/static/css/app.ef41b39d.css rel=preload as=style><link href=/static/css/chunk-vendors.e3234c14.css rel=preload as=style><link href=/static/js/app.a8637cac.js rel=preload as=script><link href=/static/js/chunk-vendors.8941a7de.js rel=preload as=script><link href=/static/css/chunk-vendors.e3234c14.css rel=stylesheet><link href=/static/css/app.ef41b39d.css rel=stylesheet></head><body><noscript><strong>We're sorry but my-app doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script src=/static/js/chunk-vendors.8941a7de.js></script><script src=/static/js/app.a8637cac.js></script></body></html>
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="icon" href="/static/favicon.ico"><title>ALCALI</title><link href="/static/css/app.e48f97d5.css" rel="preload" as="style"><link href="/static/css/chunk-vendors.4aaa8472.css" rel="preload" as="style"><link href="/static/js/app.d84ba841.js" rel="preload" as="script"><link href="/static/js/chunk-vendors.2dd87d26.js" rel="preload" as="script"><link href="/static/css/chunk-vendors.4aaa8472.css" rel="stylesheet"><link href="/static/css/app.e48f97d5.css" rel="stylesheet"></head><body><noscript><strong>We're sorry but my-app doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div><script src="/static/js/chunk-vendors.2dd87d26.js"></script><script src="/static/js/app.d84ba841.js"></script></body></html>
1 change: 1 addition & 0 deletions dist/static/css/app.e48f97d5.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion dist/static/css/app.ef41b39d.css

This file was deleted.

5 changes: 5 additions & 0 deletions dist/static/css/chunk-vendors.4aaa8472.css

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion dist/static/css/chunk-vendors.e3234c14.css

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added dist/static/fonts/roboto-latin-100.5cb7edfc.woff
Binary file not shown.
Binary file added dist/static/fonts/roboto-latin-100.7370c367.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added dist/static/fonts/roboto-latin-300.b00849e0.woff
Binary file not shown.
Binary file added dist/static/fonts/roboto-latin-300.ef7c6637.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added dist/static/fonts/roboto-latin-400.479970ff.woff2
Binary file not shown.
Binary file added dist/static/fonts/roboto-latin-400.60fa3c06.woff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added dist/static/fonts/roboto-latin-500.020c97dc.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added dist/static/fonts/roboto-latin-700.2735a3a6.woff2
Binary file not shown.
Binary file added dist/static/fonts/roboto-latin-700.adcde98f.woff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added dist/static/fonts/roboto-latin-900.9b3766ef.woff2
Binary file not shown.
Binary file added dist/static/fonts/roboto-latin-900.bb1e4dc6.woff
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 0 additions & 2 deletions dist/static/js/app.a8637cac.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/static/js/app.a8637cac.js.map

This file was deleted.

2 changes: 2 additions & 0 deletions dist/static/js/app.d84ba841.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/static/js/app.d84ba841.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit 96e678f

Please sign in to comment.