@simeonradivoev/gameflow-store 0.1.2 → 0.1.3

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/README.md ADDED
@@ -0,0 +1,14 @@
1
+ # The Gameflow Store
2
+ This is the store for the [Gameflow Deck](https://github.com/simeonradivoev/gameflow-deck)
3
+
4
+ ## Contributing
5
+ There are defined schema files for all entries. Using VSCode should pick them up automatically.
6
+
7
+ `buckets/emulators`
8
+ Emulator definitions that define where to download them as well as their metadata
9
+ `buckets/games`
10
+ Free game definitions. Currently only direct downloads work.
11
+
12
+ For details on the schema check out the comments in the schema files. Or using VS code.
13
+
14
+ To Submit a an addition or change either do a PR or open an Issue on store's [Github](https://github.com/simeonradivoev/gameflow-store)
@@ -23,7 +23,7 @@
23
23
  "system": "win32:x64",
24
24
  "saves": {
25
25
  "saves": {
26
- "cwd": "{{GAMEDIR}}",
26
+ "cwd": "{{{GAMEDIR}}}",
27
27
  "globs": [
28
28
  "*.sav"
29
29
  ]
@@ -19,13 +19,22 @@
19
19
  "saves": {
20
20
  "win32:x64": {
21
21
  "saves": {
22
- "cwd": "{{GAMEDIR}}",
22
+ "cwd": "{{{GAMEDIR}}}",
23
23
  "globs": [
24
24
  "qbj3/autosave/*.sav",
25
25
  "qbj3/*.sav"
26
26
  ]
27
27
  }
28
- }
28
+ },
29
+ "linux:x64": {
30
+ "saves": {
31
+ "cwd": "{{{HOMEDIR}}}/.ironwail",
32
+ "globs": [
33
+ "qbj3/autosave/*.sav",
34
+ "qbj3/*.sav"
35
+ ]
36
+ }
37
+ }
29
38
  },
30
39
  "downloads": {
31
40
  "win-eu": {
package/package.json CHANGED
@@ -1,7 +1,11 @@
1
1
  {
2
2
  "name": "@simeonradivoev/gameflow-store",
3
- "version": "0.1.2",
4
- "author": "Simeon Radivoev",
3
+ "version": "0.1.3",
4
+ "author": {
5
+ "name": "Simeon Radivoev",
6
+ "email": "work@simeonradivoev.com",
7
+ "url": "https://simeonradivoev.com"
8
+ },
5
9
  "repository": {
6
10
  "type": "git",
7
11
  "url": "git+https://github.com/simeonradivoev/gameflow-store.git"
@@ -19,7 +23,8 @@
19
23
  ],
20
24
  "homepage": "https://github.com/simeonradivoev/gameflow-store#readme",
21
25
  "keywords": [
22
- "store"
26
+ "store",
27
+ "gameflow"
23
28
  ],
24
29
  "license": "AGPL-3.0",
25
30
  "publishConfig": {