# Version 1.0.0.1 Launched

23rd June 2024

#### New Features

* **Flask Version Management**: Added Flask version management in the environmental file. The OpenAlgo version is now displayed in the footer.

```
# OpenAlgo Flask App Version Management
FLASK_APP_VERSION='1.0.0.1'
```

* **Setup Configuration Route**: If the app is launched for the first time, attempting to log in without any signup will redirect to the `/setup` configuration route for user registration.
* **Flask Host and Port Configuration**: Added Flask Host IP, Port Number, and Debug settings in the environmental file.

  ```
  # OpenAlgo Flask App Host and Port Configuration
  FLASK_HOST_IP='127.0.0.1' # For 0.0.0.0 (accessible from other devices on the network)
  FLASK_PORT='5000' # Default Port is 5000
  FLASK_DEBUG='False'
  ```

**Smart Order Delay Configuration**: Added a 0.5 second delay configuration for placing multi-legged smart orders to accommodate API rate limiting by brokers. Brokers typically rate limit position book requests to 1 request/second. Sudden multiple requests can result in order failures. The delay parameter can be controlled as follows:

```
SMART_ORDER_DELAY = '0.5'
```

#### Bug Fixes

* None listed for this version.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.openalgo.in/change-log/release/version-1.0.0.1-launched.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
