Skip to content

Commit

Permalink
fix dummy backend
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewbenington committed Oct 5, 2024
1 parent 73e9c86 commit 72ec6ea
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=0.2.0
VERSION=0.4.0
.PHONY: help
help: # Display this help.
@awk 'BEGIN {FS = ":.*#"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z_0-9-]+:.*?#/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^#@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"productName": "OpenHome",
"name": "openhome",
"version": "0.3.0",
"version": "0.4.0",
"description": "A tool for moving Pokémon between game saves",
"keywords": [
"pokemon",
Expand Down
1 change: 1 addition & 0 deletions src/renderer/backend/dummyBackend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ const DummyBackend: BackendInterface = {
/* application */
setHasChanges: async () => {},
pickFolder: async () => E.left('no backend in use'),
getResourcesPath: async () => '',
}

export default DummyBackend

0 comments on commit 72ec6ea

Please sign in to comment.