Skip to content
This repository has been archived by the owner on Jun 12, 2024. It is now read-only.

Add total price to label and location pages #722

Open
wants to merge 107 commits into
base: main
Choose a base branch
from

Commits on Jul 23, 2023

  1. chore: bump all go deps (hay-kot#507)

    * bump all deps
    
    * run code-gen
    hay-kot authored Jul 23, 2023
    Configuration menu
    Copy the full SHA
    a042496 View commit details
    Browse the repository at this point in the history
  2. fix(deps): update module github.com/swaggo/http-swagger to v2 (hay-ko…

    …t#506)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jul 23, 2023
    Configuration menu
    Copy the full SHA
    dc94465 View commit details
    Browse the repository at this point in the history
  3. fix(deps): update module github.com/swaggo/http-swagger to v2 (hay-ko…

    …t#508)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jul 23, 2023
    Configuration menu
    Copy the full SHA
    27dad0e View commit details
    Browse the repository at this point in the history
  4. fix 3 places where API URLs were not constructed by function route (h…

    …ay-kot#451)
    
    * Fixed 3 places where API URLs were not constructed by function route(path, params).
    
    * autofix
    
    ---------
    
    Co-authored-by: Hayden <[email protected]>
    db8200 and hay-kot authored Jul 23, 2023
    Configuration menu
    Copy the full SHA
    06eb6c1 View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2023

  1. ui: rework location/labels pages (hay-kot#475)

    * formatting
    
    * slimdown locations page
    
    * update location/labels
    
    * fix dependency issues
    
    * fix type generator
    
    * cleanup unused variables
    hay-kot authored Jul 27, 2023
    Configuration menu
    Copy the full SHA
    0167809 View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2023

  1. chore(deps): update dependency mkdocs-material to v9.1.21 (hay-kot#512)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jul 29, 2023
    Configuration menu
    Copy the full SHA
    371fc0a View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2023

  1. feat: more currency support (hay-kot#520)

    * add multiple new currencies
    
    * add multiple new currencies
    
    * remove duplicate yen
    hay-kot authored Jul 31, 2023
    Configuration menu
    Copy the full SHA
    c5ae6b1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    02ce52d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    895017b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5a219f6 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8c7d91e View commit details
    Browse the repository at this point in the history
  6. feat: add support for create + add more for all create modals and sup…

    …port k… (hay-kot#526)
    
    * add support for create + add more for all create modals and support keyboard bindings
    
    * listen for esc to close modals
    hay-kot authored Jul 31, 2023
    Configuration menu
    Copy the full SHA
    22bbaae View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2023

  1. include rootless dockerfile

    hay-kot committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    3f0e65a View commit details
    Browse the repository at this point in the history
  2. build nightly rootless

    hay-kot committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    275e106 View commit details
    Browse the repository at this point in the history
  3. chore(deps): update dependency vitest to ^0.34.0 (hay-kot#529)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Aug 2, 2023
    Configuration menu
    Copy the full SHA
    272cc5a View commit details
    Browse the repository at this point in the history
  4. try node 18

    hay-kot committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    2e2eed1 View commit details
    Browse the repository at this point in the history
  5. specify h3 dependency

    hay-kot committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    cceec06 View commit details
    Browse the repository at this point in the history
  6. feat: WebSocket based implementation of server sent events for cache …

    …busting (hay-kot#527)
    
    * rough implementation of WS based event system for server side notifications of mutation
    
    * fix test construction
    
    * fix deadlock on event bus
    
    * disable linter error
    
    * add item mutation events
    
    * remove old event bus code
    
    * refactor event system to use composables
    
    * refresh items table when new item is added
    
    * fix create form errors
    
    * cleanup unnecessary calls
    
    * fix importer erorrs + limit fn calls on import
    hay-kot authored Aug 2, 2023
    Configuration menu
    Copy the full SHA
    2cbcc8b View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2023

  1. Configuration menu
    Copy the full SHA
    b5987f2 View commit details
    Browse the repository at this point in the history
  2. update lock file

    hay-kot committed Aug 10, 2023
    Configuration menu
    Copy the full SHA
    9fa17be View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2023

  1. feat: add currencies XAG and XAU (hay-kot#535)

    * Added currencies XAG and XAU to currency.ts
    
    I added XAG and XAU for myself and others who prefer to measure value with something of substance.
    
    Review the ISO 4217 standard to view a full list of official currency codes including the ones I have added.
    
    https://www.iso.org/iso-4217-currency-codes.html
    https://en.wikipedia.org/wiki/ISO_4217
    
    Example:
    https://www.xe.com/currencyconverter/convert/?Amount=100&From=XAG&To=USD
    
    API for exchange rates:
    https://openexchangerates.org/
    
    * Added field values xag and xau to group.go
    
    * Update group.go
    tctlrd authored Aug 23, 2023
    1 Configuration menu
    Copy the full SHA
    5438898 View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2023

  1. fix websocket over secure connection (hay-kot#542)

    * fix https connection
    
    * explicity dependency
    hay-kot authored Aug 24, 2023
    Configuration menu
    Copy the full SHA
    0876deb View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2023

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

Commits on Sep 14, 2023

  1. fix(deps): update module github.com/rs/zerolog to v1.30.0 (hay-kot#517)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Sep 14, 2023
    Configuration menu
    Copy the full SHA
    c89aa73 View commit details
    Browse the repository at this point in the history
  2. fix(deps): update module modernc.org/sqlite to v1.25.0 (hay-kot#531)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Sep 14, 2023
    Configuration menu
    Copy the full SHA
    5f41960 View commit details
    Browse the repository at this point in the history
  3. chore(deps): update dependency eslint-config-prettier to v9 (hay-kot#533

    )
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Sep 14, 2023
    Configuration menu
    Copy the full SHA
    5739b20 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    fbc7e6e View commit details
    Browse the repository at this point in the history
  5. fix(deps): update module golang.org/x/crypto to v0.13.0 (hay-kot#532)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Sep 14, 2023
    Configuration menu
    Copy the full SHA
    455163d View commit details
    Browse the repository at this point in the history
  6. fix(deps): update module github.com/google/uuid to v1.3.1 (hay-kot#551)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Sep 14, 2023
    Configuration menu
    Copy the full SHA
    fc56984 View commit details
    Browse the repository at this point in the history
  7. fix(deps): update module github.com/swaggo/swag to v1.16.2 (hay-kot#552)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Sep 14, 2023
    Configuration menu
    Copy the full SHA
    744a5bb View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2023

  1. fix(deps): update module github.com/go-playground/validator/v10 to v1…

    …0.15.5 (hay-kot#556)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Oct 6, 2023
    Configuration menu
    Copy the full SHA
    e68b7cf View commit details
    Browse the repository at this point in the history
  2. chore(deps): update dependency mkdocs-material to v9.4.4 (hay-kot#553)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Oct 6, 2023
    Configuration menu
    Copy the full SHA
    a9712c4 View commit details
    Browse the repository at this point in the history
  3. pr: fixed incorrect sum of the total items price (hay-kot#568)

    * Fixed incorrect sum of the total items price
    
    hay-kot#458
    
    * fix eslint errors
    
    ---------
    
    Co-authored-by: Adamko <[email protected]>
    hay-kot and cRaZy92 authored Oct 6, 2023
    Configuration menu
    Copy the full SHA
    f13bf29 View commit details
    Browse the repository at this point in the history
  4. fix(deps): update module github.com/containrrr/shoutrrr to v0.8.0 (ha…

    …y-kot#555)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Oct 6, 2023
    Configuration menu
    Copy the full SHA
    a33cf54 View commit details
    Browse the repository at this point in the history
  5. fix(deps): update module github.com/yeqown/go-qrcode/writer/standard …

    …to v1.2.2 (hay-kot#567)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Oct 6, 2023
    Configuration menu
    Copy the full SHA
    b28bb2c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    f3f9672 View commit details
    Browse the repository at this point in the history
  7. fix(deps): update module github.com/rs/zerolog to v1.31.0 (hay-kot#569)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Oct 6, 2023
    Configuration menu
    Copy the full SHA
    2b31d46 View commit details
    Browse the repository at this point in the history
  8. fix(deps): update module golang.org/x/crypto to v0.14.0 (hay-kot#570)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Oct 6, 2023
    Configuration menu
    Copy the full SHA
    1952b9f View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    db16d3f View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    63a966c View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2023

  1. feat: primary images (hay-kot#576)

    * add support for primary images
    
    * fix locked loading state issue
    
    * add action to auto-set images
    hay-kot authored Oct 7, 2023
    Configuration menu
    Copy the full SHA
    318b8be View commit details
    Browse the repository at this point in the history
  2. fix(deps): update module modernc.org/sqlite to v1.26.0 (hay-kot#574)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Oct 7, 2023
    Configuration menu
    Copy the full SHA
    0dc4fa5 View commit details
    Browse the repository at this point in the history
  3. chore(deps): update dependency nuxt to v3.7.4 (hay-kot#554)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Oct 7, 2023
    Configuration menu
    Copy the full SHA
    2cd3c15 View commit details
    Browse the repository at this point in the history
  4. refactor: rewrite to cookie based auth (hay-kot#578)

    * rewrite to cookie based auth
    
    * remove interceptor
    hay-kot authored Oct 7, 2023
    Configuration menu
    Copy the full SHA
    1365bdf View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d8482f3 View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2023

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

Commits on Oct 15, 2023

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

Commits on Nov 15, 2023

  1. chore(deps): update dependency mkdocs-material to v9.4.8 (hay-kot#592)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Nov 15, 2023
    Configuration menu
    Copy the full SHA
    e5f66d9 View commit details
    Browse the repository at this point in the history
  2. chore(deps): update docker/setup-buildx-action action to v3 (hay-kot#579

    )
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Nov 15, 2023
    Configuration menu
    Copy the full SHA
    3e2ab29 View commit details
    Browse the repository at this point in the history
  3. chore(deps): update actions/checkout action to v4 (hay-kot#575)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Nov 15, 2023
    Configuration menu
    Copy the full SHA
    b08e521 View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2023

  1. chore: rewrite generator to resolve strange name generation (hay-kot#612

    )
    
    * rewrite generator to resolve strange name generation
    
    * fix asset id types
    
    * ignore errored types
    
    * remove depreciated calls
    
    * use more random words
    
    * random user
    hay-kot authored Nov 16, 2023
    Configuration menu
    Copy the full SHA
    4738a9b View commit details
    Browse the repository at this point in the history
  2. chore: bump all go dependencies (hay-kot#614)

    * bump all
    
    * code-generation
    hay-kot authored Nov 16, 2023
    Configuration menu
    Copy the full SHA
    c0e8e34 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b408318 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    51ba15f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    da22074 View commit details
    Browse the repository at this point in the history
  6. chore(deps): update pnpm/action-setup action to v2.4.0 (hay-kot#511)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Nov 16, 2023
    Configuration menu
    Copy the full SHA
    db27d34 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    80e2071 View commit details
    Browse the repository at this point in the history
  8. chore(deps): update actions/setup-node action to v4 (hay-kot#621)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Nov 16, 2023
    Configuration menu
    Copy the full SHA
    a70ee33 View commit details
    Browse the repository at this point in the history
  9. feat: expose timeout variables (hay-kot#622)

    * expose timeout variables
    
    * formatting
    hay-kot authored Nov 16, 2023
    Configuration menu
    Copy the full SHA
    eeae790 View commit details
    Browse the repository at this point in the history
  10. fix(deps): update dependency @pinia/nuxt to ^0.5.0 (hay-kot#620)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Nov 16, 2023
    Configuration menu
    Copy the full SHA
    e65d44f View commit details
    Browse the repository at this point in the history
  11. chore(deps): update dependency @vite-pwa/nuxt to ^0.2.0 (hay-kot#616)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Nov 16, 2023
    Configuration menu
    Copy the full SHA
    2eafa8e View commit details
    Browse the repository at this point in the history
  12. chore(deps): update dependency @types/markdown-it to v13 (hay-kot#577)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Nov 16, 2023
    Configuration menu
    Copy the full SHA
    2594d4c View commit details
    Browse the repository at this point in the history
  13. fix: images in child items (hay-kot#623)

    * support parentID search
    
    * fetch images for item children
    hay-kot authored Nov 16, 2023
    Configuration menu
    Copy the full SHA
    afbc6a4 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    8cc0f30 View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2023

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

Commits on Nov 30, 2023

  1. Configuration menu
    Copy the full SHA
    10c030a View commit details
    Browse the repository at this point in the history
  2. chore(deps): update dependency mkdocs-material to v9.4.14 (hay-kot#630)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Nov 30, 2023
    Configuration menu
    Copy the full SHA
    7ec22ed View commit details
    Browse the repository at this point in the history
  3. chore(deps): update goreleaser/goreleaser-action action to v5 (hay-ko…

    …t#626)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Nov 30, 2023
    Configuration menu
    Copy the full SHA
    db00e7a View commit details
    Browse the repository at this point in the history
  4. chore(deps): update docker/setup-qemu-action action to v3 (hay-kot#625)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Nov 30, 2023
    Configuration menu
    Copy the full SHA
    d1d98bc View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2023

  1. fix/feat: primary photo auto set and auto-set primary photo (hay-kot#651

    )
    
    * fix error when item doesn't have photo attachment
    
    * automatically detect image types and set primary photo if first
    
    * remove charts.js from libs
    hay-kot authored Dec 1, 2023
    Configuration menu
    Copy the full SHA
    321a83b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4d9131b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f2363b8 View commit details
    Browse the repository at this point in the history
  4. fix(deps): update module github.com/hay-kot/httpkit to v0.0.5 (hay-ko…

    …t#643)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Dec 1, 2023
    Configuration menu
    Copy the full SHA
    014fdea View commit details
    Browse the repository at this point in the history
  5. fix(deps): update module golang.org/x/crypto to v0.16.0 (hay-kot#645)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Dec 1, 2023
    Configuration menu
    Copy the full SHA
    126c06a View commit details
    Browse the repository at this point in the history
  6. fix(deps): update github.com/gocarina/gocsv digest to b87c2d0 (hay-ko…

    …t#629)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Dec 1, 2023
    Configuration menu
    Copy the full SHA
    b559216 View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2023

  1. chore(deps): update dependency mkdocs-material to v9.5.2 (hay-kot#654)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Dec 12, 2023
    Configuration menu
    Copy the full SHA
    8a85b18 View commit details
    Browse the repository at this point in the history
  2. chore(deps): update actions/setup-go action to v5 (hay-kot#653)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Dec 12, 2023
    Configuration menu
    Copy the full SHA
    0bc3969 View commit details
    Browse the repository at this point in the history
  3. chore(deps): update dependency vitest to v1 (hay-kot#652)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Dec 12, 2023
    Configuration menu
    Copy the full SHA
    ff2577a View commit details
    Browse the repository at this point in the history
  4. fix(deps): update dependency markdown-it to v14 (hay-kot#655)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Dec 12, 2023
    Configuration menu
    Copy the full SHA
    5229436 View commit details
    Browse the repository at this point in the history
  5. feat: extract auth into provider (hay-kot#663)

    * extract auth into provider
    
    * bump go version
    
    * use pointer
    
    * rebase
    hay-kot authored Dec 12, 2023
    Configuration menu
    Copy the full SHA
    8538877 View commit details
    Browse the repository at this point in the history

Commits on Dec 16, 2023

  1. Configuration menu
    Copy the full SHA
    85c8e47 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3ee150e View commit details
    Browse the repository at this point in the history

Commits on Dec 25, 2023

  1. fix: Render newlines in markdown fields (hay-kot#682)

    Co-authored-by: zebrapurring <>
    zebrapurring authored Dec 25, 2023
    Configuration menu
    Copy the full SHA
    b918310 View commit details
    Browse the repository at this point in the history

Commits on Jan 4, 2024

  1. fix: inaccruate 401 & sql busy error (hay-kot#679)

    * fix inaccruate 401 error on SQL db error
    
    * init golangci-lint config
    
    * linter autofix
    
    * testify auto fixes
    
    * fix sqlite busy errors
    
    * fix naming
    
    * more linter errors
    
    * fix rest of linter issues
    hay-kot authored Jan 4, 2024
    Configuration menu
    Copy the full SHA
    e8449b3 View commit details
    Browse the repository at this point in the history
  2. fix(deps): update module golang.org/x/crypto to v0.17.0 [security] (h…

    …ay-kot#676)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jan 4, 2024
    Configuration menu
    Copy the full SHA
    f3f2116 View commit details
    Browse the repository at this point in the history
  3. feat: show quantity in card view if quantity == 0 (hay-kot#672) (hay-…

    …kot#673)
    
    * feat: show quantity in card view if quantity == 0 (hay-kot#672)
    
    * Update frontend/components/Item/Card.vue
    
    ---------
    
    Co-authored-by: bee-eater <[email protected]>
    Co-authored-by: Hayden <[email protected]>
    3 people authored Jan 4, 2024
    Configuration menu
    Copy the full SHA
    d8e4962 View commit details
    Browse the repository at this point in the history
  4. fix(deps): update module github.com/google/uuid to v1.5.0 (hay-kot#664)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jan 4, 2024
    Configuration menu
    Copy the full SHA
    8ede42f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    6d8260b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    d920e1e View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2024

  1. fix: task swag (hay-kot#710)

    Co-authored-by: Quoing <[email protected]>
    quoing and Quoing authored Jan 17, 2024
    Configuration menu
    Copy the full SHA
    d2bde3f View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2024

  1. feat: user defined currencies (hay-kot#700)

    * basic currency service for loading at runtime
    
    * api endpoint for currencies
    
    * sort slice before return
    
    * remove currency validation
    
    * validate using currency service
    
    * implement selecting dynamic currency options
    
    * bump go version
    
    * fix type definition
    
    * specify explicit type
    
    * change go versions
    
    * proper types for assetId
    
    * log/return currency error
    
    * make case insensative
    
    * use ToUpper instead
    
    * feat: adding new currencies (hay-kot#715)
    
    * fix: task swag (hay-kot#710)
    
    Co-authored-by: Quoing <[email protected]>
    
    * [feat] Adding new currencies
    
    ---------
    
    Co-authored-by: quoing <[email protected]>
    Co-authored-by: Quoing <[email protected]>
    Co-authored-by: Bradley <[email protected]>
    
    * remove ts file and consoldate new values into json
    
    * move flag to options namespace
    
    * add env config for currencies
    
    * basic documentaion
    
    * remove in sync test
    
    ---------
    
    Co-authored-by: quoing <[email protected]>
    Co-authored-by: Quoing <[email protected]>
    Co-authored-by: Bradley <[email protected]>
    4 people authored Jan 18, 2024
    Configuration menu
    Copy the full SHA
    c4b9238 View commit details
    Browse the repository at this point in the history
  2. feat: enable search by serial number or model number (hay-kot#677)

    Co-authored-by: zebrapurring <>
    zebrapurring authored Jan 18, 2024
    Configuration menu
    Copy the full SHA
    f2f7809 View commit details
    Browse the repository at this point in the history
  3. fix(deps): update module golang.org/x/crypto to v0.18.0 (hay-kot#706)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jan 18, 2024
    Configuration menu
    Copy the full SHA
    d374fae View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2024

  1. chore(deps): update dependency mkdocs-material to v9.5.4 (hay-kot#716)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jan 19, 2024
    Configuration menu
    Copy the full SHA
    b3b81a3 View commit details
    Browse the repository at this point in the history
  2. fix(deps): update module github.com/mattn/go-sqlite3 to v1.14.19 (hay…

    …-kot#668)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jan 19, 2024
    Configuration menu
    Copy the full SHA
    6ee4103 View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2024

  1. fix(deps): update module github.com/go-playground/validator/v10 to v1…

    …0.17.0 (hay-kot#717)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jan 20, 2024
    Configuration menu
    Copy the full SHA
    94399a9 View commit details
    Browse the repository at this point in the history
  2. fix(deps): update module modernc.org/sqlite to v1.28.0 (hay-kot#667)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jan 20, 2024
    Configuration menu
    Copy the full SHA
    de4081d View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2024

  1. chore(deps): update dependency mkdocs-material to v9.5.5 (hay-kot#720)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jan 24, 2024
    Configuration menu
    Copy the full SHA
    b8b706e View commit details
    Browse the repository at this point in the history
  2. fix(deps): update module github.com/google/uuid to v1.6.0 (hay-kot#719)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jan 24, 2024
    Configuration menu
    Copy the full SHA
    59a5a17 View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2024

  1. Configuration menu
    Copy the full SHA
    f67c986 View commit details
    Browse the repository at this point in the history
  2. Fix typo

    JackBailey authored Jan 25, 2024
    Configuration menu
    Copy the full SHA
    26c0e33 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    baad90c View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2024

  1. Configuration menu
    Copy the full SHA
    94c57cf View commit details
    Browse the repository at this point in the history
  2. Update API docs

    JackBailey committed Jan 31, 2024
    Configuration menu
    Copy the full SHA
    026660d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    af160df View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2024

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

Commits on Feb 29, 2024

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