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

v3.5.0 #1140

Merged
merged 158 commits into from
Sep 1, 2024
Merged

v3.5.0 #1140

merged 158 commits into from
Sep 1, 2024

Commits on Jul 15, 2024

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

Commits on Jul 16, 2024

  1. Read into mem in chunks

    gantoine committed Jul 16, 2024
    Configuration menu
    Copy the full SHA
    2e91c44 View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2024

  1. Configuration menu
    Copy the full SHA
    591e41a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    77afe55 View commit details
    Browse the repository at this point in the history
  3. fix trunk issues

    gantoine committed Jul 19, 2024
    Configuration menu
    Copy the full SHA
    db1787d View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2024

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

Commits on Jul 27, 2024

  1. Configuration menu
    Copy the full SHA
    ecc021e View commit details
    Browse the repository at this point in the history
  2. get it all wokring

    gantoine committed Jul 27, 2024
    Configuration menu
    Copy the full SHA
    3a9cef2 View commit details
    Browse the repository at this point in the history
  3. changes from self-review

    gantoine committed Jul 27, 2024
    Configuration menu
    Copy the full SHA
    9386ca9 View commit details
    Browse the repository at this point in the history
  4. trunk fixes

    gantoine committed Jul 27, 2024
    Configuration menu
    Copy the full SHA
    f01f5ce View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2c2adb4 View commit details
    Browse the repository at this point in the history
  6. fix tests

    gantoine committed Jul 27, 2024
    Configuration menu
    Copy the full SHA
    0139e3a View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2024

  1. Configuration menu
    Copy the full SHA
    5529b76 View commit details
    Browse the repository at this point in the history
  2. set more config options

    gantoine committed Jul 30, 2024
    Configuration menu
    Copy the full SHA
    c7878ee View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2024

  1. misc: Improve typing for feed schemas

    * Add typing for nested objects in Tinfoil and Webrcade feed schemas.
    * Do not send Rom background and thumbnail, if not available.
    * Correctly build URLs using `starlette` utils.
    * Deprecate the `ROMM_HOST` setting, no longer needed.
    * Fix FastAPI custom router to prefer routes without trailing slash.
    * Fix Webrcade background URL pointing to gallery screenshot.
    adamantike committed Aug 8, 2024
    Configuration menu
    Copy the full SHA
    95a66a1 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1064 from rommapp/misc/improve-feed-schemas

    misc: Improve typing for feed schemas
    adamantike authored Aug 8, 2024
    Configuration menu
    Copy the full SHA
    eccd220 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    46b85ec View commit details
    Browse the repository at this point in the history
  4. Merge pull request #1065 from rommapp/romm-1063

    [ROMM-1063] Add Amiga CD32 to emulatorjs game list
    gantoine authored Aug 8, 2024
    Configuration menu
    Copy the full SHA
    3df87d1 View commit details
    Browse the repository at this point in the history
  5. fixed white + shadow text

    zurdi15 committed Aug 8, 2024
    Configuration menu
    Copy the full SHA
    0b766a6 View commit details
    Browse the repository at this point in the history
  6. fixed fab overlay

    zurdi15 committed Aug 8, 2024
    Configuration menu
    Copy the full SHA
    fc51159 View commit details
    Browse the repository at this point in the history
  7. fixed new version overlay

    zurdi15 committed Aug 8, 2024
    Configuration menu
    Copy the full SHA
    9405723 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #1073 from rommapp/fix/fab-overlay

    fix: fab overlay fixed
    zurdi15 authored Aug 8, 2024
    Configuration menu
    Copy the full SHA
    d2d31b8 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #1072 from rommapp/fix/setup-on-white-theme

    fix: Readable setup text on white theme
    zurdi15 authored Aug 8, 2024
    Configuration menu
    Copy the full SHA
    0171fbd View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2024

  1. Configuration menu
    Copy the full SHA
    cd54d90 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3a1986f View commit details
    Browse the repository at this point in the history
  3. remove unneded code

    gantoine committed Aug 9, 2024
    Configuration menu
    Copy the full SHA
    1ae9cd0 View commit details
    Browse the repository at this point in the history
  4. more cleanup

    gantoine committed Aug 9, 2024
    Configuration menu
    Copy the full SHA
    5f0577b View commit details
    Browse the repository at this point in the history
  5. fix: Set Gunicorn option forwarded-allow-ips

    Currently, the `request.url_for` and `URLPath.make_absolute_url` methods
    always build URLs with "http" scheme, even when the original requested
    URL is using "https".
    
    The reason for this is that Gunicorn does not allow IPs other than
    127.0.0.1 to set secure headers by default. As regular RomM
    installations don't know which frontend IPs will try to set security
    headers in advance, we can disable this validation, and fix URL
    building.
    
    A simple way to test this change is to access any of the `feed` endpoints,
    which generate URLs using the mentioned methods. Accessing the endpoint
    using "https" scheme must generate "https" URLs.
    
    Reference:
    * encode/starlette#538 (comment)
    * https://docs.gunicorn.org/en/stable/settings.html#forwarded-allow-ips
    adamantike committed Aug 9, 2024
    Configuration menu
    Copy the full SHA
    27ba5a1 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    514513d View commit details
    Browse the repository at this point in the history
  7. fix: Allow access to Tinfoil feed when download auth is disabled

    This matches the behavior of the Webrcade feed.
    adamantike committed Aug 9, 2024
    Configuration menu
    Copy the full SHA
    b6aedfc View commit details
    Browse the repository at this point in the history
  8. Merge pull request #1078 from rommapp/fix/allow-tinfoil-feed-when-dow…

    …nload-auth-disabled
    
    fix: Allow access to Tinfoil feed when download auth is disabled
    adamantike authored Aug 9, 2024
    Configuration menu
    Copy the full SHA
    687cffb View commit details
    Browse the repository at this point in the history
  9. Merge pull request #1077 from rommapp/fix/set-gunicorn-forwarded-allo…

    …w-ips
    
    fix: Set Gunicorn option forwarded-allow-ips
    adamantike authored Aug 9, 2024
    Configuration menu
    Copy the full SHA
    441e15c View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    90e0e68 View commit details
    Browse the repository at this point in the history
  11. even more cleanup

    gantoine committed Aug 9, 2024
    Configuration menu
    Copy the full SHA
    195b86b View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    bc38b40 View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2024

  1. Configuration menu
    Copy the full SHA
    3e157ea View commit details
    Browse the repository at this point in the history
  2. improve sql + add indexes

    gantoine committed Aug 10, 2024
    Configuration menu
    Copy the full SHA
    2af2ffe View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2024

  1. tweaks to sql migration

    gantoine committed Aug 11, 2024
    Configuration menu
    Copy the full SHA
    46c2dbe View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1076 from rommapp/fixup-sibling-speed

    Improve speed of fetching siblings for roms
    gantoine authored Aug 11, 2024
    Configuration menu
    Copy the full SHA
    9fb77f9 View commit details
    Browse the repository at this point in the history
  3. fixes from code review

    gantoine committed Aug 11, 2024
    Configuration menu
    Copy the full SHA
    7e086ce View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a4e162e View commit details
    Browse the repository at this point in the history
  5. Merge pull request #1049 from rommapp/ruffle-flash-emulator

    Ruffle flash emulator
    gantoine authored Aug 11, 2024
    Configuration menu
    Copy the full SHA
    a5f0dfb View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    896d481 View commit details
    Browse the repository at this point in the history
  7. only calc hashes exlpicit

    gantoine committed Aug 11, 2024
    Configuration menu
    Copy the full SHA
    5603707 View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2024

  1. fix file meta order

    gantoine committed Aug 12, 2024
    Configuration menu
    Copy the full SHA
    c3b754a View commit details
    Browse the repository at this point in the history
  2. tweaks to details view

    gantoine committed Aug 12, 2024
    Configuration menu
    Copy the full SHA
    a617b79 View commit details
    Browse the repository at this point in the history
  3. move hashes to rom model

    gantoine committed Aug 12, 2024
    Configuration menu
    Copy the full SHA
    1ea1b32 View commit details
    Browse the repository at this point in the history
  4. update trunk + fix tests

    gantoine committed Aug 12, 2024
    Configuration menu
    Copy the full SHA
    ce99ce4 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    75b856b View commit details
    Browse the repository at this point in the history
  6. changes from self review

    gantoine committed Aug 12, 2024
    Configuration menu
    Copy the full SHA
    bc08e05 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #1005 from rommapp/calc-file-hashes-roms

    Calculate and store hashes for rom files
    gantoine authored Aug 12, 2024
    Configuration menu
    Copy the full SHA
    336cc42 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    e24a3b8 View commit details
    Browse the repository at this point in the history
  9. run quick before hash scan

    gantoine committed Aug 12, 2024
    Configuration menu
    Copy the full SHA
    b3a5002 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #1081 from rommapp/hotfix-hash-calc-scans

    Hotfix scans when running HASH_SCAN
    gantoine authored Aug 12, 2024
    Configuration menu
    Copy the full SHA
    dff554b View commit details
    Browse the repository at this point in the history
  11. feat: Use X-Accel-Redirect to improve file download speed

    Instead of making FastAPI handle file download, which has serious
    performance issues on big files [1], this change uses nginx's `X-Accel`
    feature to delegate single-file downloads to nginx.
    
    Partial fix for #1079, as it solves the CPU usage issue for single-file
    downloads.
    
    [1] fastapi/fastapi#6050
    adamantike committed Aug 12, 2024
    Configuration menu
    Copy the full SHA
    d20f4ad View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2024

  1. Configuration menu
    Copy the full SHA
    9281760 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3d96382 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1086 from rommapp/fix-ejs-ruffle

    Fix playing emulatorjs + better platform icon loading
    gantoine authored Aug 13, 2024
    Configuration menu
    Copy the full SHA
    9c3cd24 View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2024

  1. add some missing headers

    gantoine authored and Georges-Antoine Assi committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    0eb5bba View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6e5d4dc View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1088 from rommapp/romm-1087

    Fix home icon size on safari/ios
    gantoine authored Aug 15, 2024
    Configuration menu
    Copy the full SHA
    ea8c3b6 View commit details
    Browse the repository at this point in the history
  4. misc: Upgrade Python to v3.12 and Alpine to v3.20

    Included upgrades:
    * Python: v3.12
    * Alpine: v3.20 (which uses Python 3.12)
    * nginx: v1.27.1
    adamantike committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    0fdbbe4 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1779872 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #1092 from rommapp/misc/upgrade-python-3.12

    misc: Upgrade Python to v3.12 and Alpine to v3.20
    adamantike authored Aug 15, 2024
    Configuration menu
    Copy the full SHA
    822ef76 View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2024

  1. Configuration menu
    Copy the full SHA
    fed465a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e8e5a87 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4f5029f View commit details
    Browse the repository at this point in the history
  4. Merge pull request #1084 from rommapp/feat/implement-x-accel-redirect

    feat: Use X-Accel-Redirect to improve file download speed
    gantoine authored Aug 16, 2024
    Configuration menu
    Copy the full SHA
    0b77c70 View commit details
    Browse the repository at this point in the history
  5. misc: Pin Node version to v20

    Avoid the stack being automatically upgraded to a new Node version, when
    a different LTS is released.
    adamantike committed Aug 16, 2024
    Configuration menu
    Copy the full SHA
    0c3afc0 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #1095 from rommapp/misc/pin-node-20

    misc: Pin Node version to v20
    adamantike authored Aug 16, 2024
    Configuration menu
    Copy the full SHA
    bc0ad2e View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    d1c7d5c View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    bdc5b37 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #1093 from rommapp/romm-1091

    Add icon to gallery header for current platform
    gantoine authored Aug 16, 2024
    Configuration menu
    Copy the full SHA
    3c12c77 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    8743b03 View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2024

  1. better upload progress state

    gantoine committed Aug 17, 2024
    Configuration menu
    Copy the full SHA
    e9c09b4 View commit details
    Browse the repository at this point in the history
  2. fix uploading dups

    gantoine committed Aug 17, 2024
    Configuration menu
    Copy the full SHA
    4fb19b3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6c2f221 View commit details
    Browse the repository at this point in the history
  4. tweaks

    gantoine committed Aug 17, 2024
    Configuration menu
    Copy the full SHA
    65ffa44 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    625bfcc View commit details
    Browse the repository at this point in the history
  6. speed improvements

    gantoine committed Aug 17, 2024
    Configuration menu
    Copy the full SHA
    2d72769 View commit details
    Browse the repository at this point in the history
  7. actual real upload streaming

    gantoine committed Aug 17, 2024
    Configuration menu
    Copy the full SHA
    a071c0a View commit details
    Browse the repository at this point in the history
  8. mult progress by 100

    gantoine committed Aug 17, 2024
    Configuration menu
    Copy the full SHA
    83b4f32 View commit details
    Browse the repository at this point in the history
  9. parallel upload

    gantoine committed Aug 17, 2024
    Configuration menu
    Copy the full SHA
    716114e View commit details
    Browse the repository at this point in the history
  10. changes from self reivew

    gantoine committed Aug 17, 2024
    Configuration menu
    Copy the full SHA
    faba97d View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2024

  1. fixup trunk

    gantoine committed Aug 18, 2024
    Configuration menu
    Copy the full SHA
    d384195 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1096 from rommapp/upload-progress-bars

    Upload progress bars
    gantoine authored Aug 18, 2024
    Configuration menu
    Copy the full SHA
    608ada6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    49e4938 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #1097 from rommapp/hotifix-fake-compressed-files

    Skip compressed files if theyre invalid
    gantoine authored Aug 18, 2024
    Configuration menu
    Copy the full SHA
    794a454 View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2024

  1. Bump emulatorjs to 4.1.1

    gantoine committed Aug 20, 2024
    Configuration menu
    Copy the full SHA
    2ec349d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bb53b6e View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1100 from rommapp/emulatorjs-4.1.1

    Bump emulatorjs to 4.1.1
    gantoine authored Aug 20, 2024
    Configuration menu
    Copy the full SHA
    a6e2b8b View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2024

  1. feat: Use nginx mod_zip to generate multi-file zip downloads

    This change installs and configures the `mod_zip` nginx module [1],
    which allows nginx to stream ZIP files directly.
    
    It includes a workaround needed to correctly calculate CRC-32 values for
    included files, by including a new `server` section listening at port
    8081, only used for the file requests to be upstream subrequests that
    correctly trigger the CRC-32 calculation logic.
    
    Also, to be able to provide a `m3u` file generated on the fly, we add a
    `/decode` endpoint fully implemented in nginx using NJS, which receives
    a `value` URL param, and decodes it using base64. The decoded value is
    returned as the response.
    
    That way, the contents of the `m3u` file is base64-encoded, and set as
    part of the response, for `mod_zip` to include it in the ZIP file.
    
    [1] https://github.com/evanmiller/mod_zip
    adamantike committed Aug 21, 2024
    Configuration menu
    Copy the full SHA
    0fad8ac View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0680063 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1102 from rommapp/feat/use-nginx-mod-zip

    feat: Use nginx mod_zip to generate multi-file zip downloads
    adamantike authored Aug 21, 2024
    Configuration menu
    Copy the full SHA
    419f3ba View commit details
    Browse the repository at this point in the history
  4. misc: Use single SQLAlchemy engine and session maker

    As recommended by SQLAlchemy [1], this change makes a single
    instantiation of the database engine and session maker, instead of one
    entity per handler.
    
    It also uses the provided `URL` constructor to better define the
    database URL structure.
    
    [1] https://docs.sqlalchemy.org/en/20/core/connections.html#basic-usage
    adamantike committed Aug 21, 2024
    Configuration menu
    Copy the full SHA
    a85c84a View commit details
    Browse the repository at this point in the history
  5. Merge pull request #1105 from rommapp/misc/use-single-sqlalchemy-engine

    misc: Use single SQLAlchemy engine and session maker
    adamantike authored Aug 21, 2024
    Configuration menu
    Copy the full SHA
    84f3a2c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    5126ab1 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #1108 from rommapp/open-collectibe

    Switch funding to open collective
    gantoine authored Aug 21, 2024
    Configuration menu
    Copy the full SHA
    e55401f View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2024

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

Commits on Aug 25, 2024

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

Commits on Aug 26, 2024

  1. Configuration menu
    Copy the full SHA
    3e9f59c View commit details
    Browse the repository at this point in the history
  2. compile regexes

    gantoine committed Aug 26, 2024
    Configuration menu
    Copy the full SHA
    38d5ec1 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1109 from rommapp/rename-replace-illegal-chars

    Replace illegal fs chars in filenames
    gantoine authored Aug 26, 2024
    Configuration menu
    Copy the full SHA
    2ce3282 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #1118 from rommapp/upload-dialog-hotfixes

    Upload dialog hotfixed + clear button
    gantoine authored Aug 26, 2024
    Configuration menu
    Copy the full SHA
    6c158c5 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c2e5a66 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #1120 from rommapp/hotfix-detect-ruffleable-platform

    Fix detecting if platform is flash games
    gantoine authored Aug 26, 2024
    Configuration menu
    Copy the full SHA
    bff90fe View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2024

  1. revert one of the changes

    gantoine committed Aug 27, 2024
    Configuration menu
    Copy the full SHA
    4efb9de View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    351fa5b View commit details
    Browse the repository at this point in the history
  3. small fix

    gantoine committed Aug 27, 2024
    Configuration menu
    Copy the full SHA
    1c704dd View commit details
    Browse the repository at this point in the history
  4. Merge pull request #1116 from SaraVieira/feat/open-links-new-tab

    feat(UX) - Allow links to open in a new tab
    gantoine authored Aug 27, 2024
    Configuration menu
    Copy the full SHA
    ee93deb View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    9a75b85 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ec5c7ac View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f00749e View commit details
    Browse the repository at this point in the history
  8. revert pico change

    gantoine committed Aug 27, 2024
    Configuration menu
    Copy the full SHA
    fa240e0 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #1122 from SaraVieira/fix/icon-names

    fix(icons) - match icon names to platform names
    gantoine authored Aug 27, 2024
    Configuration menu
    Copy the full SHA
    6eef946 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    589482f View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    76e264a View commit details
    Browse the repository at this point in the history
  12. Merge pull request #1125 from rommapp/disable-auth-get-rom-content

    Disable auth on rom content get endpoint when env variable is present
    gantoine authored Aug 27, 2024
    Configuration menu
    Copy the full SHA
    e2adb24 View commit details
    Browse the repository at this point in the history
  13. Merge pull request #1124 from rommapp/trunk-prettier-vue

    Add support for formatting vuejs with trunk
    gantoine authored Aug 27, 2024
    Configuration menu
    Copy the full SHA
    eff1dc3 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    2acc822 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    198b77a View commit details
    Browse the repository at this point in the history
  16. Merge pull request #1126 from rommapp/retropie-known-bios-files

    Add known bios files from retropie project
    gantoine authored Aug 27, 2024
    Configuration menu
    Copy the full SHA
    d4ced87 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2024

  1. Configuration menu
    Copy the full SHA
    9d40c52 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1127 from rommapp/tilfoil-titledb-field

    Add titledb field to tinfoil response
    gantoine authored Aug 28, 2024
    Configuration menu
    Copy the full SHA
    f6197d4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e481691 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    307d906 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #1128 from rommapp/large-lib-performance-fixes

    Better performance for large collections
    gantoine authored Aug 28, 2024
    Configuration menu
    Copy the full SHA
    c00725f View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2024

  1. Configuration menu
    Copy the full SHA
    08acaf9 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1129 from rommapp/romm-1113

    [ROMM-1113] Add file path in rom edit window
    gantoine authored Aug 29, 2024
    Configuration menu
    Copy the full SHA
    e109d3e View commit details
    Browse the repository at this point in the history
  3. misc: Tag Docker image with major version only

    Add Docker image tag that only includes its major version, for users to
    be able to decide whether to pin their stacks to a patch, minor, or
    major version.
    
    Closes #1130.
    adamantike committed Aug 29, 2024
    Configuration menu
    Copy the full SHA
    626cf36 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #1131 from rommapp/misc/tag-image-major-version

    misc: Tag Docker image with major version only
    adamantike authored Aug 29, 2024
    Configuration menu
    Copy the full SHA
    4e3640c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    330755f View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4c2c6e3 View commit details
    Browse the repository at this point in the history
  7. Bump axios to 1.7.4

    gantoine committed Aug 29, 2024
    Configuration menu
    Copy the full SHA
    c0c80f7 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #1134 from rommapp/axios-1.7.4

    Bump axios to 1.7.4
    gantoine authored Aug 29, 2024
    Configuration menu
    Copy the full SHA
    880e155 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    f44d127 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #1133 from rommapp/romm-1107

    [ROMM-1107] Add env variable to disable in-browser emulation
    gantoine authored Aug 29, 2024
    Configuration menu
    Copy the full SHA
    c55d63b View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    91f958f View commit details
    Browse the repository at this point in the history
  12. Update Player.vue

    SaraVieira authored Aug 29, 2024
    Configuration menu
    Copy the full SHA
    3cc74e1 View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2024

  1. drop unused import

    gantoine committed Aug 30, 2024
    Configuration menu
    Copy the full SHA
    f4a49f3 View commit details
    Browse the repository at this point in the history
  2. Update Player.vue

    SaraVieira authored Aug 30, 2024
    Configuration menu
    Copy the full SHA
    f04c9f8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    341f76e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    86aae89 View commit details
    Browse the repository at this point in the history
  5. add steamgrid

    SaraVieira committed Aug 30, 2024
    Configuration menu
    Copy the full SHA
    dd61afd View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e70e2a7 View commit details
    Browse the repository at this point in the history
  7. run tryunk

    gantoine committed Aug 30, 2024
    Configuration menu
    Copy the full SHA
    e7041fb View commit details
    Browse the repository at this point in the history
  8. Merge pull request #1136 from SaraVieira/default-fastForward-rewind

    Default both fast forward and rewind to enabled
    gantoine authored Aug 30, 2024
    Configuration menu
    Copy the full SHA
    8700061 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    72f1930 View commit details
    Browse the repository at this point in the history
  10. Apply suggestions from code review

    Co-authored-by: Georges-Antoine Assi <3247106+gantoine@users.noreply.github.com>
    SaraVieira and gantoine authored Aug 30, 2024
    Configuration menu
    Copy the full SHA
    6de94aa View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    fcc6772 View commit details
    Browse the repository at this point in the history
  12. update edit modal

    SaraVieira committed Aug 30, 2024
    Configuration menu
    Copy the full SHA
    c63f62a View commit details
    Browse the repository at this point in the history
  13. run trunk

    SaraVieira committed Aug 30, 2024
    Configuration menu
    Copy the full SHA
    fd996e3 View commit details
    Browse the repository at this point in the history
  14. small refactor in component

    gantoine committed Aug 30, 2024
    Configuration menu
    Copy the full SHA
    3617783 View commit details
    Browse the repository at this point in the history
  15. fix trunk issues

    gantoine committed Aug 30, 2024
    Configuration menu
    Copy the full SHA
    a7aba73 View commit details
    Browse the repository at this point in the history
  16. small tweaks to ui

    gantoine committed Aug 30, 2024
    Configuration menu
    Copy the full SHA
    f3f6b6e View commit details
    Browse the repository at this point in the history
  17. fix ts

    SaraVieira committed Aug 30, 2024
    Configuration menu
    Copy the full SHA
    885aeab View commit details
    Browse the repository at this point in the history
  18. Merge branch 'release'

    gantoine committed Aug 30, 2024
    Configuration menu
    Copy the full SHA
    7978045 View commit details
    Browse the repository at this point in the history
  19. Merge pull request #1138 from SaraVieira/feat/unmatch-rom

    Allow user to unmatch rom
    gantoine authored Aug 30, 2024
    Configuration menu
    Copy the full SHA
    72fc6d8 View commit details
    Browse the repository at this point in the history