-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add the Italian version docs for the v1.4.0 release notes
- Loading branch information
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Excelize v1.4.0 | ||
|
||
* Rilasciato questo il: Agosto 14, 2018 | ||
* Rilascio di GitHub: [https://github.com/xuri/excelize/releases/tag/v1.4.0](https://github.com/xuri/excelize/releases/tag/v1.4.0) | ||
|
||
## Note di rilascio | ||
|
||
Le modifiche più importanti in questa versione sono: | ||
|
||
### Cambiamento dirompente | ||
|
||
* Aggiungi il valore restituito dall'errore per le funzioni: `AddChart`, `AddComment`, `AddPicture`, `AddShape`, `AddTable` e `SetConditionalFormat` | ||
|
||
### Caratteristiche notevoli | ||
|
||
* Nuova funzione [`GetComments`](https://pkg.go.dev/github.com/xuri/excelize@v1.4.0#File.GetComments) è stato aggiunto per supporto recupera tutti i commenti e restituisce una mappa del nome del foglio di lavoro ai commenti del foglio di lavoro | ||
* Nuove funzioni [`RGBToHSL`](https://pkg.go.dev/github.com/xuri/excelize@v1.4.0#RGBToHSL) e [`HSLToRGB`](https://pkg.go.dev/github.com/xuri/excelize@v1.4.0#HSLToRGB) è stato aggiunto il supporto per la conversione del colore RGBA e HSL | ||
* Nuova funzione [`NewDataValidation`](https://pkg.go.dev/github.com/xuri/excelize@v1.4.0#NewDataValidation) e funzioni serie [`DataValidation.SetDropList`](https://pkg.go.dev/github.com/xuri/excelize@v1.4.0#DataValidation.SetDropList), [`DataValidation.SetError`](https://pkg.go.dev/github.com/xuri/excelize@v1.4.0#DataValidation.SetError), [`DataValidation.SetInput`](https://pkg.go.dev/github.com/xuri/excelize@v1.4.0#DataValidation.SetInput), [`DataValidation.SetRange`](https://pkg.go.dev/github.com/xuri/excelize@v1.4.0#DataValidation.SetRange), [`DataValidation.SetSqref`](https://pkg.go.dev/github.com/xuri/excelize@v1.4.0#DataValidation.SetSqref) e [`DataValidation.SetSqrefDropList`](https://pkg.go.dev/github.com/xuri/excelize@v1.4.0#DataValidation.SetSqrefDropList) è stato aggiunto per la convalida dei dati di supporto | ||
* Nuova funzione [`AddPictureFromBytes`](https://pkg.go.dev/github.com/xuri/excelize@v1.4.0#File.AddPictureFromBytes) è stato aggiunto, problema correlato [#259](https://github.com/xuri/excelize/issues/259) | ||
* La funzione `GetCellFormula` ora supporta i tipi di formula condivisi, problema correlato [#227](https://github.com/xuri/excelize/issues/227) | ||
* Supporto per analizzare ulteriormente le date in futuro | ||
* Utilizza il valore minimo/medio/massimo per la formattazione condizionale in scala di colori 2 e 3 | ||
|
||
### Correzioni di bug | ||
|
||
* Migliorata la formattazione dei commenti, la correzione espande tutte le caselle dei commenti impilate tutte in un unico posto | ||
* Risolto il problema relativo alla creazione di un foglio di lavoro tramite `NewSheet` che causava il problema del file, problema correlato [#249](https://github.com/xuri/excelize/issues/249) | ||
|
||
### Prestazione | ||
|
||
* Ottimizzazione delle prestazioni 20% più veloce, risparmio di memoria del 14% sui valori di cella impostati. Vedi [Dati sulle prestazioni](https://github.com/xuri/excelize/wiki#performance-figures) | ||
* Utilizza `github.com/mohae/deepcopy` per copiare in profondità i fogli di lavoro invece della funzione interna "deepcopy" che utilizzava la serializzazione e la deserializzazione [encoding/gob](https://go.dev/blog/gob) |