Skip to content

Commit 6bc7417

Browse files
authored
typo fixes and instructions (#112)
fixes
1 parent cc32cdc commit 6bc7417

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5555
- Fixed Detect Case Patterns `detect_patterns()` normalization to handle empty pattern DataFrames without division errors
5656
- Fixed CSV error in detect entity networks report functionality
5757
- Fixed entity network exploration to properly handle DataFrame-based trimmed attributes
58+
- Fix typo on anonymize case data
59+
- Fix macos instructions to install package
5860

5961
## [0.1.2] - 2024-10-15
6062

DEVELOPING.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,12 @@
1010

1111
- Linux: `sudo apt-get install wkhtmltopdf`
1212

13-
- MacOS: `brew install homebrew/cask/wkhtmltopdf`
13+
- macOS:
14+
```
15+
curl -L https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-2/wkhtmltox-0.12.6-2.macos-cocoa.pkg -O
16+
17+
installer -pkg wkhtmltox-0.12.6-2.macos-cocoa.pkg -target ~
18+
```
1419

1520

1621
## Running the app

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,12 @@ For developers who want to contribute to Intelligence Toolkit or run it from sou
232232
- wkhtmltopdf (for PDF report generation)
233233
- Windows: [Download installer](https://wkhtmltopdf.org/downloads.html)
234234
- Linux: `sudo apt-get install wkhtmltopdf`
235-
- macOS: `brew install homebrew/cask/wkhtmltopdf`
235+
- macOS:
236+
```
237+
curl -L https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-2/wkhtmltox-0.12.6-2.macos-cocoa.pkg -O
238+
239+
installer -pkg wkhtmltox-0.12.6-2.macos-cocoa.pkg -target ~
240+
```
236241

237242
**Setup Instructions:**
238243
1. Clone the repository:

app/workflows/anonymize_case_data/workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ def create(sv: ds_variables.SessionVariables, workflow: None):
292292
att_separator = ";"
293293
data_schema = acd.get_data_schema()
294294
with c1:
295-
st.markdown("##### Constuct query")
295+
st.markdown("##### Construct query")
296296
if len(sdf) > 0:
297297
count_holder = st.empty()
298298

0 commit comments

Comments
 (0)