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

Merge Release Auto-PR #327

Open
wants to merge 618 commits into
base: release
Choose a base branch
from
Open

Merge Release Auto-PR #327

wants to merge 618 commits into from
This pull request is big! We’re only showing the most recent 250 commits.

Commits on May 24, 2024

  1. Configuration menu
    Copy the full SHA
    0bc4c3f View commit details
    Browse the repository at this point in the history
  2. Throw errors if parsing fails

    Not consuming all input is now treated as an error, unless the
    `must_consume_all_input` flag is set to false when parsing.
    AtkinsSJ committed May 24, 2024
    Configuration menu
    Copy the full SHA
    d3dff8c View commit details
    Browse the repository at this point in the history
  3. Make stringOf() take a callback instead of an array of accepted values

    THe `a.stringOf(' \r\n\t'.split('')),` pattern works fine for small sets
    of characters, but is horrible for situations like "any alphanumeric".
    Instead, let's make it take a callback function that is run on each
    character.
    AtkinsSJ committed May 24, 2024
    Configuration menu
    Copy the full SHA
    7fccf79 View commit details
    Browse the repository at this point in the history
  4. Finish concept JSON parser

    This now can parse JSON correctly in various configurations.
    AtkinsSJ committed May 24, 2024
    Configuration menu
    Copy the full SHA
    03123fa View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5146dc4 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #332 from HeyPuter/release-please--branches--main-…

    …-components--puter.com
    
    chore(main): release 1.0.0
    KernelDeimos committed May 24, 2024
    Configuration menu
    Copy the full SHA
    fc51424 View commit details
    Browse the repository at this point in the history
  7. Update docker-image.yaml

    KernelDeimos committed May 24, 2024
    Configuration menu
    Copy the full SHA
    94e9f8f View commit details
    Browse the repository at this point in the history
  8. Update docker-image.yaml

    KernelDeimos committed May 24, 2024
    Configuration menu
    Copy the full SHA
    6ed9f0a View commit details
    Browse the repository at this point in the history
  9. Update docker-image.yaml

    KernelDeimos committed May 24, 2024
    Configuration menu
    Copy the full SHA
    4d91ef1 View commit details
    Browse the repository at this point in the history
  10. Update docker-image.yaml

    KernelDeimos committed May 24, 2024
    Configuration menu
    Copy the full SHA
    f208705 View commit details
    Browse the repository at this point in the history
  11. Merge pull request #422 from HeyPuter/eric/gui-loading

    GUI loading refactor + service-registered gui scripts
    KernelDeimos committed May 24, 2024
    Configuration menu
    Copy the full SHA
    8de94d3 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    cbfad2e View commit details
    Browse the repository at this point in the history

Commits on May 25, 2024

  1. Configuration menu
    Copy the full SHA
    06f4165 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #426 from HeyPuter/eric/service-scripts

    refactor(gui): add service scripts
    KernelDeimos committed May 25, 2024
    Configuration menu
    Copy the full SHA
    f4d4189 View commit details
    Browse the repository at this point in the history

Commits on May 26, 2024

  1. Configuration menu
    Copy the full SHA
    c0cb1cd View commit details
    Browse the repository at this point in the history
  2. Merge pull request #434 from HeyPuter/eric/get-user-service

    refactor: add GetUserService
    KernelDeimos committed May 26, 2024
    Configuration menu
    Copy the full SHA
    146ce65 View commit details
    Browse the repository at this point in the history

Commits on May 28, 2024

  1. Add class registry (first pass)

    In the first pass I add a `register` method and update `defineComponent`
    so it calls `register` as well. This made it possible to create a
    proof-of-concept for registered classes. Additionally ExportService was
    added to expose registered classes to service scripts. This first pass
    works, but it would be better if all types of classes (components or
    otherwise) were registered via the same method.
    KernelDeimos committed May 28, 2024
    Configuration menu
    Copy the full SHA
    51bac44 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #408 from AtkinsSJ/git-client

    Add a git client
    KernelDeimos committed May 28, 2024
    Configuration menu
    Copy the full SHA
    c495ccf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4e3a24e View commit details
    Browse the repository at this point in the history
  4. Fix the previous fix

    KernelDeimos committed May 28, 2024
    Configuration menu
    Copy the full SHA
    cd574c8 View commit details
    Browse the repository at this point in the history
  5. Add class registry (second pass)

    ExportService gets removed and instead a global class registry is added.
    The `init.js` file is split into `init_sync.js` and `init_async.js`
    so that synchronous code that isn't dependent on imports is guarenteed
    to run before initgui.js. The globalThis scope and service-script API
    now expose `def`, a function for registering class definitions, and
    `use`, a function for obtaining registered classes.
    KernelDeimos committed May 28, 2024
    Configuration menu
    Copy the full SHA
    e050506 View commit details
    Browse the repository at this point in the history
  6. Update eslint

    KernelDeimos committed May 28, 2024
    Configuration menu
    Copy the full SHA
    d047abf View commit details
    Browse the repository at this point in the history

Commits on May 29, 2024

  1. Merge pull request #442 from HeyPuter/eric/extensibility

    class registry for service scripts
    KernelDeimos committed May 29, 2024
    Configuration menu
    Copy the full SHA
    0672562 View commit details
    Browse the repository at this point in the history

Commits on May 30, 2024

  1. Merge pull request #421 from AtkinsSJ/exit-status

    Add exit status codes to `puter.exit()`, and an `exit` builtin to Phoenix
    KernelDeimos committed May 30, 2024
    Configuration menu
    Copy the full SHA
    d57980c View commit details
    Browse the repository at this point in the history
  2. Merge pull request #423 from AtkinsSJ/parsely

    Tidy up "newparser" so it can be used properly
    KernelDeimos committed May 30, 2024
    Configuration menu
    Copy the full SHA
    895358e View commit details
    Browse the repository at this point in the history
  3. Merge pull request #413 from AtkinsSJ/extract-posix-error

    refactor: Move PosixError class where it can be accessed outside of Phoenix
    KernelDeimos committed May 30, 2024
    Configuration menu
    Copy the full SHA
    a62a56f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8e083d2 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    60f0ade View commit details
    Browse the repository at this point in the history
  6. feat(ui): add new components

    This commit adds the following components:
    - Glyph
    KernelDeimos committed May 30, 2024
    Configuration menu
    Copy the full SHA
    38ba425 View commit details
    Browse the repository at this point in the history
  7. fix(ui): improve Component base class

    The following improvements were made:
    - do not require empty object in constructor
    - allow components to override render mode based on constructor values
    - improve error handling in get()
    - allow array of property names in on_ready()->listen()
    - allow components to be attached to shadow roots
    KernelDeimos committed May 30, 2024
    Configuration menu
    Copy the full SHA
    f8780d0 View commit details
    Browse the repository at this point in the history
  8. feat(ui): add new components

    This commit adds the following components:
    - ActionCard
    - Frame
    - NotifCard
    KernelDeimos committed May 30, 2024
    Configuration menu
    Copy the full SHA
    577bd59 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    be38df3 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    1245960 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    dd1d129 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    fccabf1 View commit details
    Browse the repository at this point in the history
  13. Switch font to Inter 🎉

    jelveh committed May 30, 2024
    Configuration menu
    Copy the full SHA
    a8515e0 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    16d5ac6 View commit details
    Browse the repository at this point in the history

Commits on May 31, 2024

  1. Configuration menu
    Copy the full SHA
    7c8492b View commit details
    Browse the repository at this point in the history
  2. Update UIContextMenu.js

    jelveh committed May 31, 2024
    Configuration menu
    Copy the full SHA
    c9a43ce View commit details
    Browse the repository at this point in the history
  3. feat(parsely): Add a fail() parser

    I've found this useful for stubbing out parts of a grammar during
    development.
    AtkinsSJ committed May 31, 2024
    Configuration menu
    Copy the full SHA
    5656d9d View commit details
    Browse the repository at this point in the history
  4. feat(parsely): Add stringUntil() parser

    The counterpart of stringOf(), it reads characters until it matches its
    parameter.
    AtkinsSJ committed May 31, 2024
    Configuration menu
    Copy the full SHA
    d46b043 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    9b4d16f View commit details
    Browse the repository at this point in the history
  6. refactor(phoenix): Split up sed code

    Let's organise this a bit.
    AtkinsSJ committed May 31, 2024
    Configuration menu
    Copy the full SHA
    6aae8fc View commit details
    Browse the repository at this point in the history
  7. feat(phoenix): Add more commands to sed, including labels and branching

    This is ported over from an old forgotten branch I'd deleted, then
    thankfully managed to dig up again. 😅
    
    Instead of making GroupCommand contain child commands, use a flat array
    for commands and implement groups as GroupStartCommand and
    GroupEndCommand. This makes it much simpler to iterate the commands
    list in order to jump to labels.
    
    Then implement those labels and the commands that use them: b, t, and T.
    
    Also add the s SubstituteCommand, and combine the code for the q and Q
    commands.
    AtkinsSJ committed May 31, 2024
    Configuration menu
    Copy the full SHA
    306014a View commit details
    Browse the repository at this point in the history
  8. feat(phoenix): Expose parsed arg tokens to apps that request them

    Some shell apps care about what order the arguments appear in. When
    `parseArgs()` is called with `tokens: true`, it produces this `tokens`
    array which represents all the command line options and arguments, in
    order, which is useful for these more advanced cases.
    AtkinsSJ committed May 31, 2024
    Configuration menu
    Copy the full SHA
    4067c82 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    f250f86 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    e047b0b View commit details
    Browse the repository at this point in the history
  11. feat(phoenix): Implement parsing of sed scripts

    Sed is now finally able to actually run scripts, instead of ignoring all
    input and running a hard-coded test script!
    AtkinsSJ committed May 31, 2024
    Configuration menu
    Copy the full SHA
    0d4f907 View commit details
    Browse the repository at this point in the history
  12. refactor(phoenix): Combine similar sed command classes

    These make more sense combined into one Command which is controlled by
    constructor parameters:
    
    - b, t and T
    - d and D
    - g and G
    - h and H
    - p and P
    AtkinsSJ committed May 31, 2024
    Configuration menu
    Copy the full SHA
    6de4c89 View commit details
    Browse the repository at this point in the history
  13. Update UIContextMenu.js

    jelveh committed May 31, 2024
    Configuration menu
    Copy the full SHA
    e6e058c View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    d2b37fc View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    71e2310 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    522664d View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    4bdad75 View commit details
    Browse the repository at this point in the history

Commits on Jun 1, 2024

  1. Configuration menu
    Copy the full SHA
    2d8e624 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #448 from HeyPuter/eric/log-update

    feat(backend): improve logger and reduce logs
    KernelDeimos committed Jun 1, 2024
    Configuration menu
    Copy the full SHA
    135b5ec View commit details
    Browse the repository at this point in the history
  3. fix: fix typo

    wamynobe committed Jun 1, 2024
    Configuration menu
    Copy the full SHA
    ce328b7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    665b2d4 View commit details
    Browse the repository at this point in the history
  5. Update UIContextMenu.js

    jelveh committed Jun 1, 2024
    Configuration menu
    Copy the full SHA
    49f61c4 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    233a271 View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2024

  1. Configuration menu
    Copy the full SHA
    6efff83 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cf8a072 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a81f461 View commit details
    Browse the repository at this point in the history
  4. turns out ESLint is garbage

    jelveh committed Jun 2, 2024
    Configuration menu
    Copy the full SHA
    1ae82b3 View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2024

  1. Merge pull request #449 from wamynobe/main

    fix: fix typo
    jelveh committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    66639ea View commit details
    Browse the repository at this point in the history
  2. Merge pull request #424 from AtkinsSJ/sed

    Actually parse sed scripts
    KernelDeimos committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    2a2a42c View commit details
    Browse the repository at this point in the history
  3. Merge pull request #451 from HeyPuter/eric/drivers-1

    refactor(backend): de-couple driver registration from DriverService
    KernelDeimos committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    aec5cd5 View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2024

  1. chore: update UI.js

    occured -> occurred
    eltociear committed Jun 4, 2024
    Configuration menu
    Copy the full SHA
    de974f0 View commit details
    Browse the repository at this point in the history
  2. Update README.md

    jelveh committed Jun 4, 2024
    Configuration menu
    Copy the full SHA
    04fefc0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0b07073 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    41f378e View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2024

  1. Merge pull request #454 from eltociear/patch-3

    chore: update UI.js
    jelveh committed Jun 5, 2024
    Configuration menu
    Copy the full SHA
    1416807 View commit details
    Browse the repository at this point in the history
  2. feat(backend): add script service

    The script service allows other services to register re-runnable tasks
    called "scripts". These can be invoked via "script:run" in the console.
    KernelDeimos committed Jun 5, 2024
    Configuration menu
    Copy the full SHA
    30550fc View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5e9617f View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2024

  1. Docker CI - Update actions (#460)

    * Update docker-image.yaml
    
    * Update docker-image.yaml
    
    * Update docker-image.yaml
    
    * Update docker-image.yaml
    
    * Update docker-image.yaml
    
    * Create Docker on Tag and push on main
    brhahlen committed Jun 6, 2024
    Configuration menu
    Copy the full SHA
    6ef283d View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2024

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

Commits on Jun 8, 2024

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

Commits on Jun 9, 2024

  1. feat: add external mod loading

    A package called "useapi" is introduced to provide a dynamic import
    system. This import system, rather than relying on the state of the
    filesystem, is populated as modules are installed into Puter's kernel.
    
    The "useapi" package is then used to add support for loading external
    mod directories as Puter kernel modules, making it possible to mod puter
    without any tooling.
    KernelDeimos committed Jun 9, 2024
    Configuration menu
    Copy the full SHA
    eb05fbd View commit details
    Browse the repository at this point in the history
  2. tweak: fix package-lock.json

    Using npm install appears to have different results depending on whether
    or not the parent directory of the puter repository happens to have a
    package.json file (ex: nested workspaces).
    KernelDeimos committed Jun 9, 2024
    Configuration menu
    Copy the full SHA
    431b0da View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b85cb50 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8d22276 View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2024

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

Commits on Jun 11, 2024

  1. Fix ESM-interop issue

    KernelDeimos committed Jun 11, 2024
    Configuration menu
    Copy the full SHA
    8e0f150 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d38bf63 View commit details
    Browse the repository at this point in the history

Commits on Jun 12, 2024

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

Commits on Jun 13, 2024

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

    jelveh committed Jun 13, 2024
    Configuration menu
    Copy the full SHA
    0c4728f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cf08244 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    cb60759 View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2024

  1. Refactor helpers.js

    jelveh committed Jun 14, 2024
    Configuration menu
    Copy the full SHA
    981066c View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2024

  1. chore: fix linter errors

    KernelDeimos committed Jun 15, 2024
    Configuration menu
    Copy the full SHA
    2cc1c5a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d6d6fb0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3ae0773 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1207a15 View commit details
    Browse the repository at this point in the history
  5. chore: sync package.json

    KernelDeimos committed Jun 15, 2024
    Configuration menu
    Copy the full SHA
    6c20aba View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e77c5f8 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f047c6b View commit details
    Browse the repository at this point in the history
  8. Update UIDesktop.js

    jelveh committed Jun 15, 2024
    Configuration menu
    Copy the full SHA
    5a47ba4 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    40c0ef4 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    502c9a3 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    82c6041 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    9ecd517 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    e18766a View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    b74315c View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    7b724ff View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    ba58c3f View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    a623c94 View commit details
    Browse the repository at this point in the history
  18. Update style.css

    jelveh committed Jun 15, 2024
    Configuration menu
    Copy the full SHA
    7e13ab1 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    a1e6887 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    02fc4d8 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    0101f42 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    d5cbc24 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    c5334b0 View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    f06cb30 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    ef8f4de View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    20542b0 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    5f5bd6b View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    6f333bf View commit details
    Browse the repository at this point in the history
  29. chore: fix typo because acknowledge is not spelled awknowledge in any…

    … variant of the english language
    KernelDeimos committed Jun 15, 2024
    Configuration menu
    Copy the full SHA
    d5d987e View commit details
    Browse the repository at this point in the history
  30. chore: update doc too

    KernelDeimos committed Jun 15, 2024
    Configuration menu
    Copy the full SHA
    7015cfc View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2024

  1. Configuration menu
    Copy the full SHA
    1859668 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5d214c7 View commit details
    Browse the repository at this point in the history
  3. feat: add /show urls

    KernelDeimos committed Jun 16, 2024
    Configuration menu
    Copy the full SHA
    079e25a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1166e69 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8424d44 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    19a5eb0 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    d128cee View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    f2c6e01 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    ea84c2f View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    9ac8535 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    0f05a41 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    f9d2a87 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    2f6c428 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    1389298 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    b648817 View commit details
    Browse the repository at this point in the history
  16. Add basic sharing UI

    jelveh committed Jun 16, 2024
    Configuration menu
    Copy the full SHA
    705b9de View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    0dbc6aa View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    8c49ba2 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    476f408 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    e466dc8 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    c35ecec View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    632c536 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    0fea080 View commit details
    Browse the repository at this point in the history
  24. Update UIContextMenu.js

    jelveh committed Jun 16, 2024
    Configuration menu
    Copy the full SHA
    8ebf1ce View commit details
    Browse the repository at this point in the history
  25. feat: add app metadata

    KernelDeimos committed Jun 16, 2024
    Configuration menu
    Copy the full SHA
    f7216b9 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    cb050b0 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    6d1c1d3 View commit details
    Browse the repository at this point in the history
  28. fix: database migration

    KernelDeimos committed Jun 16, 2024
    Configuration menu
    Copy the full SHA
    9b39309 View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2024

  1. Configuration menu
    Copy the full SHA
    a2a10b9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    31d4eb0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b789bb7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2a0fb8f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    4ef6fd6 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    35cbec4 View commit details
    Browse the repository at this point in the history
  7. Update UIContextMenu.js

    jelveh committed Jun 17, 2024
    Configuration menu
    Copy the full SHA
    f185c02 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    fe2c8bc View commit details
    Browse the repository at this point in the history
  9. Update launch_app.js

    jelveh committed Jun 17, 2024
    Configuration menu
    Copy the full SHA
    04adade View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    ccf6ebe View commit details
    Browse the repository at this point in the history
  11. Update UIWindowShare.js

    jelveh committed Jun 17, 2024
    Configuration menu
    Copy the full SHA
    b2f2c55 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    2a748f1 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    5f8b8a2 View commit details
    Browse the repository at this point in the history
  14. Refactor to use KV exclusively

    jelveh committed Jun 17, 2024
    Configuration menu
    Copy the full SHA
    21c537f View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    f7a0549 View commit details
    Browse the repository at this point in the history
  16. Update IPC.js

    jelveh committed Jun 17, 2024
    Configuration menu
    Copy the full SHA
    afe37a6 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    846fdc2 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    6cdbc92 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    807addb View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    11a135c View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2024

  1. Configuration menu
    Copy the full SHA
    bbf09eb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    831c29f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    34d4d60 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7f51689 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e9af635 View commit details
    Browse the repository at this point in the history
  6. simplify UI for sharing

    jelveh committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    91b7f7d View commit details
    Browse the repository at this point in the history
  7. Update jQuery UI to 1.13.2

    jelveh committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    4aa72ea View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    e63ab3a View commit details
    Browse the repository at this point in the history
  9. fix: fix that fix

    KernelDeimos committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    b126b67 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    10cbf08 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    de58866 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    7eabb43 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    85c6798 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    d96f924 View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2024

  1. Configuration menu
    Copy the full SHA
    5dc640b View commit details
    Browse the repository at this point in the history
  2. Update jquery.menu-aim.js

    jelveh committed Jun 19, 2024
    Configuration menu
    Copy the full SHA
    1904b92 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1d083ef View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    cd65217 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    174e2b7 View commit details
    Browse the repository at this point in the history
  6. tweak: acl update

    KernelDeimos committed Jun 19, 2024
    Configuration menu
    Copy the full SHA
    3e98f1a View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    360ad2e View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    56e527d View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    616f28d View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    e7c0b83 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    86fca17 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    a813fbb View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    c1647a5 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    581964b View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    fb1e2f2 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    5cda51e View commit details
    Browse the repository at this point in the history
  17. close #309

    jelveh committed Jun 19, 2024
    Configuration menu
    Copy the full SHA
    4bd62c0 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    8927507 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    41e307b View commit details
    Browse the repository at this point in the history
  20. Add license headers

    jelveh committed Jun 19, 2024
    Configuration menu
    Copy the full SHA
    c67674c View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    bd958b3 View commit details
    Browse the repository at this point in the history
  22. Update UIWindow.js

    jelveh committed Jun 19, 2024
    Configuration menu
    Copy the full SHA
    bfd8960 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    eb17d61 View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    d14a30e View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    ad079cd View commit details
    Browse the repository at this point in the history
  26. Update UIWindowShare.js

    jelveh committed Jun 19, 2024
    Configuration menu
    Copy the full SHA
    44d340d View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    2008db0 View commit details
    Browse the repository at this point in the history
  28. fix: add stream limit

    KernelDeimos committed Jun 19, 2024
    Configuration menu
    Copy the full SHA
    ceba309 View commit details
    Browse the repository at this point in the history
  29. Configuration menu
    Copy the full SHA
    7f5f6f8 View commit details
    Browse the repository at this point in the history
  30. fix: update test kernel

    KernelDeimos committed Jun 19, 2024
    Configuration menu
    Copy the full SHA
    55c609b View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2024

  1. Configuration menu
    Copy the full SHA
    0726a11 View commit details
    Browse the repository at this point in the history
  2. refactor open_item

    jelveh committed Jun 20, 2024
    Configuration menu
    Copy the full SHA
    219cb63 View commit details
    Browse the repository at this point in the history
  3. refactor item_icon

    jelveh committed Jun 20, 2024
    Configuration menu
    Copy the full SHA
    7006dcc View commit details
    Browse the repository at this point in the history
  4. feat: add protected apps

    KernelDeimos committed Jun 20, 2024
    Configuration menu
    Copy the full SHA
    f2f3d6f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3b9a74c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    3ae0081 View commit details
    Browse the repository at this point in the history
  7. close #430

    jelveh committed Jun 20, 2024
    Configuration menu
    Copy the full SHA
    feabbaf View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    f6a4413 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    16c4907 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    82f86ee View commit details
    Browse the repository at this point in the history
  11. close #483

    jelveh committed Jun 20, 2024
    Configuration menu
    Copy the full SHA
    1500f84 View commit details
    Browse the repository at this point in the history
  12. tweak: Re-add mime.js import

    This got removed in 7006dcc, but we do
    need it.
    AtkinsSJ committed Jun 20, 2024
    Configuration menu
    Copy the full SHA
    2355a43 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    5f4b922 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    18f9959 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    dd5fde5 View commit details
    Browse the repository at this point in the history
  16. tweak: update gui

    KernelDeimos committed Jun 20, 2024
    Configuration menu
    Copy the full SHA
    c0fb470 View commit details
    Browse the repository at this point in the history
  17. remove scroll bar from

    jelveh committed Jun 20, 2024
    Configuration menu
    Copy the full SHA
    a834fbc View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    6f0706f View commit details
    Browse the repository at this point in the history
  19. If items are dropped on the home directory of another user, try to sh…

    …are the items rather than copy/move
    jelveh committed Jun 20, 2024
    Configuration menu
    Copy the full SHA
    1c2ba76 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    bf63144 View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2024

  1. chore: cleanup share.js

    KernelDeimos committed Jun 21, 2024
    Configuration menu
    Copy the full SHA
    fc4ae19 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    db5990a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    301ffaf View commit details
    Browse the repository at this point in the history
  4. doc: sharelink endpoints

    KernelDeimos committed Jun 21, 2024
    Configuration menu
    Copy the full SHA
    5a49074 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5cb5a75 View commit details
    Browse the repository at this point in the history
  6. Update initgui.js

    jelveh committed Jun 21, 2024
    Configuration menu
    Copy the full SHA
    2d4f577 View commit details
    Browse the repository at this point in the history
  7. Update initgui.js

    jelveh committed Jun 21, 2024
    Configuration menu
    Copy the full SHA
    88ce871 View commit details
    Browse the repository at this point in the history
  8. Update initgui.js

    jelveh committed Jun 21, 2024
    Configuration menu
    Copy the full SHA
    27ec2d7 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    265f4d9 View commit details
    Browse the repository at this point in the history
  10. Update initgui.js

    jelveh committed Jun 21, 2024
    Configuration menu
    Copy the full SHA
    61961b5 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    d0e3da9 View commit details
    Browse the repository at this point in the history
  12. Update IPC.js

    jelveh committed Jun 21, 2024
    Configuration menu
    Copy the full SHA
    e31625d View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    704a4ea View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2024

  1. fix: readdir on file

    KernelDeimos committed Jun 22, 2024
    Configuration menu
    Copy the full SHA
    a72ec97 View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2024

  1. Configuration menu
    Copy the full SHA
    0bd0eaf View commit details
    Browse the repository at this point in the history
  2. Close #480

    jelveh committed Jun 23, 2024
    Configuration menu
    Copy the full SHA
    a58aa3f View commit details
    Browse the repository at this point in the history
  3. Merge pull request #490 from HeyPuter/customizable-menubar

    Customizable menubar
    jelveh committed Jun 23, 2024
    Configuration menu
    Copy the full SHA
    a521ff3 View commit details
    Browse the repository at this point in the history