Skip to content

Commit 851b32f

Browse files
committed
git subrepo pull programs/jspaint
subrepo: subdir: "programs/jspaint" merged: "34e151cf" upstream: origin: "https://github.com/1j01/jspaint.git" branch: "master" commit: "34e151cf" git-subrepo: version: "0.4.6" origin: "???" commit: "???"
1 parent c4fce91 commit 851b32f

413 files changed

Lines changed: 67694 additions & 30468 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

β€Žprograms/jspaint/.eslintrc.jsβ€Ž

Lines changed: 0 additions & 204 deletions
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
custom: ["https://www.paypal.me/IsaiahOdhner"]

β€Žprograms/jspaint/.gitrepoβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[subrepo]
77
remote = https://github.com/1j01/jspaint.git
88
branch = master
9-
commit = 58828ca32307485ccdea318c0fe4d3a7cfa14124
10-
parent = badf1d399adec6701af3fc3b98f1ef997ec6e0be
9+
commit = 34e151cfaf11fdb3700348cadfa8033d25e70921
10+
parent = c4fce9191f2fce7184b5811f4c9f6bc9933138c4
1111
method = merge
12-
cmdver = 0.4.3
12+
cmdver = 0.4.6

β€Žprograms/jspaint/.travis.ymlβ€Ž

Lines changed: 0 additions & 22 deletions
This file was deleted.
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"recommendations": [
3-
"streetsidesoftware.code-spell-checker"
3+
"streetsidesoftware.code-spell-checker",
4+
"dbaeumer.vscode-eslint"
45
]
56
}
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
// To use this configuration, you must run Chrome with a flag:
9+
// google-chrome --remote-debugging-port=9222 http://127.0.0.1:1999
10+
// or for Windows:
11+
// start chrome --remote-debugging-port=9222 http://127.0.0.1:1999
12+
// and Chrome must not be running beforehand, as the flag won't apply otherwise.
13+
// And you need to have the dev server running:
14+
// npm run dev
15+
// If you really don't want to close Chrome, you can use a temporary profile:
16+
// mkdir C:\TempChromeProfile
17+
// echo {"browser": {"has_seen_welcome_page": true, "default_browser_infobar_last_declined": "13354566465257726"}} > C:\TempChromeProfile\Preferences
18+
// start chrome --remote-debugging-port=9222 --user-data-dir="C:\TempChromeProfile" --disable-fre --no-default-browser-check --no-first-run http://127.0.0.1:1999
19+
// rmdir /s /q C:\TempChromeProfile
20+
"type": "chrome",
21+
"request": "attach",
22+
"name": "Attach to Chrome",
23+
"port": 9222,
24+
"urlFilter": "http://127.0.0.1:1999/*",
25+
"webRoot": "${workspaceFolder}"
26+
},
27+
{
28+
// https://www.electronjs.org/docs/latest/tutorial/debugging-vscode
29+
"name": "Electron: Debug Main Process",
30+
"type": "node",
31+
"request": "launch",
32+
"cwd": "${workspaceFolder}",
33+
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
34+
"windows": {
35+
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd"
36+
},
37+
"args": [
38+
"."
39+
],
40+
"outputCapture": "std"
41+
}
42+
]
43+
}

0 commit comments

Comments
Β (0)