libdragon 10.6.0 → 10.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "libdragon",
3
- "version": "10.6.0",
3
+ "version": "10.8.0",
4
4
  "description": "This is a docker wrapper for libdragon",
5
5
  "main": "index.js",
6
6
  "engines": {
7
- "node": ">=14"
7
+ "node": ">=14",
8
+ "npm": ">=8"
8
9
  },
9
10
  "bin": {
10
11
  "libdragon": "./index.js"
@@ -39,10 +40,19 @@
39
40
  "lodash": "^4.17.20"
40
41
  },
41
42
  "devDependencies": {
43
+ "@semantic-release/changelog": "^6.0.1",
44
+ "@semantic-release/exec": "^6.0.3",
45
+ "@semantic-release/git": "^10.0.1",
46
+ "commitizen": "^4.2.4",
47
+ "cz-conventional-changelog": "^3.3.0",
42
48
  "ed64": "^2.0.4",
43
49
  "eslint": "^7.32.0",
44
50
  "pkg": "^5.5.2",
45
- "prettier": "^2.4.0"
51
+ "prettier": "^2.4.0",
52
+ "semantic-release": "^19.0.2"
53
+ },
54
+ "overrides": {
55
+ "minimist": "1.2.6"
46
56
  },
47
57
  "pkg": {
48
58
  "targets": [
@@ -53,5 +63,44 @@
53
63
  "assets": [
54
64
  "skeleton/**"
55
65
  ]
66
+ },
67
+ "release": {
68
+ "plugins": [
69
+ "@semantic-release/commit-analyzer",
70
+ "@semantic-release/release-notes-generator",
71
+ "@semantic-release/changelog",
72
+ "@semantic-release/npm",
73
+ "@semantic-release/git",
74
+ [
75
+ "@semantic-release/exec",
76
+ {
77
+ "prepareCmd": "./pack.sh"
78
+ }
79
+ ],
80
+ [
81
+ "@semantic-release/github",
82
+ {
83
+ "assets": [
84
+ {
85
+ "path": "libdragon-linux-x86_64.tar.gz",
86
+ "label": "Linux executable"
87
+ },
88
+ {
89
+ "path": "libdragon-macos-x86_64.tar.gz",
90
+ "label": "MacOS executable"
91
+ },
92
+ {
93
+ "path": "libdragon-win-x86_64.zip",
94
+ "label": "Windows executable"
95
+ }
96
+ ]
97
+ }
98
+ ]
99
+ ]
100
+ },
101
+ "config": {
102
+ "commitizen": {
103
+ "path": "./node_modules/cz-conventional-changelog"
104
+ }
56
105
  }
57
106
  }
package/skeleton/Makefile CHANGED
@@ -13,7 +13,7 @@ hello.z64: N64_ROM_TITLE="Hello World"
13
13
  $(BUILD_DIR)/hello.elf: $(OBJS)
14
14
 
15
15
  clean:
16
- rm -f $(BUILD_DIR) *.z64
16
+ rm -f $(BUILD_DIR)/* *.z64
17
17
  .PHONY: clean
18
18
 
19
19
  -include $(wildcard $(BUILD_DIR)/*.d)
package/CHANGELOG.md DELETED
@@ -1,540 +0,0 @@
1
- # Change Log
2
-
3
- ## [10.6.0] - 2022-04-09
4
- ### Fixed
5
-
6
- - Fix a path bug that would cause incorrect behaviour when the command is run
7
- deeper than a single level in the project folder.
8
- - Fix a potential issue where `build.sh`might be incorrectly found inexistant
9
- if the OS is picky about the paths to have native separators.
10
- - Only save project information when necessary. Previously actions like `help`
11
- were saving project info mistakenly.
12
-
13
- ### Added
14
-
15
- - `disasm` action to simplify disassembling ELF files generated by the toolchain.
16
- - `version` action to display current version.
17
- - `destroy` action to remove the libdragon project.
18
- - Additional documentation for flags.
19
- - Print duration information when verbose.
20
-
21
- ### Changed
22
-
23
- - Refactored out NPM related functions.
24
- - Moved usage parameters to respective actions files as a refactor.
25
- - It is possible to provide an absolute path to init `--directory` as long as it
26
- is inside the project directory. Previously it was possible to provide somewhere
27
- outside the project, but it would fail with an unexpected error.
28
- - Simplify saving mechanism. Each action now internally resolves into the data
29
- to save if any.
30
-
31
- ## [10.4.2] - 2022-04-03
32
-
33
- ### Fixed
34
-
35
- - Make sure actions depending on an `init` fail in a non-project directory to
36
- keep the project state consistent. This fixes #51.
37
- - `update` action now tries to update the toolchain image as well. Previously
38
- this was not the case contrary to what someone would expect. Considering it won't
39
- change the behaviour for non-latest images and the toolchain did not have any
40
- breaking changes for a long time, this is not considered a breaking change either.
41
- - `start` action was printing stuff other than the container id. It doesn't
42
- anymore.
43
- - Stop unnecessarily printing container id and a few messages related to updates.
44
- - Fix a potential race condition that might cause unexpected failures.
45
- - Correct some errors' exit codes.
46
- ### Added
47
-
48
- - A new exit code (`4`) to represent unexpected conditions.
49
-
50
- ### Changed
51
-
52
- - Deprecated providing the image flag for `install` action by displaying a
53
- warning and removing it from documentation, without changing behaviour even
54
- though it is higly unlikely this feature was ever used. It mainly exists for
55
- historical reasons and it wil be removed in next major release.
56
- - Update documentation to warn against changing strategy is a one way operation.
57
- - Update documentation to reflect `update` action changes.
58
- - Minor refactors.
59
- - Update submodule for local environment.
60
-
61
- ## [10.4.1] - 2022-03-23
62
-
63
- ### Fixed
64
-
65
- - Update the root makefile to utilize `SOURCE_DIR` for example builds. Then we are
66
- able to map container files to local files properly with a generic regex in the
67
- problem matcher. This fixes #13 and does not change any behaviour.
68
- - Add missing examples to the vscode run configurations.
69
- - Install and build libdragon related things in the container when `exec` and
70
- `make` causes a new container run. This was previously prevented on `v10.3.1`
71
- because it was unnecessarily delaying all exec operations when the container
72
- is started. Refactoring things allowed me to realize this can be improved
73
- instead of forcing the user to do a manual `install`.
74
- - Fix a potential issue that may cause the git commands to run in current folder
75
- instead of the project root.
76
- - Attach the error handler once for spawnProcess.
77
- - Update vulnerable dependencies.
78
-
79
- ### Added
80
-
81
- - `--directory` option to customize vendoring location.
82
- - `--strategy` option to select a vendoring strategy. Currently supported options
83
- are `submodule`, `subtree` and `manual`. The default is `submodule` and `manual`
84
- can be used to opt-out of auto vendoring. Useful if the user wants to utilize
85
- a different vendoring strategy and opt-out of the auto-managed git flows.
86
-
87
- ### Changed
88
-
89
- - Migrate to a json file for persistent project information.
90
- - Only save the configuration file on successful exit except for the initial
91
- migration.
92
- - Do not prevent init if there is a file named libdragon in the target folder.
93
- This used to cause problems on windows but I cannot reproduce it anymore
94
- with `2.33.1.windows.1`. It may be something caused by my old configuration.
95
- - Minor performance improvements.
96
-
97
- ## [10.3.1] - 2022-01-25
98
-
99
- ### Fixed
100
-
101
- - Do not try to parse arguments after exec/make. They used to get evaluated as
102
- libdragon paramaters previously, preventing passing down -v to the container
103
- make for example.
104
- - Docker image update issues
105
- - Attempt an image update whenever the image flag is provided. Previously this
106
- was only done if a different image name is provided, preventing the update of
107
- the latest image. Previously not providing an image name was behaving the same
108
- so this is not a breaking change.
109
- - Start action used to update the image if provided but this bug was already
110
- prevented by previous fixes by not accepting the image flag for actions other
111
- than init/update/install. Start action no longer tries to update the image
112
- regardless.
113
-
114
- ### Changed
115
-
116
- - Only accept the image flag for init, install, and update actions as documented.
117
- - Improve documentation for the `init` and `install` actions.
118
- - Do not attempt an `install` when running `exec`, just start the container. If
119
- there is a half-baked container, a manual `install` will potentially restore it.
120
- - Update libdragon.
121
-
122
- ### Added
123
-
124
- - Extra information for skipping the image flag when doing init for an already
125
- initialized project.
126
-
127
- ## [10.3.0] - 2022-01-20
128
-
129
- ### Changed
130
-
131
- - Update dependencies.
132
- - Detailed help output.
133
- - Move action descriptions to `libdragon help`.
134
- - Update libdragon to latest version for local build.
135
-
136
- ### Added
137
-
138
- - Shorthand flag support.
139
-
140
- ## [10.2.1] - 2021-10-14
141
-
142
- ### Changed
143
-
144
- - Updated ed64.
145
-
146
- ### Fixed
147
-
148
- - Fix skeleton project to match latest libdragon.
149
-
150
- ## [10.2.0] - 2021-10-10
151
-
152
- ### Added
153
-
154
- - Container discovery. The tool can now find a container even if `.git` is lost.
155
- - A few additional error messages for some potentially confusing cases such as
156
- already having a file with `libdragon` like name.
157
-
158
- ### Changed
159
-
160
- - Show more output for downloading the container and initial git operations.
161
- - Remove an extra log during initialization.
162
- - The submodule was always being initialized when a container is started. This
163
- was making some actions inconsistent. For example `install` or `make` action
164
- was trying to re-initialize the submodule unnecessarily. This is fixed by only
165
- initializing it with the `init` action. If any of those need to re-init the
166
- container, now they assume there is an intact libdragon folder to use.
167
- - Similarly a git repository is not initialized unnecessarily anymore.
168
- - `update` and `install` are now able to start containers if necessary.
169
- - Always try to copy skeleton files, they won't overwrite anything already.
170
- - Do not re-initialize if there is a `.libdragon` folder. We now only try to
171
- start it in this case. If it is not a complete container, it can probably be
172
- recovered by a `libdragon install` or `libdragon update`.
173
-
174
- ### Fixed
175
-
176
- - Fix wording for libdragon install on the container.
177
- - Improve image name persitence such that the tool finds and updates it more
178
- consistently.
179
-
180
- ## [10.1.0] - 2021-10-07
181
-
182
- ### Added
183
-
184
- - `exec` action to execute arbitrary commands in the container with TTY support.
185
- This also improves the color output support as docker now knows it is using TTY.
186
- - Add more verbose logging for skeleton project copy.
187
-
188
- ### Changed
189
-
190
- - Removed partially not working `--byte-swap` option. It does not already work
191
- with the new libdragon build system so there is no need keeping it in the tool.
192
-
193
- ### Fixed
194
-
195
- - Publish skeleton project files to NPM.
196
-
197
- ## [10.0.0] - 2021-10-04
198
-
199
- ### Changed
200
-
201
- - A complete re-write of the tool. Check documentation for the new usage. It is
202
- much more straightforward to use now. `libdragon make` behaves almost the same.
203
-
204
- ## [9.0.0] - 2021-09-06
205
-
206
- ### Changed
207
-
208
- - Updated libdragon. We will be changing the update mechanism to be based on a
209
- git pull, so listing them here will not be useful anymore, let's not bother now.
210
- - Start using the new build system.
211
- - Update node engine spec to be at least 14.
212
- - Added minimum docker version to readme.
213
-
214
- ### Added
215
-
216
- - Github actions integration
217
- - Start building a standalone Windows executable
218
-
219
- ### Fixed
220
-
221
- - Fixed changelog dates to ISO8601
222
-
223
- ## [8.0.0] - 2021-07-28
224
-
225
- ### Changed
226
-
227
- - Removed make, download, init, buildDragon, prepareDragon, and installDependencies NPM scripts
228
- - Update the necessary vscode and travis configuration
229
- - Update the readme to match - this also fixes #31
230
- - Improve fastpath of dfs_read (https://github.com/DragonMinded/libdragon/pull/133)
231
- - Refactor n64tool (https://github.com/DragonMinded/libdragon/pull/153, https://github.com/DragonMinded/libdragon/pull/155)
232
- - It no longer support byte-swapping and only generates a z64 file.
233
- - Change test bench Makefile to reflect latest changes
234
-
235
- ### Fixed
236
-
237
- - Zero-initialize the token array to avoid -Werror=maybe-uninitialized (https://github.com/DragonMinded/libdragon/pull/134)
238
- - Initialize arguments to main libdragon entrypoint (https://github.com/DragonMinded/libdragon/pull/136)
239
- - SD support fixes and dragonfs fopen fix (https://github.com/DragonMinded/libdragon/pull/137)
240
- - lib/include paths in tests Makefile (https://github.com/DragonMinded/libdragon/pull/138)
241
- - Reenable test_timer_ticks for emulators (https://github.com/DragonMinded/libdragon/pull/140)
242
- - n64tool: return error in case the seek offset required backward seek (https://github.com/DragonMinded/libdragon/pull/144)
243
- - Add missing extern "C" in debug.h (https://github.com/DragonMinded/libdragon/pull/146)
244
- - Ensure C++ global constructors are not garbage collected by ld (https://github.com/DragonMinded/libdragon/pull/148)
245
- - Fix clipped RDP rectangle drawing (https://github.com/DragonMinded/libdragon/pull/147)
246
- - Enable byte swap flag for the make action and update documentation accordingly
247
- - Skip the second parameter to the libdragon command as well
248
- - Enable --byte-swap flag for the make action
249
-
250
- ### Added
251
-
252
- - restart_timer and new_timer_stopped functions (https://github.com/DragonMinded/libdragon/pull/131)
253
- - dfs_rom_addr (https://github.com/DragonMinded/libdragon/pull/133)
254
- - Implement EEPROM Filesystem and test ROM (https://github.com/DragonMinded/libdragon/pull/125)
255
- - ed64romconfig binary (https://github.com/DragonMinded/libdragon/pull/153, https://github.com/DragonMinded/libdragon/pull/155)
256
- - Support for RTC status/read/write commands (https://github.com/DragonMinded/libdragon/pull/152)
257
- - Generic libdragon NPM script
258
-
259
- ## [7.0.0] - 2021-06-06
260
-
261
- ### Changed
262
-
263
- - Update GCC (10.2.0), binutils (2.36.1) and newlib (4.1.0) (https://github.com/DragonMinded/libdragon/pull/130)
264
- - Remove internal forceLatest parameter
265
- - Refactor internal constants
266
- - Update dependencies
267
-
268
- ### Fixed
269
-
270
- - Free stdio file handles when closed (https://github.com/DragonMinded/libdragon/pull/128)
271
-
272
- ### Added
273
-
274
- - Default exception handler (https://github.com/DragonMinded/libdragon/pull/126)
275
- - New debugging library (https://github.com/DragonMinded/libdragon/pull/130)
276
- - Not final, may have bugs or it may change in the future
277
-
278
- ## [6.0.2] - 2021-03-04
279
-
280
- ### Fixed
281
-
282
- - Fix icache ops (https://github.com/DragonMinded/libdragon/pull/122)
283
- - Rewrite timer.c to avoid messing up the COP0 hardware counter (https://github.com/DragonMinded/libdragon/pull/123)
284
- - Fix 16k EEPROM detection (https://github.com/DragonMinded/libdragon/pull/124)
285
-
286
- ### Added
287
-
288
- - Support GCC nested functions (https://github.com/DragonMinded/libdragon/pull/122)
289
-
290
- ## [6.0.1] - 2021-02-07
291
-
292
- ### Changed
293
-
294
- - Makefile: add -ffunction-sections and -fdata-sections to libdragon (https://github.com/DragonMinded/libdragon/pull/121)
295
- - Running vscode tasks now always rebuild libdragon examples and tests
296
- - Root makefile always rebuilds examples and tests
297
- - Update readme
298
-
299
- ### Fixed
300
-
301
- - C++ test example works now (https://github.com/DragonMinded/libdragon/pull/118)
302
- - Delay functions work correctly now (https://github.com/DragonMinded/libdragon/pull/120)
303
- - Fix broken bench makefile
304
- - Fix incorrect rom name for resolution test vscode launch configuration
305
-
306
- ### Added
307
-
308
- - `installDragon` vscode task to make and install libdragon to the container
309
-
310
- ## [6.0.0] - 2021-01-23
311
-
312
- ### Changed
313
-
314
- - Update base Dockerfile to use the latest toolchain setup and make it deduce processor count for the toolchain build
315
- - `make` action does not first restart the container anymore. This will result in minor performance gains when running make
316
- - `libdragon` command does not always exit with code 1 anymore, it instead echoes the underlying error code if known
317
- - Updated toolchain dockerfile to strip symbols from executables and remove locales and built a new base image. Closes #8
318
- - Move code into modules
319
- - Do not put unnecessary files into the NPM package
320
- - Renamed `dragonInstall` npm script to `prepareDragon`
321
- - Readme improvements
322
-
323
- ### Fixed
324
-
325
- - Start using child_process spawn to prevent buffer issues. Fixes #2
326
- - Colors are now properly displayed when using the wrapper. Fixes #21
327
-
328
- ### Added
329
-
330
- - Readme update instructions. Closes #20
331
- - Readme root makefile instructions
332
- - A red message to show the error if any, including subprocess exit codes
333
- - An additional `installDependencies` libdragon action and NPM script. It does what we used to do after `download` and `start` when running `install`
334
- - `-fdiagnostics-color` for the local test bench to enable color output
335
-
336
- ## [5.0.0] - 2021-01-16
337
-
338
- ### Changed
339
-
340
- - dfs: fix performance of dfs_seek to be constant-time (https://github.com/DragonMinded/libdragon/pull/115)
341
- - This changes the file system layout
342
-
343
- ### Fixed
344
-
345
- - n64sys: fix dma cache ops (https://github.com/DragonMinded/libdragon/pull/116)
346
- - Added a new root makefile to batch multiple operations. Fixes #10
347
- - Added local search paths to improve test bench compile time. Fixes #18
348
-
349
- ### Added
350
-
351
- - Exposed the TV_TYPE at 0x80000300 as a n64sys function (https://github.com/DragonMinded/libdragon/pull/113)
352
- - Initial libdragon testsuite (https://github.com/DragonMinded/libdragon/pull/117)
353
- - Launch configurations for the new test suite and existing examples
354
- - Launch configuration to clean everything
355
-
356
- ## [4.1.4] - 2020-12-31
357
-
358
- ### Changed
359
-
360
- - Update readme for submodule update procedure (https://github.com/anacierdem/libdragon-docker/pull/17)
361
-
362
- ### Fixed
363
-
364
- - Prevent newlines in the output (https://github.com/anacierdem/libdragon-docker/pull/19)
365
-
366
- ## [4.1.3] - 2020-12-16
367
-
368
- ### Changed
369
-
370
- - Removed broken patreon shield. This is only a readme change.
371
-
372
- ## [4.1.2] - 2020-12-15
373
-
374
- ### Changed
375
-
376
- - Updated readme on how to use this repository.
377
- - Update dependencies.
378
- - Update ed64 to `1.2.0`.
379
-
380
- ### Fixed
381
-
382
- - n64tool: fix bug in detection of unaligned image sizes (https://github.com/DragonMinded/libdragon/pull/109)
383
- - tools/build: Set default number of jobs to number of processors (https://github.com/DragonMinded/libdragon/pull/111)
384
- - Build script fixes (https://github.com/DragonMinded/libdragon/pull/112)
385
-
386
- ## [4.1.1] - 2020-10-05
387
-
388
- ### Changed
389
-
390
- - Updated readme on how to use this repository. Fixes #14.
391
- - Update dependencies.
392
-
393
- ### Fixed
394
-
395
- - Fix examples' n64tool argument order. (https://github.com/DragonMinded/libdragon/pull/103)
396
- - Change ucodetest Makefile mode from 775 to 644. (https://github.com/DragonMinded/libdragon/pull/104)
397
-
398
- ## [4.1.0] - 2019-05-21
399
-
400
- ### Fixed
401
-
402
- - RSP macros now supports negative offsets. (https://github.com/DragonMinded/libdragon/pull/99)
403
- - Exception handler properly works and sets cause register to `cr` on `reg_block_t`. (https://github.com/DragonMinded/libdragon/pull/95)
404
- - Padding on data sections were causing boot issues. They are properly padded. (https://github.com/DragonMinded/libdragon/pull/98)
405
- - n64tool: Broken ROM issue is fixed when doing byte-swapping or zero-padding. (https://github.com/DragonMinded/libdragon/pull/97)
406
- - GCC 10 support with default `-fno-common`. (https://github.com/DragonMinded/libdragon/pull/96)
407
-
408
- ### Added
409
-
410
- - Exception cause map is now implemented and it is accessible via `info` on `exception_t`. (https://github.com/DragonMinded/libdragon/pull/95)
411
-
412
- ### Changed
413
-
414
- - n64tool: Less IO operations for faster ROM build times. (https://github.com/DragonMinded/libdragon/pull/97)
415
-
416
- ## [4.0.1] - 2019-04-25
417
-
418
- ### Fixed
419
-
420
- - Add missing vscode files.
421
-
422
- ## [4.0.0] - 2019-04-24
423
-
424
- ### Added
425
-
426
- - Add ability to run a local test bench with ed64 support.
427
- - Add `dragonInstall` and `build` NPM scripts for managing the test bench.
428
- - Add vscode files for quick test bench execution.
429
- - `devDependencies` are now also searched for makefiles and installed in the container.
430
-
431
- ### Changed
432
-
433
- - Container mount path for this repository (NPM scripts) is now the repository root instead of `.\libdragon-source`.
434
- - make commands are now executed inside `.\libdragon-source`.
435
- - This will not effect consumers unless they depend on container's `/libdragon` path for explicitly accessing source files or relative paths with make's `-C`. They are now relative to repository root.
436
- - `--mount-path` is still supported although not used on this repository anymore. These changes do not effect a local/global installation.
437
-
438
- ## [3.2.0] - 2020-04-24
439
-
440
- ### Changed
441
-
442
- - MIT license
443
-
444
- ## [3.1.0] - 2019-03-25
445
-
446
- ### Added
447
-
448
- - Add function to detect expansion pak (https://github.com/DragonMinded/libdragon/pull/91)
449
-
450
- ### Changed
451
-
452
- - No need a tag for a travis deploy anymore.
453
-
454
- ## [3.0.0] - 2019-02-11
455
-
456
- ### Changed
457
-
458
- - Fixed vand opcode (https://github.com/DragonMinded/libdragon/pull/86)
459
- - Reimplement mtc2/mfc2 with the extended syntax allowed by RSP (https://github.com/DragonMinded/libdragon/pull/89)
460
- - Improve error message when using MIPS opcodes not available on RSP (https://github.com/DragonMinded/libdragon/pull/90)
461
-
462
- ### Added
463
-
464
- - Transfer Pak support (https://github.com/DragonMinded/libdragon/pull/88)
465
-
466
- ## [2.0.5] - 2019-12-07
467
-
468
- ### Changed
469
-
470
- - Added support information.
471
-
472
- ## [2.0.4] - 2019-12-07
473
-
474
- ### Changed
475
-
476
- - Updated readme.
477
- - Removed version injection as the versions have diverged with libdragon.
478
-
479
- ## [2.0.3] - 2019-12-06
480
-
481
- ### Changed
482
-
483
- - Updated readme.
484
- - Use base version for `start` and `download` actions if self-building in CI.
485
- - Remove unnecessary toolchain start on `update` action.
486
- - Start correct version on `buildDragon`.
487
-
488
- ## [2.0.2] - 2019-11-30
489
-
490
- ### Changed
491
-
492
- - Running `install` command now starts the container.
493
-
494
- ## [2.0.1] - 2019-11-30
495
-
496
- ### Changed
497
-
498
- - Updated repository URL.
499
-
500
- ## [2.0.0] - 2019-11-30
501
-
502
- ### Changed
503
-
504
- - Separate the docker deployment process from library code.
505
- - Upgraded `binutils` to 2.33.1.
506
- - Improved ucode example and fixed byte alignment.
507
- - Removed confusing assemply macros from `ucode.S`. This changed vector and scalar register names.
508
- - Built a new base docker hub image tagged `toolchain`.
509
- - Running `download` command no longer starts the container.
510
-
511
- ## [1.3.15] - 2019-11-01
512
-
513
- ### Changed
514
-
515
- - `libdragon install` should skip CI checks.
516
-
517
- ## [1.3.14] - 2019-10-31
518
-
519
- ### Changed
520
-
521
- - Skip make install if no Makefile is found.
522
-
523
- ## [1.3.12] - 2019-10-29
524
-
525
- ### Changed
526
-
527
- - Reduce response time for NPM commands.
528
- - Remove unnecessary console statements and double logs.
529
-
530
- ## [1.3.11] - 2019-10-29
531
-
532
- ### Fixed
533
-
534
- - Fix problem with wait ticks. They do not lock the system now.
535
-
536
- ## [1.3.9] - 2019-10-27
537
-
538
- ### Added
539
-
540
- - Add texture mirroring. https://github.com/DragonMinded/libdragon/commit/00a6cc8e6d136cf2578a50320f6ff0814dfb6657