Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
80d4e50
Electron soon?
RobChiocchio Nov 16, 2018
3d3a98b
CSS
RobChiocchio Nov 16, 2018
d6b6f23
Tracked vscode folder
RobChiocchio Nov 16, 2018
d063853
Working on DLLifying Gildor's Extractor
RobethX Nov 17, 2018
5855f9e
Forgot to save
RobethX Nov 17, 2018
3de3d12
fixed tabs
RobethX Nov 17, 2018
003c69b
Last commit before seperating project
RobethX Nov 17, 2018
e1c9150
Removed old code and moved new patcher to parent dir
RobethX Nov 17, 2018
775630f
Loading bar done
RobethX Nov 18, 2018
f89fee7
Started select console key box
RobethX Nov 18, 2018
45add45
New logo
RobethX Nov 18, 2018
c5e45dc
Merged patch code into renderer script
RobethX Nov 20, 2018
d1d15af
electron-builder
RobethX Nov 20, 2018
31b40d9
Do not publish from CI script
RobethX Nov 20, 2018
8e1417d
Started recoding main patch function from old patcher
RobethX Nov 20, 2018
f8e0293
UI tweaks
RobethX Nov 25, 2018
f505071
Formatting
RobChiocchio Nov 26, 2018
8f82fb4
TODO: hex editing buffer?
RobChiocchio Nov 26, 2018
1230322
Code quality fixes and renovate config
RobethX Nov 28, 2018
bfb07ae
Analytics
RobethX Nov 28, 2018
3bafd6b
Added temporary badges to track branch
RobethX Nov 28, 2018
2a937f6
Style tweaks
RobethX Nov 28, 2018
f88e3d1
Merge branch 'electron' of https://github.com/RobethX/BL2-MP-Mods int…
RobethX Nov 28, 2018
f6362c7
Merge pull request #40 from RobethX/electron
RobethX Nov 28, 2018
928e443
Fixed badges for master branch
RobethX Nov 28, 2018
2220aee
Added blank index to enable github pages
RobChiocchio Nov 28, 2018
6624d7b
Set theme jekyll-theme-slate
RobethX Nov 28, 2018
2765371
tag
RobChiocchio Nov 28, 2018
9e9fdbc
Merge branch 'master' of https://github.com/RobethX/BL2-MP-Mods
RobChiocchio Nov 28, 2018
eb2986e
Replaced log with logrocket in renderer
RobChiocchio Nov 28, 2018
7860359
Update README.md
RobethX Nov 28, 2018
d107326
Do I really need Sentry?
RobethX Nov 28, 2018
b93d69e
Added teleport hotkey (insert)
RobethX Nov 29, 2018
4b00539
Quick commit before I try switching to typescript again
RobChiocchio Nov 30, 2018
862ba05
Forget typescript - restructuring code
RobChiocchio Nov 30, 2018
6de5095
Make seperate script for hexediting
RobChiocchio Dec 12, 2018
8384060
Moving hex mod stuff to json
RobChiocchio Jan 8, 2019
02b0d07
JSON5 to allow hex formatting
RobChiocchio Jan 9, 2019
507012f
More dynamic
RobChiocchio Jan 9, 2019
06ecef8
Rework in progress
RobChiocchio Jan 10, 2019
53f4e47
fixed JSON5
RobChiocchio Jan 11, 2019
706c34d
Fixed filestreams
RobChiocchio Jan 15, 2019
aa9dfbd
Merge
RobethX Jan 16, 2019
57979ce
Note
RobChiocchio Jan 16, 2019
71df958
Some TODO notes
RobethX Jan 25, 2019
e000251
Changed license to AGPL
RobethX Jan 30, 2019
60e6fba
AGPL license
RobethX Jan 30, 2019
d77de78
Generate licenses json
RobethX Jan 31, 2019
5d1a7e8
Restructured project
RobethX Jan 31, 2019
afec206
TODO: finish eslint config
RobethX Feb 8, 2019
ce8e633
TODO: add mocha stuff
RobethX Feb 8, 2019
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
1 change: 0 additions & 1 deletion .coveralls.yml

This file was deleted.

36 changes: 36 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
],
"camelcase": [
1,
{
"properties": "always"
}
]
}
}
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

36 changes: 36 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Electron: Main",
"protocol": "inspector",
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
"runtimeArgs": [
"--remote-debugging-port=9223",
"."
],
"windows": {
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd"
}
},
{
"name": "Electron: Renderer",
"type": "chrome",
"request": "attach",
"port": 9223,
"webRoot": "${workspaceFolder}",
"timeout": 30000
}
],
"compounds": [
{
"name": "Electron: All",
"configurations": [
"Electron: Main",
"Electron: Renderer"
]
}
]
}
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"eslint.packageManager": "yarn",
"npm.packageManager": "yarn",
"typescript.preferences.quoteStyle": "double"
}
148 changes: 0 additions & 148 deletions CoopPatch/cooppatch.blcm

This file was deleted.

315 changes: 144 additions & 171 deletions CoopPatch/cooppatch.txt

Large diffs are not rendered by default.

172 changes: 172 additions & 0 deletions CoopPatch/cooppatch_filtertool.txt

Large diffs are not rendered by default.

Loading