3

Changelog

v1.24.4 - 2024-06-24 - Flat Sun

Focus in this release has been on improving and refactoring frontend code, adding UI features such as column and row hiding and locking through Visibility and Position meta classes. Other UI related features, such as supporting the height and width of individual cells have also been implemented, allowing for column and row span functionality.

Additional frontend changes include adding a marker, which allows cells to be selected and improves the way input is passed on to underlying UI cell content. This allows for better widget and chart functionality among other improvements for code that wishes to extend the frontend functionality.

Finally, a more flexible approach is now supported around providing custom HTML/CSS/JS allowing for alternative styling and other such changes to the frontend rendering. Two view configs are provided out of the box to illustrate this, the compact and the spacious, with compact being the default choice when using show(..).

It is expected that this will be the final alpha release of v1.

Added

  • Add a cell marker, allowing cells to be selected with input passed to underlying cell content
  • Add functionality to position columns to the left or right and rows to the top or bottom
  • Add functionality to hide columns and rows
  • Add support for custom UI config with custom HTML/CSS/JS
  • Implement cell height and width rendering when these are defined on cell

Fixed

  • Nothing

Changed

  • Rename init parameter to receiver for on(..) functions and process to processor on related for improved API intuition
  • Change HTML structure of cells, also harmonize this with column and row headers
  • Update widgets and charts to work with frontend changes
  • Various documentation updates relating to changes

Removed

  • Nothing
4

Changelog

v1.24.4 - 2024-06-24 - Flat Sun

Focus in this release has been on improving and refactoring frontend code, adding UI features such as column and row hiding and locking through Visibility and Position meta classes. Other UI related features, such as supporting the height and width of individual cells have also been implemented, allowing for column and row span functionality.

Additional frontend changes include adding a marker, which allows cells to be selected and improves the way input is passed on to underlying UI cell content. This allows for better widget and chart functionality among other improvements for code that wishes to extend the frontend functionality.

Finally, a more flexible approach is now supported around providing custom HTML/CSS/JS allowing for alternative styling and other such changes to the frontend rendering. Two view configs are provided out of the box to illustrate this, the compact and the spacious, with compact being the default choice when using show(..).

It is expected that this will be the final alpha release of v1.

Added

  • Add a cell marker, allowing cells to be selected with input passed to underlying cell content
  • Add functionality to position columns to the left or right and rows to the top or bottom
  • Add functionality to hide columns and rows
  • Add support for custom UI config with custom HTML/CSS/JS
  • Implement cell height and width rendering when these are defined on cell

Fixed

  • Nothing

Changed

  • Rename init parameter to receiver for on(..) functions and process to processor on related for improved API intuition
  • Change HTML structure of cells, also harmonize this with column and row headers
  • Update widgets and charts to work with frontend changes
  • Various documentation updates relating to changes

Removed

  • Nothing
6

Changelog

v1.24.3 - 2024-04-06 - Aged Moon

The theme of this release is about stabilizing core APIs, cleaning them up, improving type safety and other related refactorings where needed. These changes make it clearer what types are accepted and removes some approaches that previously could be confusing to the API user, such as with contains(..) and invoke(..).

As part of this change, Unit, rather than null, is encouraged when clearing values (be that in a table/view or in meta classes). Nulls are still supported most places to clear values, but must now have a specified type.

The core APIs are unlikely to change drastically after this release, but new data types and new features are expected.

Added

  • Tighten equals checks with added support for contains across Table, Column, Row, Cell, and meta classes
  • Add source to tableView and make source on Table public
  • Cache transformed tables obtained via tableView[Table]
  • Various test case improvements, better coverage
  • Various related documentation improvements
  • Add asBoolean and asString on Cell

Fixed

  • Fix issue with BasicFunctions on cell clear + added tests
  • Tidy up some edge cases on Table related iterators
  • Avoid accidental column create when not wanted

Changed

  • Simplified registry interactions and how tables/views are initially created and then obtained again through Table[..]
  • Refactor transformer APIs and add support for TableTransformer, ColumnTransformer, and RowTransformer
  • Update column filter on load functions to match column transformer function
  • Change setters to accept nullable types, encourage use of Unit to reset
  • Simplify class structure by removing BaseTable, BaseColumn, and BaseRow
  • Change Cells constructor API to better match overall API with Cells[..]
  • Refactor invoke(..) for better type safety and a more intuitive API
  • Tighten acceptable types in contains(..) functions
  • Allow columns to recreate themselves if needed

Removed

  • Nothing
[-] the_ocs@lemmy.world 11 points 2 months ago

Definitely getting to that point, past the peak, but I think we're a little bit further to the left still.

5
submitted 3 months ago by the_ocs@lemmy.world to c/kotlin@programming.dev

I've had a long time fascination with Conway's Game of Life, and with the Sigbla APIs starting to stabilize I thought it would be fun to play around a bit and implement it as an example.

You can find the Conway example code here, and it should hopefully, even if you're unfamiliar with Sigbla, be fairly straight forward to understand.

It's using various core features, such as views, batching, transformers and cloning, with about 100 lines of code to get it all working. It's not really what I would envision Sigbla being used for, but it's a fun little example..

Conway's Game of Life in Sigbla

[-] the_ocs@lemmy.world 9 points 4 months ago

I'm keen to join another tech focused community, with less non-tech spam, any recommendations?

5
submitted 4 months ago by the_ocs@lemmy.world to c/kotlin@programming.dev
[-] the_ocs@lemmy.world 15 points 4 months ago

I think that's unfair on third world countries

[-] the_ocs@lemmy.world 25 points 4 months ago

Yep, and everyone understands a QR code these days

[-] the_ocs@lemmy.world 8 points 5 months ago

There's no open source without copyright, only public domain

4

Changelog

v1.24.0 - 2024-01-02 - Still Rice

Added

  • swap(..) function to swap rows or columns
  • sort(..) function to sort a table by rows or columns
  • Enhance TableListenerEvent and TableViewListenerEvent for easy access to event source details
  • Allow setting the host/IP with TableView[Host] or SIGBLA_HOST

Fixed

  • Fix issue with on ref/name mismatch in UI for table views
  • Ensure only Row[at X] can be used in row subscriptions
  • Ensure valid CellRange, ColumnRange, and RowRange within constraints
  • Support for view/table replacement when reusing existing view reference

Changed

  • Changed Dexx collections dependency with Sigbla PDS (no functional change)
  • Tidy up implementation of RowRange and ColumnRange
  • Documentation improvements and additions
  • Various improvements to toString functions
  • Various minor code cleaning

Removed

  • Nothing
[-] the_ocs@lemmy.world 59 points 6 months ago

I love Joplin, https://joplinapp.org/

Open source, encryption, features rich, sync across devices, what's not to like?

3
3
submitted 6 months ago by the_ocs@lemmy.world to c/kotlin@programming.dev

I've for a good while been using an excellent port of Scala's persistent data structures in my Kotlin code known as Dexx. This also works well from Java code.

However, while the project is what I would call feature complete, it's no longer maintained, resulting in outdated dependencies. It would also become problematic should any bugs or issues pop up.

Hence I decided to fork it as Sigbla PDS and tidy it up a bit, with v1.0 now released and ready for use.

57
[-] the_ocs@lemmy.world 25 points 7 months ago

This is how it should be for any agency or organisation, public or private.

The model of everyone using Twitter/Facebook is practically the same as if everyone used gmail.com as their mail domain.

3
submitted 7 months ago by the_ocs@lemmy.world to c/kotlin@programming.dev
3

It supports various data types, reactive programming and events, user input, charts, and many other things.

[-] the_ocs@lemmy.world 23 points 7 months ago

Alternative headline: Better run companies outperform

[-] the_ocs@lemmy.world 28 points 7 months ago

Someone was able to trademark the word "Apple", so that's not so surprising

[-] the_ocs@lemmy.world 18 points 8 months ago

how does an exchange determine how much money in usd and different cryptocurrencies to keep on hand to safely cover all depositors with them when there is such dramatic volatility in all the different cryptocurrency values?

If you move 1 BTC to an exchange, and you keep it in your account on the exchange, the exchange is meant to keep the 1 BTC on behalf of you.

They are not meant to do anything other than keep it.

An exchange is not a bank.

If the exchange takes your tokens (or fiat) and does anything other than what you ask them to do, they're not legit.

[-] the_ocs@lemmy.world 6 points 8 months ago

The argument for rust is memory safety, which allows you to avoid these very common, often serious, issues.

It's an argument that goes far beyond curl, and some random curl clone written in rust.

[-] the_ocs@lemmy.world 7 points 8 months ago

Yeah, people need to realize they're not owning the media, simply "renting it".

view more: next ›

the_ocs

joined 11 months ago
MODERATOR OF