Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
fzumstein committed Dec 7, 2024
1 parent dbef5ad commit 15d852a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 7 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.9.1 (Dec 8, 2024)

- Custom functions are now automatically reloaded every time you edit them without having to restart Excel or reloading the add-in.
- Fixed path handling issues on Windows with `run.py` CLI and `.env`. This fixes issues with `run.py init`, dev server reloading, and loading `.env`.
- Office.js API versions are now printed in the dev tools console.
- Upgraded dependencies.

## 0.9.0 (Nov 27, 2024)

- Launched xlwings Lite, allowing Python-based Office.js add-ins to be deployed as static websites. These add-ins run Python via WebAssembly (Wasm) in the add-in's browser engine, so Python doesn't need to be installed on neither the server nor the local machine. Learn more at [xlwings Lite](index_lite.md).
Expand Down
4 changes: 0 additions & 4 deletions docs/custom_functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,6 @@ if settings.enable_examples:
from .myfunctions import *
```

```{note}
After adding new functions or editing the function arguments, you will need to restart Excel. This is not required if you are just editing the body of an existing function.
```

## pandas DataFrames

By using the `@arg` and `@ret` decorators, you can apply converters and options to arguments and the return value, respectively.
Expand Down

0 comments on commit 15d852a

Please sign in to comment.