Skip to content

Commit

Permalink
new build
Browse files Browse the repository at this point in the history
  • Loading branch information
CamDavidsonPilon committed Mar 10, 2024
1 parent 733a4c1 commit df17fdc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 24.3.8
- performance improvements by using less backend calls


### 24.3.8
- performance improvements by using less mqtt clients.

Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@


# pioreactorui version
__version__ = "24.3.8"
__version__ = "24.3.9"
4 changes: 2 additions & 2 deletions views.py
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ def get_plugin(filename: str):


@app.route("/api/alllow_ui_installs", methods=["GET"])
@cache.memoize(expire=None)
@cache.memoize(expire=10_000)
def able_to_install_plugins_from_ui():
if os.path.isfile(Path(env["DOT_PIOREACTOR"]) / "DISALLOW_UI_INSTALLS"):
return "false"
Expand Down Expand Up @@ -1307,7 +1307,7 @@ def get_historical_config_for(filename: str):


@app.route("/api/is_local_access_point_active", methods=["GET"])
@cache.memoize(expire=None)
@cache.memoize(expire=10_000)
def is_local_access_point_active():
if os.path.isfile("/boot/firmware/local_access_point"):
return "true"
Expand Down

0 comments on commit df17fdc

Please sign in to comment.