Skip to content
This repository has been archived by the owner on Aug 8, 2020. It is now read-only.

Commit

Permalink
Splitted hashes and fixed extraction
Browse files Browse the repository at this point in the history
  • Loading branch information
Pupix committed Jan 2, 2018
1 parent e5774d2 commit 2de5a9d
Show file tree
Hide file tree
Showing 868 changed files with 137,067 additions and 8,411 deletions.
22 changes: 22 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
root = true

# GENERIC SETTINGS
[*]
indent_style = space
indent_size = 4
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true

# WEB FILES
[*.{css,html,js}]
charset = utf-8

# MARKDOWN
[*.md]
trim_trailing_whitespace = false

# NODE PROJECTS
[{bower.json,package.json,.travis.yml}]
indent_style = space
indent_size = 2
3 changes: 3 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
**/node_modules
**/bower_components
__tests__
91 changes: 91 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
{
"extends": [
"airbnb-base",
"plugin:security/recommended",
"eslint:recommended",
"plugin:node/recommended"
],

"globals": {

},

"env": {
"browser": true,
"node": true,
"es6": true
},

"plugins": [
// Node specific ESLint rules (requires eslint-plugin-node)
"node",

// Identify potential security hotspots (requires eslint-plugin-security)
"security"

],

"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module",
"ecmaFeatures": {
"impliedStrict": true
}
},

"settings": {
"import/core-modules": [
"electron"
]
},

"rules": {
"indent": ["error", 4, {
"SwitchCase": 1,
"VariableDeclarator": 1,
"outerIIFEBody": 1,
// MemberExpression: null,
// CallExpression: {
// parameters: null,
// },
"FunctionDeclaration": {
"parameters": 1,
"body": 1
},
"FunctionExpression": {
"parameters": 1,
"body": 1
}
}],

"no-underscore-dangle": ["error", {
"allowAfterThis": true,
"allowAfterSuper": true
}],

"spaced-comment": ["error", "always", {
"line": {
"exceptions": ["-", "+", "*"],
"markers": ["=", "!"] // space here to support sprockets directives
},
"block": {
"exceptions": ["-", "+", "*"],
"markers": ["=", "!"], // space here to support sprockets directives
"balanced": false
}
}],

"comma-dangle": ["error", "never"],

"max-len": ["error", 120, 2, {
"ignoreUrls": true,
"ignoreComments": false,
"ignoreRegExpLiterals": true,
"ignoreStrings": true,
"ignoreTemplateLiterals": true
}],

"arrow-parens": ["error", "as-needed"]
}

}
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Automatically normalize line endings.
* text=auto
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
save-exact = true
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
language: node_js
node_js:
- "node"
script:
- npm install -g yarn
- yarn install
- yarn test
2 changes: 2 additions & 0 deletions .yarnrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
save-exact true
save-prefix false
18 changes: 14 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,20 @@ var WadParser = require('lol-wad-parser'),

wad.read('assets.wad', function (err, data) {
console.log(data);
// [
// [Buffer ...]
// [Buffer ...]
// ]
// ...
// {
// pathHash: '493258d8dc25e145',
// offset: 532843,
// compressedFileSize: 874,
// fileSize: 1850,
// type: 1,
// duplicate: 0,
// unk: 0,
// unk0: 0,
// sha256: '2c982e477bb2af65',
// fileName: 'plugins/rcp-fe-lol-uikit/global/default/components/animated-border-overlay/index.js'
// }
// ...
});

```
Expand Down
12 changes: 12 additions & 0 deletions hashes/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
const requireDirectory = require('require-directory');

const exp = {};
const options = {
visit(object) {
Object.assign(exp, object);
}
};

requireDirectory(module, options);

module.exports = exp;
7,867 changes: 7,867 additions & 0 deletions hashes/league_client/global/cs_cz/rcp-be-lol-game-data.json

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions hashes/league_client/global/cs_cz/rcp-fe-app-controls.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"a5eedb6ca6faf30e": "plugins/rcp-fe-app-controls/global/cs_cz/trans.json"
}
4 changes: 4 additions & 0 deletions hashes/league_client/global/cs_cz/rcp-fe-l10n.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"f45c094e85fdbbad": "plugins/rcp-fe-l10n/global/cs_cz/moment-locale.js",
"c25311cbf21dc84f": "plugins/rcp-fe-l10n/global/cs_cz/trans.json"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"25e2e0832fb03aaa": "plugins/rcp-fe-lcu-bootstrap-ui/global/cs_cz/trans.json"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"1e4dac8e61f4303b": "plugins/rcp-fe-lol-champ-select/global/cs_cz/trans.json"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"f54b70f4100f9270": "plugins/rcp-fe-lol-champion-details/global/cs_cz/trans.json"
}
3 changes: 3 additions & 0 deletions hashes/league_client/global/cs_cz/rcp-fe-lol-collections.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"0ca668283b352324": "plugins/rcp-fe-lol-collections/global/cs_cz/trans.json"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"ac242f0e5f848c78": "plugins/rcp-fe-lol-friend-finder/global/cs_cz/trans.json"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"ace201cfdfa94455": "plugins/rcp-fe-lol-game-in-progress/global/cs_cz/trans.json"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"43c86b4f774dd075": "plugins/rcp-fe-lol-general-settings/global/cs_cz/trans.json"
}
3 changes: 3 additions & 0 deletions hashes/league_client/global/cs_cz/rcp-fe-lol-hover-card.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"e5357bf16af9b9e8": "plugins/rcp-fe-lol-hover-card/global/cs_cz/trans.json"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"e7fd25b6fb27b5be": "plugins/rcp-fe-lol-license-agreement/global/cs_cz/trans.json"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"166626c13ed13c32": "plugins/rcp-fe-lol-license-settings/global/cs_cz/trans.json"
}
3 changes: 3 additions & 0 deletions hashes/league_client/global/cs_cz/rcp-fe-lol-login.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"4ac6549232af73b4": "plugins/rcp-fe-lol-login/global/cs_cz/trans.json"
}
3 changes: 3 additions & 0 deletions hashes/league_client/global/cs_cz/rcp-fe-lol-loyalty.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"68ab7231de3fcd92": "plugins/rcp-fe-lol-loyalty/global/cs_cz/trans.json"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"baa304bb05abc0b6": "plugins/rcp-fe-lol-match-history/global/cs_cz/trans.json"
}
3 changes: 3 additions & 0 deletions hashes/league_client/global/cs_cz/rcp-fe-lol-navigation.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"286284387bbcef15": "plugins/rcp-fe-lol-navigation/global/cs_cz/trans.json"
}
3 changes: 3 additions & 0 deletions hashes/league_client/global/cs_cz/rcp-fe-lol-parties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"0e46fc57fd6728a8": "plugins/rcp-fe-lol-parties/global/cs_cz/trans.json"
}
3 changes: 3 additions & 0 deletions hashes/league_client/global/cs_cz/rcp-fe-lol-patcher.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"cc6ed9f3ea5912c2": "plugins/rcp-fe-lol-patcher/global/cs_cz/trans.json"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"6a0ea037c3fd3ca0": "plugins/rcp-fe-lol-player-behavior/global/cs_cz/trans.json"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"7fdf62b8a5b652ba": "plugins/rcp-fe-lol-player-notifications/global/cs_cz/trans.json"
}
3 changes: 3 additions & 0 deletions hashes/league_client/global/cs_cz/rcp-fe-lol-postgame.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"dc047d893a585d44": "plugins/rcp-fe-lol-postgame/global/cs_cz/trans.json"
}
4 changes: 4 additions & 0 deletions hashes/league_client/global/cs_cz/rcp-fe-lol-profiles.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"53d8a199bd51be13": "plugins/rcp-fe-lol-profiles/global/cs_cz/trans.json",
"89d4f198d8ad2a0c": "plugins/rcp-fe-lol-profiles/global/cs_cz/leagueNames.json"
}
3 changes: 3 additions & 0 deletions hashes/league_client/global/cs_cz/rcp-fe-lol-ready-check.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"23dac076b86458ae": "plugins/rcp-fe-lol-ready-check/global/cs_cz/trans.json"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"079572e80614d1b3": "plugins/rcp-fe-lol-reconnect-notification/global/cs_cz/trans.json"
}
3 changes: 3 additions & 0 deletions hashes/league_client/global/cs_cz/rcp-fe-lol-runes.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"d35f362536710104": "plugins/rcp-fe-lol-runes/global/cs_cz/trans.json"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"06aa069028c15dae": "plugins/rcp-fe-lol-service-status/global/cs_cz/trans.json"
}
3 changes: 3 additions & 0 deletions hashes/league_client/global/cs_cz/rcp-fe-lol-social.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"da5d393f53c5b514": "plugins/rcp-fe-lol-social/global/cs_cz/trans.json"
}
3 changes: 3 additions & 0 deletions hashes/league_client/global/cs_cz/rcp-fe-settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"2431322171df657d": "plugins/rcp-fe-settings/global/cs_cz/trans.json"
}
Loading

0 comments on commit 2de5a9d

Please sign in to comment.