Commit Graph

943 Commits

Author SHA1 Message Date
oblomov-dev
e9007c05da
New handler (#1446)
* new handler

* update

* update

* update

* update

* update

* fix statefulness

* update

* update

* update
2024-09-24 10:19:25 +02:00
oblomov-dev
6c0843cb06
refactoring debug tools (#1445)
* refactoring debug tools

* update
2024-09-22 16:41:38 +02:00
oblomov-dev
498cdc7fc7
refactoring (#1444) 2024-09-22 14:18:01 +02:00
oblomov-dev
ef4494bdb9
New UI5 frontend (#1443)
* Refactoring due to added Component support, slightly fixed session handl (#1439)

* Refactoring due to added Component support, slightly fixed session handl

* Update src/01/02/z2ui5_cl_core_http_get.clas.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

---------

Co-authored-by: oblomov-dev <102328295+oblomov-dev@users.noreply.github.com>
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* session fix + tokens

* update stateful error

* pagehide for ios devices, beforeunload for desktop and others (#1440)

* fixes

* fixes excpetions

* update

* lint fixes

* replaced root view with app for launchpad  compati

* fix missed latest changes in init - added again

* update index html

* update

* update app

* update

* Update src/01/02/z2ui5_cl_core_http_get.clas.locals_imp.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* Update src/01/02/z2ui5_cl_core_http_get.clas.locals_imp.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* fixes

* lint fixes

* update

* Update src/01/02/z2ui5_cl_core_app.clas.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* Update changelog.txt

* update

* Update src/01/02/z2ui5_cl_core_app.clas.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

---------

Co-authored-by: Michael Zinnöcker <29286643+mzinnoecker@users.noreply.github.com>
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
2024-09-22 13:53:11 +02:00
Francisco Milán
1c3d88fa6a
Add missing parameters to method "step_input" (#1441) 2024-09-22 09:54:09 +02:00
oblomov-dev
4940a26a46
refactoring - filter functions - sticky functions (#1437)
* refactoring - filter fucntions - sticky functions

* update

* udpate

* update
2024-09-17 19:38:43 +02:00
oblomov-dev
1fba55457c
session-stickyness (#1435)
* Added Component and Session Stateful (#1433)

- Added Component support (TODO refactoring sap.z2ui5 and view handling -> instead of .placeAt use mainView of component manifest)
- Added Session Stateful support

*add the following lines to your REST handler in order to support stateful session handling*
'''abap
    if attributes-stateful-switched = abap_true.
      server->set_session_stateful( stateful = attributes-stateful-active ).
    endif.
'''

And here is an ABAP example class for testing session handling
'''abap
"! <p class="shorttext synchronized" lang="en">Session Demo</p>
class z2ui5_cl_demo_app_session definition
  public
  create public.

  public section.
    interfaces z2ui5_if_app.
    data instance_counter type i read-only.
    data check_initialized type abap_bool read-only.
    data session_is_stateful type abap_bool read-only.
    data session_text type string read-only.
  protected section.
  private section.
    methods initialize_view
      importing
        client type ref to z2ui5_if_client.
    methods on_event
      importing
        client type ref to z2ui5_if_client.

    methods set_session_stateful
      importing
        client   type ref to z2ui5_if_client
        stateful type abap_bool.
endclass.

class z2ui5_cl_demo_app_session implementation.
  method z2ui5_if_app~main.
    if check_initialized = abap_false.
      check_initialized = abap_true.
      initialize_view( client ).
    endif.

    on_event( client ).
  endmethod.

  method initialize_view.
    set_session_stateful( client = client stateful = abap_true ).

    data(view) = z2ui5_cl_xml_view=>factory( ).

    data(page) = view->shell( )->page(
      title          = `abap2UI5 - Sample: Sticky Session`
      navbuttonpress = client->_event( 'BACK' )
      shownavbutton  = xsdbool( client->get( )-s_draft-id_prev_app_stack is not initial ) ).

    data(vbox) = page->vbox( ).
    vbox->info_label( text = client->_bind( session_text ) ).

    data(hbox) = vbox->hbox( alignitems = 'Center' ).
    hbox->label( text = 'press button to increment counter in backend session' class = 'sapUiTinyMarginEnd' ).
    hbox->button(
      text  = client->_bind( instance_counter )
      press = client->_event( 'INCREMENT' )
      type = 'Emphasized' ).

    hbox = vbox->hbox( ).
    hbox->button(
      text  = 'End session'
      press = client->_event( 'END_SESSION' ) ).

    hbox->button(
      text  = 'Start session again'
      press = client->_event( 'START_SESSION' ) ).

    client->view_display( view->stringify( ) ).
  endmethod.

  method on_event.
    case client->get( )-event.
      when 'BACK'.
        client->nav_app_leave( ).
      when 'INCREMENT'.
        instance_counter = lcl_static_container=>increment( ).
        client->view_model_update( ).
      when 'END_SESSION'.
        set_session_stateful( client = client stateful = abap_false ).
      when 'START_SESSION'.
        set_session_stateful( client = client stateful = abap_true ).
    endcase.
  endmethod.

  method set_session_stateful.
    client->set_session_stateful( stateful ).
    session_is_stateful = stateful.
    if stateful = abap_true.
      session_text = 'Session ON (stateful)'.
    else.
      session_text = 'Session OFF (stateless)'.
    endif.
    client->view_model_update( ).
  endmethod.
endclass.
'''

* Update z2ui5_cl_core_http_get.clas.abap (#1434)

updated to reflect latest changes (sorry some local changes were los)

* lint fix

* lint fix

* xml fix

---------

Co-authored-by: Michael Zinnöcker <29286643+mzinnoecker@users.noreply.github.com>
2024-09-16 16:45:41 +02:00
oblomov-dev
e9d557737c
refactoring (#1431) 2024-09-15 18:37:38 +02:00
oblomov-dev
fd5183b16b
refactoring (#1430) 2024-09-15 18:00:25 +02:00
oblomov-dev
ae603290cb
Update handler (#1428)
* update handler

* update handler

* update

* lint fixes

* update

* Update src/01/02/z2ui5_cl_core_http_get.clas.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* update

* Update src/01/02/z2ui5_cl_core_http_get.clas.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

---------

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
2024-09-14 10:39:27 +02:00
Christian Günter
b7b464d981
Popup to select: New feature multiselect (#1427)
* popup to select: enable mutliselect

fixup

* allow preselect
2024-09-13 17:20:49 +02:00
Christian Günter
ba47b24f3a
New property title for z2ui5_cl_pop_table (#1426) 2024-09-13 11:54:11 +02:00
Francisco Milán
c83640913d
Preparation for new Demo Flexible sizing - Toolbar (#1419)
* Preparation for new Demo Flexible sizing - Toolbar

* Preparation for new Demo (2)

* Preparation for new Demo (3)

* Preparation for new Demo (4)

* Preparation for new Demo (5)
2024-09-12 09:15:33 +02:00
oblomov-dev
622c19c8b6
Refactoring (#1417)
* refactoring

* update

* Update README.md

* Update README.md

* Update README.md

* Update README.md

* Update README.md

* Update z2ui5_cl_core_http_get2.clas.abap

* lint fix

* update

* Update abaplint.jsonc
2024-09-12 00:35:07 +02:00
oblomov-dev
83fcc9604f
fix namespaces (#1415) 2024-09-11 15:34:46 +02:00
Christian Günter
430db60fdd
add class property to table (#1412) 2024-09-11 15:04:57 +02:00
oblomov-dev
fddf31e8b1
update setSizeLimit (#1398)
* update setSizeLimit

* Update src/02/z2ui5_cl_xml_view.clas.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* update

---------

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
2024-09-09 20:00:41 +02:00
github-actions[bot]
fcda388222
ajson, Automatic Update (#1397)
* [create-pull-request] automated change

* Update README.md

---------

Co-authored-by: oblomov-dev <oblomov-dev@users.noreply.github.com>
Co-authored-by: oblomov-dev <102328295+oblomov-dev@users.noreply.github.com>
2024-09-09 07:37:46 +02:00
oblomov-dev
f01f1ef57e
update hello world (#1392)
* update hello world

* Update README.md
2024-09-08 19:18:19 +02:00
oblomov-dev
71ea2631b6
language version fix (#1389) 2024-09-08 17:25:19 +02:00
oblomov-dev
7f2fe77b37
update typess (#1386) 2024-09-08 09:48:32 +02:00
oblomov-dev
d8bacf4f73
Update lint fixes (#1384)
* update lint fixes

* Update abaplint-abap_cloud_readiness.jsonc

* Update abaplint-abap_cloud_readiness.jsonc
2024-09-07 17:34:17 +02:00
oblomov-dev
38d5362192
Update abaplint.jsonc (#1383)
* Update abaplint.jsonc

* lint fixes

* Update src/01/00/02/z2ui5_cl_abap_api.clas.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* Update src/01/00/02/z2ui5_cl_abap_api.clas.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* abaplint fixes

* Update abaplint.jsonc

* lint fix

---------

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
2024-09-07 16:57:14 +02:00
oblomov-dev
860f03d05e
update ajson mirror (#1379) 2024-09-07 12:56:21 +02:00
oblomov-dev
ec38b0a496
Json time date fix (#1377)
* json time date fix

* update

* update
2024-09-07 09:06:57 +02:00
oblomov-dev
90c680c923
abaplint fixes (#1376)
* abaplint fixes

* update
2024-09-06 15:31:22 +02:00
oblomov-dev
6a6b2ad342
ws extension (#1374)
* ws extension

* update
2024-09-06 14:03:24 +02:00
oblomov-dev
05a05eb03f
fix binding with invalid dates and time (#1373)
Some checks failed
build_downport / build_downport (push) Has been cancelled
* fix binding with invalid dates and time

* update

* update
2024-09-05 10:41:19 +02:00
Francisco Milán
2ee262de29
selected_key as OPTIONAL - method segmented_button (#1370) 2024-09-05 06:57:13 +02:00
oblomov-dev
27f2a3822c
fix url (#1369)
Some checks are pending
build_downport / build_downport (push) Waiting to run
* fix url

* Delete ci/abaplint-max.jsonc

* update versions
2024-09-04 22:21:23 +02:00
oblomov-dev
a93dd6fc16
Update abaplint.jsonc (#1367)
* Update abaplint.jsonc

* Update abaplint.jsonc

* Update abaplint.jsonc

* update

* update
2024-09-04 22:10:48 +02:00
oblomov-dev
31869ba1a2
cleanup (#1368) 2024-09-04 22:01:32 +02:00
oblomov-dev
dd465ed14d
abaplint fixes (#1365) 2024-09-04 21:41:35 +02:00
oblomov-dev
1f68926144
cleanup (#1364) 2024-09-04 21:02:19 +02:00
oblomov-dev
58f9a80553
Cleanup (#1362)
Some checks are pending
build_downport / build_downport (push) Waiting to run
* cleanup

* update

* update

* update links
2024-09-04 10:20:58 +02:00
oblomov-dev
3220f107e0
Cleanup (#1361)
* update naming

* cleanup

* cleanup

* cleanup
2024-09-04 09:35:49 +02:00
oblomov-dev
8fbefa0396
cleanup (#1360)
Some checks are pending
build_downport / build_downport (push) Waiting to run
2024-09-03 23:52:51 +02:00
ABAP for years :)
3df6f3b3c0
Progress Indicator Property Visibility (#1359)
Some checks are pending
build_downport / build_downport (push) Waiting to run
* Progress Indicator Property Visibility

Addes Progress Indicator Property Visibility

* Update src/02/z2ui5_cl_xml_view.clas.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* Update src/02/z2ui5_cl_xml_view.clas.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* renamed zqmcafw_cl_util  to z2ui5_cl_util

---------

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
Co-authored-by: oblomov-dev <102328295+oblomov-dev@users.noreply.github.com>
2024-09-03 09:48:54 +02:00
Francisco Milán
eb07345650
Add 4 parameters to method "header_container" (#1356)
Some checks are pending
build_downport / build_downport (push) Waiting to run
2024-09-01 20:46:56 +02:00
oblomov-dev
ebca4a691a
Cleanup (#1355)
Some checks failed
build_downport / build_downport (push) Has been cancelled
* update package structure

* update name
2024-08-31 12:52:43 +02:00
oblomov-dev
4d394939d1
Data loss feature (#1354)
Some checks are pending
build_downport / build_downport (push) Waiting to run
* Data loss protection with dirty flag (#1352)

* update data loss feature

---------

Co-authored-by: Christian Günter <christianguenter@googlemail.com>
2024-08-31 10:25:20 +02:00
Francisco Milán
59d0bed18a
Add method "tiles" (#1349)
Some checks are pending
build_downport / build_downport (push) Waiting to run
2024-08-30 08:26:04 +02:00
oblomov
25fe147354
small fixes (#1345)
Some checks are pending
build_downport / build_downport (push) Waiting to run
2024-08-29 08:31:28 +02:00
Francisco Milán
2f82cf972c
Add "class" and "press" to method "feed_content" (#1346)
Some checks are pending
build_downport / build_downport (push) Waiting to run
2024-08-28 23:29:06 +02:00
ABAP for years :)
77de686bbc
Update z2ui5_cl_xml_view.clas.abap (#1344)
Some checks are pending
build_downport / build_downport (push) Waiting to run
* Update z2ui5_cl_xml_view.clas.abap

Added tooltip to standard_tree_item

* Update src/02/01/z2ui5_cl_xml_view.clas.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

---------

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
2024-08-28 07:00:52 +02:00
oblomov
f3aa88ce7d
small_fixes_and_setup (#1343)
Some checks are pending
build_downport / build_downport (push) Waiting to run
* small_fixes_and_setup

* update

* Update abaplint.jsonc
2024-08-27 17:11:07 +02:00
Francisco Milán
b1f245511a
Add "class" to "slide_tile" (#1342)
Some checks are pending
build_downport / build_downport (push) Waiting to run
2024-08-27 08:02:14 +02:00
Francisco Milán
2bfccd0f74
"object_header" - Add "class" and fix "imageShape" (#1341)
Some checks are pending
build_downport / build_downport (push) Waiting to run
2024-08-26 23:26:12 +02:00
Francisco Milán
90f7e63b4c
Add "press" and "class" to "image_content" (#1340) 2024-08-26 19:42:52 +02:00
oblomov
bab4ae66d0
correct descriptions (#1338)
* correct descriptions

* Update src/01/04/z2ui5_cl_cc_scrolling.clas.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

---------

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
2024-08-26 17:40:08 +02:00
oblomov
a8172d28ae
Refactoring core (#1334)
* fix-file-uploader

* assign obsolete to seperated repository

* update

* refactoring

* Update README.md

* Update README.md

* Update README.md
2024-08-26 16:43:03 +02:00
oblomov
a11eb7317c
small warning fixes (#1332)
Some checks are pending
build_downport / build_downport (push) Waiting to run
2024-08-26 08:07:43 +02:00
oblomov
c70baa86f2
split custom controls (#1330)
* split custom controls

* update

* Update package.json
2024-08-26 07:15:34 +02:00
oblomov
0e7ba63842
Refactoring (#1329)
Some checks are pending
build_downport / build_downport (push) Waiting to run
* refactoring

* update

* update

* refactoring folder

* update

* update

* update

* package description

* update

* refactoring
2024-08-25 18:24:52 +02:00
oblomov
d9ae1b2f3f
Refactoring (#1326)
Some checks are pending
build_downport / build_downport (push) Waiting to run
* refactoring

* renaming

* Update changelog.txt
2024-08-24 17:07:25 +02:00
oblomov
4ec0ad4531
Bugfix color control (#1325)
Some checks are pending
build_downport / build_downport (push) Waiting to run
* bugfix color control

* change hello world app package
2024-08-24 10:11:19 +02:00
oblomov
bdb985af6c
bugfixes and refactoring (#1323)
* bugfixes and refactoring

* update

* update package structure

* update

* update

* update package assignment

* update

* update

* update

* update package structure
2024-08-24 09:07:34 +02:00
abapsheep
1b167d0f47
Update (#1319)
* Update

Fix Layout
Popup to Select with Layout (first Draft)

* Update

* Update

* Update z2ui5_cl_pop_to_sel_w_layout.clas.abap

* Update z2ui5_cl_pop_to_sel_w_layout.clas.xml

* Update and rename z2ui5_cl_pop_to_sel_w_layout.clas.abap to z2ui5_cl_pop_to_sel_w_l.clas.abap

* Rename z2ui5_cl_pop_to_sel_w_layout.clas.xml to z2ui5_cl_pop_to_sel_w_l.clas.xml

* Update z2ui5_cl_pop_to_sel_w_l.clas.abap

---------

Co-authored-by: Viktor Hoffmann <Viktor.Hoffmann@swisskrono.com>
Co-authored-by: oblomov <102328295+oblomov-dev@users.noreply.github.com>
2024-08-24 07:59:02 +02:00
ABAP for years :)
ed90830b31
Update z2ui5_cl_xml_view.clas.abap: UI ColorPicker (#1321)
Some checks are pending
build_downport / build_downport (push) Waiting to run
2024-08-23 23:59:19 +02:00
Christian Wildt
18a5299813
Added shell bar events (#1320)
Some checks are pending
build_downport / build_downport (push) Waiting to run
2024-08-23 11:28:41 +02:00
abapsheep
e55777569e
Update (#1318)
Some checks are pending
build_downport / build_downport (push) Waiting to run
* Update

Error with DeepStructures
Fixes in Layout

* Update

* Update

---------

Co-authored-by: Viktor Hoffmann <Viktor.Hoffmann@swisskrono.com>
2024-08-22 11:52:47 +02:00
oblomov
b3af7e6ba4
cleanup (#1317)
Some checks are pending
build_downport / build_downport (push) Waiting to run
2024-08-21 15:53:25 +02:00
Christian Wildt
0fb093d473
Added Shell Bar (#1316) 2024-08-21 12:14:53 +02:00
Francisco Milán
c66269b6e5
Add 3 parameters to method currency (#1315)
Some checks failed
build_downport / build_downport (push) Has been cancelled
2024-08-19 08:59:09 +02:00
Francisco Milán
41302f8825
Add method field (#1314)
Some checks are pending
build_downport / build_downport (push) Waiting to run
2024-08-18 09:30:29 +02:00
Francisco Milán
0fe81ae01c
Add press to numeric_content (#1313)
Some checks failed
build_downport / build_downport (push) Has been cancelled
2024-08-15 19:24:47 +02:00
Francisco Milán
6745789169
Add property id to step_input & press to news_content (#1311)
Some checks are pending
build_downport / build_downport (push) Waiting to run
* Add property id to step_input (1)

* Add press to news_content (1)

---------

Co-authored-by: oblomov <102328295+oblomov-dev@users.noreply.github.com>
2024-08-15 10:21:14 +02:00
oblomov
b9ee90644b
fix fixval (#1312)
* fix fixval

* Update src/01/01/z2ui5_cl_util_api.clas.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* Update src/01/01/z2ui5_cl_util_api.clas.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* update lint fixes

---------

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
2024-08-15 10:07:29 +02:00
oblomov
9fb082ecd5
Update README.md (#1309)
* Update README.md

* Update z2ui5_cl_core_app_startup.clas.abap

* Update README.md
2024-08-14 16:19:37 +02:00
Francisco Milán
b3386bb2c0
Add method content_areas (#1308)
Some checks failed
build_downport / build_downport (push) Has been cancelled
* Add method content_areas (1)

* Add method content_areas (2)

* Add method content_areas (3)
2024-08-14 08:22:25 +02:00
Francisco Milán
612262554a
Add arialabelledby and ariadescribedby to button (#1307)
Some checks are pending
build_downport / build_downport (push) Waiting to run
2024-08-13 08:01:20 +02:00
LadwigDev
63ba7224f2
Addition of the Side Navigation (#1306)
Some checks failed
build_downport / build_downport (push) Has been cancelled
2024-08-10 19:10:11 +02:00
Francisco Milán
c3ff2263d2
Add properties to grid and generic_tag (#1303)
Some checks failed
build_downport / build_downport (push) Has been cancelled
2024-08-08 08:05:15 +02:00
Francisco Milán
68f536993f
Add 3 methods to Z2UI5_CL_XML_VIEW (#1302)
Some checks are pending
build_downport / build_downport (push) Waiting to run
2024-08-07 19:27:09 +02:00
Francisco Milán
7643ed49a6
Add shrinkfactor property to flex_item_data (#1300)
Some checks are pending
build_downport / build_downport (push) Waiting to run
2024-08-07 08:40:56 +02:00
Francisco Milán
d45bcbea44
Add AriaDescribedBy to input (#1298)
Some checks failed
build_downport / build_downport (push) Has been cancelled
2024-07-31 01:00:42 +02:00
Francisco Milán
0d7a513006
Add new nethod & missing properties (#1297)
Some checks are pending
build_downport / build_downport (push) Waiting to run
* Add new nethod & missing properties (1)

-Add new method invisible text
-Add missing properties to toolbar_spacer
-Add missing properties to input

* Add new nethod & missing properties (2)
2024-07-30 09:00:53 +02:00
Francisco Milán
a17acc3494
Add Splitter Method (#1295)
Some checks failed
build_downport / build_downport (push) Has been cancelled
2024-07-28 22:14:05 +02:00
oblomov
ac7cdf5aac
new release 1.132.0 (#1294)
Some checks are pending
build_downport / build_downport (push) Waiting to run
* new release 1.132.0

* Update z2ui5_if_app.intf.abap
2024-07-28 14:09:54 +02:00
Francisco Milán
92c51b921f
Add missing property to flex_item_data (#1293)
Some checks are pending
build_downport / build_downport (push) Waiting to run
* Add missing property to flex_item_data (1)

* Add missing property to flex_item_data (2)
2024-07-28 02:25:43 +02:00
Francisco Milán
1741995f9e
Fix bug in method flex_box (#1292)
Some checks failed
build_downport / build_downport (push) Has been cancelled
2024-07-26 08:27:29 +02:00
Christian Wildt
aa07556c81
Added property id to OverflowToolbarButton (#1291)
Some checks are pending
build_downport / build_downport (push) Waiting to run
2024-07-25 19:23:14 +02:00
Christian Wildt
8b7877335e
Fixed naming for Avatar displaySize property (#1290)
Some checks are pending
build_downport / build_downport (push) Waiting to run
2024-07-25 17:54:15 +02:00
Christian Wildt
3a4268b662
Return correct reference at generic tile (#1289) 2024-07-25 12:19:34 +02:00
Francisco Milán
4ebabee17e
Add missing methods feed_content & news_content (#1288)
Some checks are pending
build_downport / build_downport (push) Waiting to run
2024-07-24 21:42:19 +02:00
Christian Günter
c1342a5c71
ui_table: add missing class property (#1287)
Some checks failed
build_downport / build_downport (push) Has been cancelled
2024-07-23 17:33:17 +02:00
Francisco Milán
41c66c9cc2
Add missing properties to grid_data (#1281)
* Add missing properties to grid_data (1)

* Add missing properties to grid_data (2)
2024-07-23 09:40:28 +02:00
Francisco Milán
f927d97bad
Add missing property to checkbox (#1280)
Some checks failed
build_downport / build_downport (push) Has been cancelled
2024-07-21 00:00:53 +02:00
Francisco Milán
d3551e416a
Add missing properties to grid and tile_content (#1279) 2024-07-19 12:11:10 +02:00
Francisco Milán
4d971158be
Add missing method toolbar_layout_data (#1277)
Some checks failed
build_downport / build_downport (push) Has been cancelled
* Add missing method toolbar_layout_data (1)

* Add missing method toolbar_layout_data (2)
2024-07-17 10:59:54 +02:00
Francisco Milán
148b3d16bc
Add missing properties to multi_combobox (#1276)
Some checks are pending
build_downport / build_downport (push) Waiting to run
2024-07-16 23:51:38 +02:00
Francisco Milán
61d2c3f73a
Add missing properties to multi_input (#1275)
Some checks are pending
build_downport / build_downport (push) Waiting to run
2024-07-16 00:46:36 +02:00
Francisco Milán
578e8c0f44
Fix bug in method rating_indicator (#1274)
Some checks are pending
build_downport / build_downport (push) Waiting to run
2024-07-15 09:17:30 +02:00
Christian Günter
b56ef6d1e7
add missing property to date_range_selection (#1270)
Some checks are pending
build_downport / build_downport (push) Waiting to run
Co-authored-by: oblomov <102328295+oblomov-dev@users.noreply.github.com>
2024-07-13 12:58:43 +02:00
oblomov
d6ea61aa7c
short http get method (#1268) 2024-07-13 12:53:38 +02:00
Francisco Milán
28948dfeb1
Add class property to numeric_content (#1269)
* Add class property to numeric_content (1)

* Add class property to numeric_content (2)
2024-07-13 10:45:22 +02:00
oblomov
580e366f45
bugfix mapper comparison (#1265)
Some checks failed
build_downport / build_downport (push) Has been cancelled
2024-07-11 11:05:10 +02:00
Christian
c47f9ee7c1
Fix filter walk order for arrays (based on array index) (#1261)
Some checks failed
build_downport / build_downport (push) Has been cancelled
* Fix filter walk order for arrays

Fix filter walk order for arrays (based on array index)

* removed empty line
2024-07-09 15:39:47 +02:00
Christian Günter
cda48f9db7
add class property to simple_form (#1259)
Some checks are pending
build_downport / build_downport (push) Waiting to run
2024-07-08 21:45:28 +02:00
Francisco Milán
acdcb293bc
Add missing properties to Slider (#1255)
Some checks failed
build_downport / build_downport (push) Has been cancelled
2024-07-06 16:32:16 +02:00
Christian Günter
4b566c8215
add more class properties (#1256) 2024-07-06 16:29:34 +02:00
Christian Günter
d71ee9caff
Add missing 'class' property to search_field (#1251) 2024-07-04 11:24:43 +02:00
Francisco Milán
0e5d9633fe
Adding Method action_list_item (#1250) 2024-07-04 09:23:59 +02:00
Christian Günter
a2f0da2cb6
downport to 7.52 syntax (#1246)
Co-authored-by: oblomov <102328295+oblomov-dev@users.noreply.github.com>
2024-07-03 20:48:48 +02:00
oblomov
7819e2d476
Bugfix and new release (#1247)
* bugfix and new release

* Update changelog.txt
2024-07-03 20:44:27 +02:00
abapsheep
c83ac391eb
Various bug fixes (#1243) 2024-07-02 13:17:50 +02:00
ABAP for years :)
62b2f195e4
Date Range Selection (#1241)
Some checks failed
build_downport / build_downport (push) Has been cancelled
2024-07-01 11:28:03 +02:00
Francisco Milán
4bcdfa9433
Adding attributes to Radio Button and Radio Button Group (#1237)
Some checks failed
build_downport / build_downport (push) Has been cancelled
* Close Button and Custom Icons for Message Strip Control

* Adding attributes to Radio Button and Radio Button Group

* Adding attributes to Radio Button Id and Radio Button Group (2)

---------

Co-authored-by: oblomov <102328295+oblomov-dev@users.noreply.github.com>
2024-06-29 19:48:25 +02:00
oblomov
deba481cce
fixes (#1238)
* fixes

* Update z2ui5_cl_stmpncfctn_api.clas.abap
2024-06-29 19:31:14 +02:00
oblomov
aeaaa3406f
simplify http handler call (#1233)
Some checks failed
build_downport / build_downport (push) Has been cancelled
* simplify http handler call

* Update src/02/z2ui5_cl_http_handler.clas.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* Update src/02/z2ui5_cl_http_handler.clas.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

---------

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
2024-06-27 01:24:45 +02:00
oblomov
43d9524e6a
Simplify method call http handler (#1232)
* simplify method call http handler

* Update README.md

* Update src/02/z2ui5_cl_http_handler.clas.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* Update src/02/z2ui5_cl_http_handler.clas.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

---------

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
2024-06-27 01:09:16 +02:00
abapsheep
fe3efc9550
Update Layout and Sample (#1230)
Some checks are pending
build_downport / build_downport (push) Waiting to run
2024-06-25 12:46:38 +02:00
ABAP for years :)
22e9836b79
Event on Slider Element (#1229)
Added change Event on Slider UI
2024-06-25 10:05:24 +02:00
Francisco Milán
3a7e2ed98a
Close Button and Custom Icons for Message Strip Control (#1224) 2024-06-22 10:15:01 +02:00
Francisco Milán
7719c23a0f
Enable Resizing for Step Input Control (#1222) 2024-06-21 07:56:54 +02:00
abapsheep
36dde640d3
Transpor App fix (#1219)
Co-authored-by: Viktor Hoffmann <Viktor.Hoffmann@swisskrono.com>
2024-06-20 14:09:48 +02:00
abapsheep
26d2855a40
Update Layout and Transport Request App for Customizing (#1218)
* Update Layout

* z2ui5_cl_pop_layout_v2.clas.abap aktualisieren

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* z2ui5_cl_pop_layout_v2.clas.abap aktualisieren

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* z2ui5_cl_pop_layout_v2.clas.abap aktualisieren

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* z2ui5_cl_pop_layout_v2.clas.abap aktualisieren

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* z2ui5_cl_pop_layout_v2.clas.abap aktualisieren

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* z2ui5_cl_pop_layout_v2.clas.abap aktualisieren

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* z2ui5_cl_pop_layout_v2.clas.abap aktualisieren

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* Update src/02/02/z2ui5_cl_pop_layout_v2.clas.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* Update src/02/02/z2ui5_cl_pop_transport.clas.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* Update src/02/02/z2ui5_cl_pop_transport.clas.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* Update Transport and Layout

* Layout and Transport APP Fix

---------

Co-authored-by: Viktor Hoffmann <Viktor.Hoffmann@swisskrono.com>
Co-authored-by: oblomov <102328295+oblomov-dev@users.noreply.github.com>
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
2024-06-20 11:45:53 +02:00
oblomov
6c9a4bcbc6
update startup app (#1217) 2024-06-18 14:29:27 +02:00
abapsheep
a504911508
Update rtti_get_t_attri_by_table_name (#1211)
Co-authored-by: Viktor Hoffmann <Viktor.Hoffmann@swisskrono.com>
2024-06-17 14:14:52 +02:00
oblomov
f60e44c178
lp title fix (#1210) 2024-06-17 12:40:33 +02:00
abapsheep
7552e3a975
Update Layout (#1199) 2024-06-14 16:18:00 +02:00
abapsheep
0d09306f30
Name Change of Buttons in Layout (#1198)
* Update Layout

* Name Cahne of Buttons in Layout App

---------

Co-authored-by: Viktor Hoffmann <Viktor.Hoffmann@swisskrono.com>
2024-06-14 09:33:37 +02:00
oblomov
1694c7bcf3
Refactoring layout (#1197)
* refactoring layout

* update package assignment
2024-06-13 23:58:37 +02:00
abapsheep
0f8617da98
Update Layout (#1196) 2024-06-13 15:20:23 +02:00
oblomov
fb10027bed
fix steampuncification (#1195)
* fix steampuncification

* update
2024-06-13 15:07:24 +02:00
oblomov
dcc03a350b
fixes f4 help (#1192) 2024-06-13 14:21:11 +02:00
Christian Günter
15d72e7e6a
downport to 752 compatible syntax (#1190) 2024-06-13 12:10:30 +02:00
abapsheep
ece1f8016c
Fix F4-Help (#1189)
Co-authored-by: Viktor Hoffmann <Viktor.Hoffmann@swisskrono.com>
2024-06-13 10:40:20 +02:00
oblomov
50f1e42f79
Fix new release (#1187)
* fix new release

* Update changelog.txt
2024-06-13 09:08:43 +02:00
oblomov
5fd16e1e5f
fix dfies (#1186) 2024-06-12 21:24:01 +02:00
choper725
d2fe17a7e7
form validator feature - WIP (#1185)
* form validator feature - WIP

as of work of Mauricio Lauffer
https://github.com/mauriciolauffer/openui5-validator/tree/master
adapted by choper725

* fix

* fix again

* abaplint fix

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

---------

Co-authored-by: oblomov <102328295+oblomov-dev@users.noreply.github.com>
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
2024-06-12 21:17:04 +02:00
abapsheep
64f4315612
New Layout Update (#1183)
* New Layout Update

* Layout Update

* Update new Layout

* Update src/01/01/z2ui5_cl_util_api.clas.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* Update New Layout

* Update new Layout

* Update and F4-Help

* Update src/02/02/z2ui5_cl_pop_f4_help.clas.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* Update

* Update

* Update abaplint.jsonc

* Update abaplint.jsonc

* fix unit tests

* fix unit test

* fix

---------

Co-authored-by: Viktor Hoffmann <Viktor.Hoffmann@swisskrono.com>
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
Co-authored-by: oblomov <102328295+oblomov-dev@users.noreply.github.com>
2024-06-12 21:12:24 +02:00
abapsheep
3a37a698ad
Update New Layout (#1181) 2024-06-11 12:29:16 +02:00
oblomov
19a24af800
fix wizard (#1180) 2024-06-11 12:09:12 +02:00
oblomov
fba8b8c548
Simplification binding logic and message handling (#1179)
* simplification binding logic and message handling

* fix
2024-06-11 11:20:30 +02:00
abapsheep
c5f1960f17
New Frontend Infos (#1178)
* New Layout Fix

* lint fix

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* lint fix

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* New Popup - Fix

* Update src/02/02/z2ui5_cl_pop_layout_v2.clas.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* New Layout

* Update abaplint.jsonc

* Added additional Frontend Infos

-Device Type
-Resolution

* Update Frontend Infos

---------

Co-authored-by: Viktor Hoffmann <Viktor.Hoffmann@swisskrono.com>
Co-authored-by: oblomov <102328295+oblomov-dev@users.noreply.github.com>
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
2024-06-11 10:35:43 +02:00
abapsheep
2bba19ad87
New Layout Fix (#1173)
* New Layout Fix

* lint fix

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* lint fix

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* New Popup - Fix

* Update src/02/02/z2ui5_cl_pop_layout_v2.clas.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

* New Layout

* Update abaplint.jsonc

---------

Co-authored-by: Viktor Hoffmann <Viktor.Hoffmann@swisskrono.com>
Co-authored-by: oblomov <102328295+oblomov-dev@users.noreply.github.com>
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
2024-06-10 16:57:59 +02:00
ABAP for years :)
468c62eea1
Wizard Branching Steps (#1174)
* Wizard Branching Steps

Adding      subsequentSteps to WizardStep

* Update z2ui5_cl_xml_view.clas.abap
2024-06-10 16:04:51 +02:00
choper725
7d79bd6161
two_way binding based on param in core_types (#1172) 2024-06-07 21:59:55 +02:00
oblomov
60710d01e6
util_rtti fix (#1169)
* util_rtti fix

* fix

* fix
2024-06-07 16:39:39 +02:00
abapsheep
39eac5c23c
New Layout (#1167)
Co-authored-by: Viktor Hoffmann <Viktor.Hoffmann@swisskrono.com>
2024-06-07 13:29:15 +02:00
oblomov
29dc9b6f65
small adjustments (#1165)
* small adjustments

* lint fixes
2024-06-07 11:48:41 +02:00
Christian Günter
3dea040949
new property visible for message_strip (#1163) 2024-06-07 07:47:06 +02:00
oblomov
a78952d43d
focus + v2.x fixes (#1160)
* focus + v2.x fixes

* fix debugger
2024-06-06 21:09:03 +02:00
oblomov
31ad83b574
focus fix (#1159) 2024-06-06 15:00:22 +02:00
choper725
629bd39404
various changes (#1156)
xml view
http get
client intf
2024-06-05 01:30:10 +02:00
oblomov
7035dea63d
update link (#1153)
* update link

* Update src/01/03/z2ui5_cl_core_app_startup.clas.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>

---------

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
2024-06-01 22:13:43 +02:00
oblomov
77688f247e
update contact (#1150) 2024-06-01 15:56:35 +02:00
oblomov
aee3f32b9e
new release 1.290.0 (#1148)
* Update z2ui5_if_app.intf.abap

* Update changelog.txt
2024-06-01 15:26:58 +02:00
choper725
fa720249d4
xml view updates (#1141) 2024-05-27 08:21:16 +02:00
oblomov
f19b23f35c
model fixes (#1140)
* model fixes

* update device demo
2024-05-24 09:51:34 +02:00
choper725
59b44b0c05
update xml view (#1139)
* update xml view

* fix
2024-05-22 22:21:57 +02:00
oblomov
a53295c8d2
Launchpad and data binding fixes (#1133)
* launchpad and data binding fixes

* fixes

* fix naming

* fix binding

* lint fixes
2024-05-22 14:19:39 +02:00
oblomov
56f518ee5c
new release (#1130)
* new release

* Update changelog.txt
2024-05-20 23:02:28 +02:00
oblomov
888802e242
launchpad fixes (#1129) 2024-05-20 14:55:10 +02:00
choper725
339c749ccb
xml view updates (#1128)
* xml updates

* update
2024-05-17 09:49:35 +02:00
oblomov
cb9320243d
fix binding (#1125)
* fix binding

* update
2024-05-13 10:38:20 +02:00
oblomov
da5e66afc1
launchpad fix (#1124) 2024-05-10 09:42:11 +02:00
choper725
75b4f4114b
message toast fix - xml additions - styled popover (#1122) 2024-05-06 23:01:44 +02:00
oblomov
5dc45966a2
small adjustments - steampuncification (#1121)
* small adjustments

* update

* update
2024-05-06 13:53:50 +02:00
oblomov
520a7f83b7
New release (#1119)
* new release

* Update changelog.txt
2024-05-05 12:19:44 +02:00
oblomov
50d15cdb8a
cleanup (#1118) 2024-05-05 12:07:11 +02:00
Lars Hvam
f014602e99
fix top level package description (#1117) 2024-05-05 11:11:48 +02:00
choper725
a1467bacc5
tidy t_arg object (#1116) 2024-05-04 12:13:13 +02:00
oblomov
7fb2e5687c
t_arg handling with objects (#1115) 2024-05-03 00:32:48 +02:00
choper725
ae87b8741b
status indicator xml view (#1113) 2024-05-01 21:39:16 +02:00
choper725
96190bc009
generic messageBox implement add properties (#1111) 2024-04-29 23:15:06 +02:00
choper725
1dd11a1495
change style of toast from predefined class (#1110) 2024-04-29 19:12:08 +02:00
choper725
7904dad027
impleement full message toast properties (#1109) 2024-04-29 11:11:15 +02:00
choper725
0ed42cd029
xml view additions + openui5 sdk global error (#1108) 2024-04-29 03:12:44 +02:00
abapsheep
738c959e72
RangeSlider Parameters (#1107) 2024-04-25 15:01:42 +02:00
oblomov
7d5c4a1ccc
renaming feature (#1104)
* Update abaplint_rename.jsonc

* update renaming

* Delete src/01/01/z2ui5_t_util_01.tabl.xml

* Delete src/01/02/01/z2ui5_t_core_01.tabl.xml

* Update abaplint_rename.jsonc

* Update abaplint_rename.jsonc

* update

* Delete src/01/02/01/z2ui5_cl_core_dissolve_srv.clas.xml

* Delete src/01/02/01/z2ui5_cl_core_dissolve_srv.clas.testclasses.abap

* update

* Delete src/01/05/z2ui5_cl_cc_demo_output.clas.abap

* Delete src/01/05/z2ui5_cl_cc_demo_output.clas.xml

* Delete src/01/05/z2ui5_cl_cc_camera_picture.clas.abap

* Delete src/01/05/z2ui5_cl_cc_camera_picture.clas.xml

* update

* Delete src/01/05/z2ui5_cl_cc_message_manager.clas.abap

* Delete src/01/05/z2ui5_cl_cc_message_manager.clas.xml

* update

* update

* fix
2024-04-24 09:02:38 +02:00
oblomov
eb00ce74a6
new release (#1102)
* Update changelog.txt

* Update z2ui5_if_app.intf.abap
2024-04-24 07:41:58 +02:00
choper725
08c15390bf
spreadsheet cc sdk check fixes (#1101) 2024-04-24 00:00:28 +02:00
abapsheep
1cfc2b6652
ui.Column (#1098)
Added Parameters

Co-authored-by: Viktor Hoffmann <Viktor.Hoffmann@swisskrono.com>
Co-authored-by: oblomov <102328295+oblomov-dev@users.noreply.github.com>
2024-04-22 10:36:27 +02:00
choper725
e8131d97cd
update spreadsheet cc (#1095) 2024-04-21 22:34:09 +02:00
oblomov
3156c43cc3
Shorten length files (#1094)
* update

* Delete src/02/02/z2ui5_cl_popup_get_range_multi.clas.abap

* Delete src/02/02/z2ui5_cl_popup_get_range_multi.clas.xml

* Update abaplint_rename.json
2024-04-21 16:25:31 +02:00
oblomov
7d797349f6
Shorten length filenames (#1092)
* shorten length filenames

* update

* cleanup

* cleanup

* update action

* action

* action

* update
2024-04-21 16:14:44 +02:00
abapsheep
cc48062d7f
Updated RowMode for ui.Table (#1090) 2024-04-19 13:20:09 +02:00
oblomov
5b407b1058
fix binding (#1088) 2024-04-18 15:25:37 +02:00
oblomov
9856bc10f0
new release (#1086) 2024-04-17 22:46:29 +02:00
oblomov
13120c3637
Fix binding (#1085)
* fix binding

* Update changelog.txt
2024-04-17 22:38:55 +02:00
Christian Günter
04958e02fa
fix CX_SY_DYN_CALL_ILLEGAL_TYPE (#1083) 2024-04-16 20:15:34 +02:00
Christian Günter
cef8f1c9c8
more fixes for renaming (#1082)
* more fixes for renaming

* cleanup

* fix rtti_get_intfname_by_ref
2024-04-16 18:46:38 +02:00
Christian Günter
79c078021b
catch cx_sy_rtti_syntax_error (#1081) 2024-04-16 17:31:57 +02:00
Christian Günter
b9177d402b
Use static types instead of magic constants (#1079)
* Use static types instead of magic constants

* fixup

* Update z2ui5_cl_core_app_startup.clas.abap

---------

Co-authored-by: oblomov <102328295+oblomov-dev@users.noreply.github.com>
2024-04-16 17:02:21 +02:00
oblomov
45ec0db10f
renaming fixes (#1080) 2024-04-16 16:54:07 +02:00
oblomov
40a6466c2d
renaming fixes (#1078) 2024-04-16 16:28:54 +02:00
choper725
a0feddaa8f
interactive charts xml property add (#1075) 2024-04-13 10:11:58 +02:00
ABAP for years :)
8ceb1bf127
Update z2ui5_cl_xml_view.clas.abap (#1073)
Added UI Element Slider
2024-04-12 13:36:01 +02:00
choper725
4995ef7a24
spreadsheet columnconfig as a property of xml view (#1070)
add column config array to custom control as a binded table instead of local json string.
(not breaking - kept the previous implementation version active as well)

Co-authored-by: oblomov <102328295+oblomov-dev@users.noreply.github.com>
2024-04-11 09:57:24 +02:00
Josh Elliott
9230f2013a
add properties to charts (#1069) 2024-04-11 09:54:08 +02:00
choper725
db6df23594
few updaes + download b64 file event client functi (#1068)
update CC
add download B64 event frontend
2024-04-10 21:25:42 +02:00
oblomov
6cf397e986
fix binding (#1067) 2024-04-09 17:54:33 +02:00
abapsheep
9b882043ab
Update z2ui5_cl_xml_view.clas.abap (#1066)
Added Menu Button
2024-04-09 16:41:28 +02:00
oblomov
45ee905bca
fix binding (#1065)
* fix binding

* fix downport
2024-04-09 15:50:03 +02:00
choper725
581e8da68c
update xml ui.table (#1062) 2024-04-08 09:16:41 +02:00
oblomov
4e0d1e23b2
add displayedbars property (#1061) 2024-04-06 12:56:10 +02:00
oblomov
26977a6214
Add unit test (#1060)
* add unit test

* lint fixes
2024-04-05 18:07:14 +02:00
oblomov
78a4780ead
update version (#1054) 2024-04-01 17:07:24 +02:00