Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: type-driven/ImageScript
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: matmen/ImageScript
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 15 commits
  • 12 files changed
  • 5 contributors

Commits on Sep 29, 2023

  1. Configuration menu
    Copy the full SHA
    6ae694c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    140a93e View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2023

  1. Configuration menu
    Copy the full SHA
    ba9873b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    02132e3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e4836a0 View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2023

  1. 1.2.17

    matmen committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    5cc4758 View commit details
    Browse the repository at this point in the history

Commits on Jan 4, 2024

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

    matmen committed Jan 4, 2024
    Configuration menu
    Copy the full SHA
    51b7791 View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2024

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

Commits on Mar 24, 2024

  1. feat: export flip method (matmen#35)

    Co-authored-by: Mathis Mensing <github@matmen.dev>
    requizm and matmen authored Mar 24, 2024
    Configuration menu
    Copy the full SHA
    0801159 View commit details
    Browse the repository at this point in the history
  2. 1.3.0

    matmen committed Mar 24, 2024
    Configuration menu
    Copy the full SHA
    9a15f58 View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2024

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

Commits on Jun 1, 2025

  1. feat: Add strict types and TSDocs to ImageScript.d.ts (matmen#43)

    This PR adds detailed type declarations and TSDoc comments for all exported members, as well as several new `type` and `interface` exports for ease of use.
    
    E.g.:
    
    ```ts
    export class Image {
      // ...
    
      /**
       * Encodes the image into a JPEG.
       *
       * @param quality `1`-`100`, where `1` is lowest quality (highest compression)
       *     and `100` is highest quality (lowest compression). Default: `90`
       */
      async encodeJPEG(quality?: JPEGQuality): Promise<Uint8Array>;
    
      // ...
    }
    
    /**
     * - `0` = **lowest** quality (smallest file size)
     * - `100` = **highest** quality (largest file size)
     */
    export type JPEGQuality =
      | 1
      | 2
      | 3
      // ...
      | 98
      | 99
      | 100;
    ```
    acdvorak authored and matmen committed Jun 1, 2025
    Configuration menu
    Copy the full SHA
    f670597 View commit details
    Browse the repository at this point in the history
  2. 1.3.1

    matmen committed Jun 1, 2025
    Configuration menu
    Copy the full SHA
    066f4cb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5d2a96f View commit details
    Browse the repository at this point in the history
Loading