Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed Detect Case Patterns `detect_patterns()` normalization to handle empty pattern DataFrames without division errors
- Fixed CSV error in detect entity networks report functionality
- Fixed entity network exploration to properly handle DataFrame-based trimmed attributes
- Fix typo on anonymize case data
- Fix macos instructions to install package

## [0.1.2] - 2024-10-15

Expand Down
7 changes: 6 additions & 1 deletion DEVELOPING.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@

- Linux: `sudo apt-get install wkhtmltopdf`

- MacOS: `brew install homebrew/cask/wkhtmltopdf`
- macOS:
```
curl -L https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-2/wkhtmltox-0.12.6-2.macos-cocoa.pkg -O

installer -pkg wkhtmltox-0.12.6-2.macos-cocoa.pkg -target ~
```


## Running the app
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,12 @@ For developers who want to contribute to Intelligence Toolkit or run it from sou
- wkhtmltopdf (for PDF report generation)
- Windows: [Download installer](https://wkhtmltopdf.org/downloads.html)
- Linux: `sudo apt-get install wkhtmltopdf`
- macOS: `brew install homebrew/cask/wkhtmltopdf`
- macOS:
```
curl -L https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-2/wkhtmltox-0.12.6-2.macos-cocoa.pkg -O

installer -pkg wkhtmltox-0.12.6-2.macos-cocoa.pkg -target ~
```

**Setup Instructions:**
1. Clone the repository:
Expand Down
2 changes: 1 addition & 1 deletion app/workflows/anonymize_case_data/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def create(sv: ds_variables.SessionVariables, workflow: None):
att_separator = ";"
data_schema = acd.get_data_schema()
with c1:
st.markdown("##### Constuct query")
st.markdown("##### Construct query")
if len(sdf) > 0:
count_holder = st.empty()

Expand Down
Loading