Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
f69dc15
the battle continues
Jun 19, 2021
b89188e
ranger
Jun 19, 2021
0f5cd62
remove couple branches in overlay
Jun 23, 2021
41532d2
gif: override slice()
matmen Jun 27, 2021
32e6f6a
Merge branch 'dev'
matmen Jun 27, 2021
697c3d6
1.2.8
matmen Jun 27, 2021
9764715
replace some of v1 with v2
Jul 9, 2021
f26173a
Merge branch 'dev' of https://github.com/matmen/ImageScript into dev
Jul 9, 2021
8a7550e
add contain, fit and cover methods
matmen Jul 20, 2021
8c6c3b1
Merge branch 'dev'
matmen Jul 20, 2021
0160218
1.2.9
matmen Jul 20, 2021
2a334a6
Add Deno badge
matmen Sep 17, 2021
1df0cd5
fix typo
matmen Sep 17, 2021
39c1840
revert imagescript iterators change
Sep 19, 2021
03a8831
codecs: add benchmarks
Sep 19, 2021
95c1acd
Create LICENSE
matmen Sep 20, 2021
3048088
Update issue templates
matmen Sep 20, 2021
e6ca7db
add more keywords
matmen Sep 21, 2021
7335619
[lgtm] fix: automatic semicolon insertion
matmen Sep 21, 2021
12f1c2e
Create codacy-analysis.yml
matmen Sep 21, 2021
10027fb
run security scans weekly
matmen Sep 23, 2021
8ddfd12
update font wasm
Oct 6, 2021
5ca39fa
[wip] rust port
Oct 16, 2021
40b7e21
[wip] rust port
Nov 3, 2021
7c926b8
[wip] rust port
Nov 4, 2021
ea59db6
[wip] rust port
Nov 6, 2021
b7752d2
[wip] rust port
Nov 11, 2021
fbaf98d
no thanks
Dec 17, 2021
80ebf29
[wip] rust port
Dec 19, 2021
8a659ce
[wip] rust port
Dec 23, 2021
93b33c0
[wip] rust port
Dec 31, 2021
2823017
fix newline boxes
Feb 18, 2022
85cd139
feat: TypeScript Intellisense Support (#17)
ray-1337 Mar 29, 2022
e46e0d1
remove auto assignments
matmen May 9, 2022
78adabd
[wip] rust port
Jun 8, 2022
ecdff2b
fix license
matmen Jun 25, 2022
03d8d40
faster png decoder
Jun 29, 2022
077a0de
fix(README): deno link
matmen Oct 26, 2022
9f09848
chore: update domain
matmen Oct 26, 2022
3272870
fix: add types to package.json
matmen Oct 26, 2022
d61031e
1.2.15
matmen Nov 27, 2022
c1f3699
fix: TextLayout wrapHardBreaks
matmen Jun 1, 2022
7493edd
fix: adjust license for dual licensing
matmen Feb 16, 2023
c80a3bb
1.2.16
matmen Feb 16, 2023
ba1e28c
docs: add links to examples
matmen Jun 1, 2022
6ae694c
fix(typings): invalid Image class static method name (#28)
ink0rr Sep 29, 2023
140a93e
fix: removing redundant calls to __convert_disposal_mode__ and exposi…
LeonChuu Sep 29, 2023
ba9873b
feat(licensing): include multi-licensing files in repo
matmen Nov 6, 2023
02132e3
fix: include multi-licensing notes in LICENSE
matmen Nov 6, 2023
e4836a0
fix(license): clarify dual licensing use
matmen Nov 6, 2023
5cc4758
1.2.17
matmen Nov 23, 2023
7570133
fix(v2): import non-module mem utils
matmen Jan 4, 2024
51b7791
1.2.18
matmen Jan 4, 2024
a498108
fix(docs): GIF loopCount default
matmen Jan 30, 2024
0801159
feat: export flip method (#35)
requizm Mar 24, 2024
9a15f58
1.3.0
matmen Mar 24, 2024
577ca48
fix: check buffer length before type conversion
matmen Apr 3, 2024
f670597
feat: Add strict types and TSDocs to `ImageScript.d.ts` (#43)
acdvorak Jun 1, 2025
066f4cb
1.3.1
matmen Jun 1, 2025
5d2a96f
fix: update gh actions to use active node releases
matmen May 23, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
name: Bug report
about: Create a report to help us improve
title: "[BUG]"
labels: bug

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. ...

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Platform:**
- OS: [e.g. iOS, Windows]
- Environment [e.g. Chrome, Firefox, NodeJS, Deno]
- Version [e.g. 1.0.1, 1.1.20]

**Additional context**
Add any other context about the problem here.
16 changes: 16 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
name: Feature request
about: Suggest an idea for this project
title: "[FR]"
labels: enhancement

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Additional context**
Add any other context or screenshots about the feature request here.
4 changes: 2 additions & 2 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
version: [14.x, 15.x, 16.x]
version: [20.x, 22.x, 23.x, 24.x]
os: [macos-latest, ubuntu-latest, windows-latest]

steps:
Expand All @@ -22,4 +22,4 @@ jobs:
with:
node-version: ${{ matrix.version }}

- run: npm test
- run: npm test
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ old/
coverage/
.DS_Store
.nyc_output/
.node_modules/
.node_modules/
bench/node_modules/
bench/package-lock.json
Loading