Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
727c729
Add `newxlsx()` and `opentemplate()` and `CellRef` to docs
TimG1964 Mar 3, 2025
faada66
A few typos
TimG1964 Mar 3, 2025
2ec5241
Add row ranges to formatting functions.
TimG1964 Mar 8, 2025
7ec4710
Update CI
TimG1964 Mar 8, 2025
c215a61
Add `normalizenames` keyword to `XLSX.readtable` (#260)
TimG1964 Mar 14, 2025
98ea6c8
Add three functions for merged cells (no tests yet)
TimG1964 Mar 16, 2025
aeff287
Functions to add Defined Names (more work to do)
TimG1964 Mar 16, 2025
a80af31
Add more support for non-contiguous ranges in defined names.
TimG1964 Mar 16, 2025
ab8a906
Add fix to #239 in writetable!() function
TimG1964 Mar 17, 2025
46e6080
More updates to support non-contiguous cell ramges
TimG1964 Mar 17, 2025
e6ef55b
Preparing to write definedNames in `xlsxwrite()`
TimG1964 Mar 17, 2025
ebd6ebc
Bug fixing new code with existing tests
TimG1964 Mar 17, 2025
893e23a
Support `getdata()` for row ranges
TimG1964 Mar 18, 2025
e15f5b5
Handle apostrophes in sheet names in `definedNames`
TimG1964 Mar 19, 2025
6448f27
Write new `definedNames` out to a new XLSXFile
TimG1964 Mar 20, 2025
c644f72
Handle apostrophes correctly in sheetname part of `definedNames`
TimG1964 Mar 20, 2025
de4aaad
Minor row range fixes
TimG1964 Mar 21, 2025
1c429f4
Begin adding some tests
TimG1964 Mar 21, 2025
290c946
Add new functions to API docs
TimG1964 Mar 22, 2025
62605f3
Add more tests
TimG1964 Mar 22, 2025
3977bef
Minor changes to docstrings...
TimG1964 Mar 22, 2025
0328924
Missing line in CI
TimG1964 Mar 22, 2025
e3f0c51
Try again. :-(
TimG1964 Mar 22, 2025
19ae933
Bump to julia 1.8 and above
TimG1964 Mar 22, 2025
746c051
Merge branch 'master' into Add-Row-Ranges-to-formatting
felipenoris Apr 21, 2025
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
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ jobs:
fail-fast: false
matrix:
version:
- '1.7'
- '1.8'
- '1.9'
- '1' # automatically expands to the latest stable 1.x release of Julia
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

add - '1.10' (or equivalently - 'lts') to the matrix

Expand Down
6 changes: 4 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,20 @@ Artifacts = "56f22d72-fd6d-98f1-02f0-08ddc0907c33"
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
Unicode = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"
XML = "72c71f33-b9b6-44de-8c94-c961784809e2"
ZipArchives = "49080126-0e18-4c2a-b176-c102e4b3760c"

[compat]
Tables = "1"
XML = "0.3.5"
ZipArchives = "2"
julia = "1.7"
julia = "1.8"


[extras]
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test", "DataFrames"]
test = ["Test", "DataFrames"]
Binary file modified data/customXml.xlsx
Binary file not shown.
Binary file modified data/general.xlsx
Binary file not shown.
4 changes: 4 additions & 0 deletions docs/src/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,8 @@ XLSX.setUniformAlignment
XLSX.setUniformStyle
XLSX.setColumnWidth
XLSX.setRowHeight
XLSX.getMergedCells
XLSX.isMergedCell
XLSX.getMergedBaseCell
XLSX.addDefinedName
```
1 change: 1 addition & 0 deletions src/XLSX.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import Printf.@printf
import ZipArchives
import XML
import Tables
import Unicode
import Base.convert

const SPREADSHEET_NAMESPACE_XPATH_ARG = "http://schemas.openxmlformats.org/spreadsheetml/2006/main"
Expand Down
305 changes: 275 additions & 30 deletions src/cellformats.jl

Large diffs are not rendered by default.

Loading
Loading