Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#28 edit chart menu #315

Open
wants to merge 152 commits into
base: v2.1
Choose a base branch
from
Open

#28 edit chart menu #315

wants to merge 152 commits into from

Commits on Oct 18, 2023

  1. Profiler Changes

    Changes:
    - Profiler is now moved to Artifact.scala.
    - Added info.vizierdb.profiler package.
    - Artifact.updateDatasetProperty now includes "is_profiled" as a property.
    JasonMai11 committed Oct 18, 2023
    Configuration menu
    Copy the full SHA
    7340ba6 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2023

  1. Profiler implementation

    Debrief:
    
    In Artifact.scala, a property was added to the artifact using updateDatasetProperty.
    
    - if "is_profiled" is not a property then it will be attached to the artifact.
    - if "is_profiled" is a property then the profiler will run ONLY IF it is set to the boolean FALSE.
    
    Once the profiler runs then the profiled information is then set to the value of the property "is_profiled". This will prevent the profiler from running multiple times on a single dataset.
    
    *TEST CASES*:
    Test cases are held in PublishArtifactSpec.scala. You must run the whole PublishArtifactSpec.scala otherwise the second profiler test case will fail. It will fail since the profiler has not been set as a property (which is done in the first profiler test case).
    JasonMai11 committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    4567921 View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2023

  1. Configuration menu
    Copy the full SHA
    03a1f0b View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2023

  1. datasetProperty Function

    Changed datasetProperty so "Is_profiled" would be connected to the jsonObject. No longer determined by boolean. (**Only Temporary, will get changed so "is_profiled" is back to boolean**)
    JasonMai11 committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    85418f0 View commit details
    Browse the repository at this point in the history
  2. Update Artifact.scala

    JasonMai11 committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    b156ef3 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2023

  1. forceProfiler

    forceProfile parameter in describe and in datasetData is now set to True
    JasonMai11 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    eddea71 View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2023

  1. Profiler Implementation and Testing

    "is_profiled" and profiler properties are now added to Artifact. Tests are now more accurate and test for correct information.
    JasonMai11 committed Nov 11, 2023
    Configuration menu
    Copy the full SHA
    bd70602 View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2023

  1. Completion of Profiler

    JasonMai11 committed Nov 15, 2023
    Configuration menu
    Copy the full SHA
    17be764 View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2023

  1. Updated Param List

    JasonMai11 committed Nov 22, 2023
    Configuration menu
    Copy the full SHA
    0165187 View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2023

  1. #24 Temporary Change for frontend with new Parameter Encoding For nes…

    …ted ListObjects, Made some adjustments towards Backend towards fixing multiple Y-axis implementation
    cameronjtoy committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    ddb4595 View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2023

  1. yIndex Change

    yIndex from Int -> Seq[Int]
    JasonMai11 committed Nov 24, 2023
    Configuration menu
    Copy the full SHA
    f789c8c View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2023

  1. Configuration menu
    Copy the full SHA
    72dcb0a View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2023

  1. Bar Chart Editor Changes

    cameronjtoy committed Dec 1, 2023
    Configuration menu
    Copy the full SHA
    279e2d6 View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2023

  1. new bar chart editor

    cameronjtoy committed Dec 4, 2023
    Configuration menu
    Copy the full SHA
    6c3805a View commit details
    Browse the repository at this point in the history
  2. Update PlotUtils.scala

    JasonMai11 committed Dec 4, 2023
    Configuration menu
    Copy the full SHA
    c8ac19d View commit details
    Browse the repository at this point in the history

Commits on Dec 5, 2023

  1. Configuration menu
    Copy the full SHA
    e4b1c3b View commit details
    Browse the repository at this point in the history
  2. button changes

    cameronjtoy committed Dec 5, 2023
    Configuration menu
    Copy the full SHA
    7f34306 View commit details
    Browse the repository at this point in the history

Commits on Dec 6, 2023

  1. scss changes

    cameronjtoy committed Dec 6, 2023
    Configuration menu
    Copy the full SHA
    65da900 View commit details
    Browse the repository at this point in the history
  2. no more empty min

    cameronjtoy committed Dec 6, 2023
    Configuration menu
    Copy the full SHA
    37d5dce View commit details
    Browse the repository at this point in the history
  3. working frontend

    cameronjtoy committed Dec 6, 2023
    Configuration menu
    Copy the full SHA
    f169b10 View commit details
    Browse the repository at this point in the history
  4. Update PlotUtils.scala

    JasonMai11 committed Dec 6, 2023
    Configuration menu
    Copy the full SHA
    ff030be View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    65d0b74 View commit details
    Browse the repository at this point in the history
  6. Artifact changes

    JasonMai11 committed Dec 6, 2023
    Configuration menu
    Copy the full SHA
    b25fb10 View commit details
    Browse the repository at this point in the history

Commits on Dec 7, 2023

  1. working frontend

    cameronjtoy committed Dec 7, 2023
    Configuration menu
    Copy the full SHA
    c9aded4 View commit details
    Browse the repository at this point in the history

Commits on Dec 8, 2023

  1. slider and new scss

    cameronjtoy committed Dec 8, 2023
    Configuration menu
    Copy the full SHA
    4895727 View commit details
    Browse the repository at this point in the history
  2. Bar Chart implementation

    VegaChart Change: added Offset between bars.
    
    PlotUtils: Handles a Sequence of Y's correctly
    
    BarChart: Adjusted to handle multiple Y's
    JasonMai11 committed Dec 8, 2023
    Configuration menu
    Copy the full SHA
    baaeb9d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9e14d40 View commit details
    Browse the repository at this point in the history
  4. Chart Plotting

    JasonMai11 committed Dec 8, 2023
    Configuration menu
    Copy the full SHA
    e1dc77a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    bd48fbd View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    055b116 View commit details
    Browse the repository at this point in the history

Commits on Dec 9, 2023

  1. Configuration menu
    Copy the full SHA
    0b1af5f View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2023

  1. Configuration menu
    Copy the full SHA
    77a9900 View commit details
    Browse the repository at this point in the history
  2. #22 New scss changes

    cameronjtoy committed Dec 10, 2023
    Configuration menu
    Copy the full SHA
    9bb2264 View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2023

  1. Configuration menu
    Copy the full SHA
    e489e44 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bba902e View commit details
    Browse the repository at this point in the history
  3. set method work

    cameronjtoy committed Dec 11, 2023
    Configuration menu
    Copy the full SHA
    891fff6 View commit details
    Browse the repository at this point in the history
  4. Bar Chart Grouping

    JasonMai11 committed Dec 11, 2023
    Configuration menu
    Copy the full SHA
    5536edd View commit details
    Browse the repository at this point in the history
  5. filter empty string

    cameronjtoy committed Dec 11, 2023
    Configuration menu
    Copy the full SHA
    befb015 View commit details
    Browse the repository at this point in the history

Commits on Dec 31, 2023

  1. Configuration menu
    Copy the full SHA
    c5e39c1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8196fcb View commit details
    Browse the repository at this point in the history
  3. Typo in the Python Snippets.

    okennedy committed Dec 31, 2023
    Configuration menu
    Copy the full SHA
    be40699 View commit details
    Browse the repository at this point in the history
  4. Bump version to RC3.

    okennedy committed Dec 31, 2023
    Configuration menu
    Copy the full SHA
    bc7b39b View commit details
    Browse the repository at this point in the history

Commits on Feb 6, 2024

  1. #268 updated jsass version

    lyao4321 committed Feb 6, 2024
    Configuration menu
    Copy the full SHA
    6cd2604 View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2024

  1. Merge pull request #310 from VizierDB/jsass-version-change

    Outdated dependancy issue: JSASS
    okennedy committed Feb 9, 2024
    Configuration menu
    Copy the full SHA
    e91b9a1 View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2024

  1. Configuration menu
    Copy the full SHA
    56040e0 View commit details
    Browse the repository at this point in the history

Commits on Feb 18, 2024

  1. Configuration menu
    Copy the full SHA
    c42779d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    842f850 View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2024

  1. Configuration menu
    Copy the full SHA
    35c24f8 View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2024

  1. Configuration menu
    Copy the full SHA
    57fc21b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    320725d View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2024

  1. Configuration menu
    Copy the full SHA
    4c4e28f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    eaf6dbe View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cf07d3e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a1e8b6e View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2024

  1. Configuration menu
    Copy the full SHA
    1ce64bb View commit details
    Browse the repository at this point in the history
  2. #18 added flex changes

    eeeeemosewa committed Mar 4, 2024
    Configuration menu
    Copy the full SHA
    86f706e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c5aa442 View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2024

  1. #18 editor tbody not flex

    eeeeemosewa committed Mar 5, 2024
    Configuration menu
    Copy the full SHA
    4a44c1f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d760e00 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    caf96e8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e552cac View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f04d243 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4d04fc5 View commit details
    Browse the repository at this point in the history
  7. #23 label input width set

    eeeeemosewa committed Mar 5, 2024
    Configuration menu
    Copy the full SHA
    63e66c2 View commit details
    Browse the repository at this point in the history
  8. #23 radio buttons 15px

    eeeeemosewa committed Mar 5, 2024
    Configuration menu
    Copy the full SHA
    4f25346 View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2024

  1. Configuration menu
    Copy the full SHA
    a2cba87 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    01ef8eb View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2024

  1. Configuration menu
    Copy the full SHA
    ae00650 View commit details
    Browse the repository at this point in the history
  2. #23 label and span changes

    eeeeemosewa committed Mar 8, 2024
    Configuration menu
    Copy the full SHA
    ffdb1c3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6c90f8a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    596a8e2 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f097a7e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b181447 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    9902182 View commit details
    Browse the repository at this point in the history
  8. #20 Add customized line details - New Editor Refactor Made into case …

    …class, new Side menu made without being populated within editor
    cameronjtoy committed Mar 8, 2024
    Configuration menu
    Copy the full SHA
    a16adfa View commit details
    Browse the repository at this point in the history
  9. #20 Add customized line details - New Editor Refactor Made into case …

    …class, new Side menu made without being populated within editor
    cameronjtoy committed Mar 8, 2024
    Configuration menu
    Copy the full SHA
    dc2b3c8 View commit details
    Browse the repository at this point in the history
  10. #20 Add customized line details - Dataset initialized as variable to …

    …ensure columns functions works
    cameronjtoy committed Mar 8, 2024
    Configuration menu
    Copy the full SHA
    be1f5d2 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    d3b8b54 View commit details
    Browse the repository at this point in the history
  12. #20 Add customized line details - Encapsulated elements into tbody fo…

    …r styling, bug fixes for side bar
    cameronjtoy committed Mar 8, 2024
    Configuration menu
    Copy the full SHA
    bbe86d1 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    072234b View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    44cb80c View commit details
    Browse the repository at this point in the history
  15. Merge remote-tracking branch 'refs/remotes/origin/#20-Customized-line…

    …-details' into #20-Customized-line-details
    cameronjtoy committed Mar 8, 2024
    Configuration menu
    Copy the full SHA
    b0f6506 View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2024

  1. Configuration menu
    Copy the full SHA
    b47de90 View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2024

  1. Configuration menu
    Copy the full SHA
    eb5c5cc View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2024

  1. merge into dev

    cameronjtoy committed Mar 21, 2024
    Configuration menu
    Copy the full SHA
    6293806 View commit details
    Browse the repository at this point in the history
  2. Merge with dev

    cameronjtoy committed Mar 21, 2024
    Configuration menu
    Copy the full SHA
    436e923 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    759a662 View commit details
    Browse the repository at this point in the history

Commits on Mar 26, 2024

  1. Configuration menu
    Copy the full SHA
    4822f9b View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2024

  1. re: #27-Scatter-Plot-Editor - Migrated BarChartEditor to Editor Class…

    … used for different chart types, need to have currentState send to backend
    cameronjtoy committed Apr 4, 2024
    Configuration menu
    Copy the full SHA
    af689d2 View commit details
    Browse the repository at this point in the history
  2. re:#27-Scatter-Plot-Editor - Got rid of Global Variables, Made One Si…

    …de menu Object, css class changes per each editor
    cameronjtoy committed Apr 4, 2024
    Configuration menu
    Copy the full SHA
    5d6dbf3 View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2024

  1. Configuration menu
    Copy the full SHA
    18e255e View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2024

  1. Configuration menu
    Copy the full SHA
    82290a9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6a5b463 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2024

  1. Configuration menu
    Copy the full SHA
    02e0b8b View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2024

  1. Configuration menu
    Copy the full SHA
    c4f5b66 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    68c8415 View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2024

  1. Configuration menu
    Copy the full SHA
    78f22c4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2fb89e0 View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2024

  1. Configuration menu
    Copy the full SHA
    d195ec9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    19e7491 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2995351 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6fea58b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    376a126 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    7d51535 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    7b46a43 View commit details
    Browse the repository at this point in the history
  8. #35 scss input width reduced

    eeeeemosewa committed Apr 18, 2024
    Configuration menu
    Copy the full SHA
    10c6257 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    428f935 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2024

  1. Configuration menu
    Copy the full SHA
    f516b87 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e5ecaa2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    739aa51 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    163b741 View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2024

  1. Configuration menu
    Copy the full SHA
    1f45812 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b2664e1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f010c5a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c034124 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e37c39f View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1ab524a View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2024

  1. #28-Edit-Chart-Menu - Add a + button for the Ys, Add a + button for t…

    …he datasets, Drop 'sort' dropdown from the scatterplot and CDF
    cameronjtoy committed Apr 22, 2024
    Configuration menu
    Copy the full SHA
    d37d529 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2024

  1. #28-Edit-Chart-Menu - Populate the line config with one row per line …

    …(dataset * ys * categories), Add a category dropdown
    cameronjtoy committed Apr 23, 2024
    Configuration menu
    Copy the full SHA
    c72a9ef View commit details
    Browse the repository at this point in the history
  2. #35 scss add del y align

    eeeeemosewa committed Apr 23, 2024
    Configuration menu
    Copy the full SHA
    941ccf7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6d6fb5c View commit details
    Browse the repository at this point in the history
  4. #35 scss margin changes

    eeeeemosewa committed Apr 23, 2024
    Configuration menu
    Copy the full SHA
    49c343a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b80854e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    43c950a View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    2d0e1c4 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    40a479d View commit details
    Browse the repository at this point in the history
  9. #35 scss y add del button

    eeeeemosewa committed Apr 23, 2024
    Configuration menu
    Copy the full SHA
    bb9f75e View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2024

  1. Configuration menu
    Copy the full SHA
    f157b74 View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2024

  1. Configuration menu
    Copy the full SHA
    51ba356 View commit details
    Browse the repository at this point in the history
  2. #35 scss button changes

    eeeeemosewa committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    45ab8b3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e178fda View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0892391 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    33f38f9 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e18afd4 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    cde685f View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2024

  1. Configuration menu
    Copy the full SHA
    bfb8927 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    85345dc View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2130871 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    708f4a8 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    89b272b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    2300be5 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    61b56d6 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    a4836ed View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    b9394dc View commit details
    Browse the repository at this point in the history

Commits on May 6, 2024

  1. #28 - Delete .DS_Store

    cameronjtoy committed May 6, 2024
    Configuration menu
    Copy the full SHA
    3c48d06 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    15b43c0 View commit details
    Browse the repository at this point in the history
  3. #28 - Migrated out Filter

    cameronjtoy committed May 6, 2024
    Configuration menu
    Copy the full SHA
    7f13e1a View commit details
    Browse the repository at this point in the history
  4. #28 - Filter Parameter outside and has case class to differentiate ca…

    …tegorical and numerical
    cameronjtoy committed May 6, 2024
    Configuration menu
    Copy the full SHA
    c51f611 View commit details
    Browse the repository at this point in the history
  5. #28 - color element fix

    cameronjtoy committed May 6, 2024
    Configuration menu
    Copy the full SHA
    cd8d06b View commit details
    Browse the repository at this point in the history

Commits on May 7, 2024

  1. Configuration menu
    Copy the full SHA
    14a5d9d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f531578 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6a06846 View commit details
    Browse the repository at this point in the history