mirror of
https://github.com/abap2xlsx/abap2xlsx.git
synced 2025-05-05 11:06:15 +08:00
release7.15.0 (#957)
* release7.15.0 * Update changelog.txt (Check demo regressions) * abap2xlsx version made public to be used in APACK Co-authored-by: Abo <andrea@borgia.bo.it>
This commit is contained in:
parent
7fa137bc94
commit
4662dc85f4
|
@ -8,6 +8,49 @@ Legend
|
||||||
+ : added
|
+ : added
|
||||||
- : removed
|
- : removed
|
||||||
|
|
||||||
|
2022-01-08 v7.15.0
|
||||||
|
------------------
|
||||||
|
! Refactor ABAP Cloud: change REFRESH to CLEAR
|
||||||
|
* Prevent row height zero
|
||||||
|
+ New parameter ip_columnrow in SET_CELL and other methods
|
||||||
|
! Refactor ABAP Cloud: remove use of DTEL SYLANGU and DTEL GUID_16
|
||||||
|
! Refactor ABAP Cloud: remove use of cl_abap_conv_out_ce=>uccpi
|
||||||
|
! Refactor ABAP Cloud: move converter classes to not_cloud package
|
||||||
|
+ Check demo regressions
|
||||||
|
! Refactor ABAP Cloud: change FLOAT to F
|
||||||
|
! Refactor ABAP Cloud: remove TYPE-POOLS statements
|
||||||
|
! Refactor ABAP Cloud: change SYTABIX to I
|
||||||
|
! Lint rule to reject commented code / commented code removed
|
||||||
|
+ Add column for photographer in zdemo_calendar
|
||||||
|
! Lint rule to reject code not in keyword_case upper
|
||||||
|
! Refactor ABAP Cloud: use new collection classes
|
||||||
|
+ Allow more than 255 sheets per workbook
|
||||||
|
! Refactor ABAP Cloud: Domain for ZEXCEL_SHEET_TITLE
|
||||||
|
* Demo WebDynpro: ICF, button text, MIME type
|
||||||
|
! Refactor ABAP Cloud: ddic, fix UUID and GUID_16
|
||||||
|
* Typo in code: hasehd -> hashed
|
||||||
|
! Refactor ABAP Cloud: MOVE statements
|
||||||
|
! Refactor ABAP Cloud: remove DTEL INTTYPE
|
||||||
|
* After BIND_TABLE no columns in object
|
||||||
|
+ Change_area_style (same as change_cell_style, but for area)
|
||||||
|
+ Customizable demo 25 + backend in demo 37
|
||||||
|
* Reflect new abap2xlsx project URL
|
||||||
|
* Fix enhancement categories of several structures
|
||||||
|
* Fix links after org. move
|
||||||
|
! Refactor method change_cell_style in zcl_excel_worksheet
|
||||||
|
* Correcting broken links after moving of repo
|
||||||
|
* Reader fails for workbook with chart
|
||||||
|
+ Worksheet columns right-to-left
|
||||||
|
* README.md, update urls
|
||||||
|
* Huge writer error height/hight and fit to page
|
||||||
|
! Refactor ABAP Cloud: remove use of DOMA INT2
|
||||||
|
! Refactor ABAP Cloud: remove use of DTEL DSTRING
|
||||||
|
* Huge reader reading cells multiple styles
|
||||||
|
! Pretty print
|
||||||
|
* Add exception handling
|
||||||
|
! Split convert_column2alpha
|
||||||
|
+ SET_AREA/SET_AREA_FORMULA: set value or formula for whole area instea… …
|
||||||
|
|
||||||
2021-11-11 v7.14.0
|
2021-11-11 v7.14.0
|
||||||
------------------
|
------------------
|
||||||
+ changelog
|
+ changelog
|
||||||
|
|
|
@ -13,6 +13,7 @@ CLASS zcl_excel DEFINITION
|
||||||
DATA legacy_palette TYPE REF TO zcl_excel_legacy_palette READ-ONLY .
|
DATA legacy_palette TYPE REF TO zcl_excel_legacy_palette READ-ONLY .
|
||||||
DATA security TYPE REF TO zcl_excel_security .
|
DATA security TYPE REF TO zcl_excel_security .
|
||||||
DATA use_template TYPE abap_bool .
|
DATA use_template TYPE abap_bool .
|
||||||
|
CONSTANTS version TYPE c LENGTH 10 VALUE '7.15.0'. "#EC NOTEXT
|
||||||
|
|
||||||
METHODS add_new_autofilter
|
METHODS add_new_autofilter
|
||||||
IMPORTING
|
IMPORTING
|
||||||
|
@ -158,7 +159,6 @@ CLASS zcl_excel DEFINITION
|
||||||
DATA worksheets TYPE REF TO zcl_excel_worksheets .
|
DATA worksheets TYPE REF TO zcl_excel_worksheets .
|
||||||
PRIVATE SECTION.
|
PRIVATE SECTION.
|
||||||
|
|
||||||
CONSTANTS version TYPE c LENGTH 10 VALUE '7.14.0'. "#EC NOTEXT
|
|
||||||
DATA autofilters TYPE REF TO zcl_excel_autofilters .
|
DATA autofilters TYPE REF TO zcl_excel_autofilters .
|
||||||
DATA charts TYPE REF TO zcl_excel_drawings .
|
DATA charts TYPE REF TO zcl_excel_drawings .
|
||||||
DATA default_style TYPE zexcel_cell_style .
|
DATA default_style TYPE zexcel_cell_style .
|
||||||
|
|
|
@ -23,7 +23,7 @@ CLASS zcl_excel_apack IMPLEMENTATION.
|
||||||
|
|
||||||
descriptor-group_id = 'github.com/abap2xlsx/abap2xlsx'.
|
descriptor-group_id = 'github.com/abap2xlsx/abap2xlsx'.
|
||||||
descriptor-artifact_id = 'abap2xlsx'.
|
descriptor-artifact_id = 'abap2xlsx'.
|
||||||
descriptor-version = '7.14.0'.
|
descriptor-version = zcl_excel=>version.
|
||||||
descriptor-repository_type = 'abapGit'.
|
descriptor-repository_type = 'abapGit'.
|
||||||
descriptor-git_url = 'https://github.com/abap2xlsx/abap2xlsx.git'.
|
descriptor-git_url = 'https://github.com/abap2xlsx/abap2xlsx.git'.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user