> For the complete documentation index, see [llms.txt](https://docs.openalgo.in/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.openalgo.in/change-log/release/version-1.0.0.1-launched.md).

# 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
