Comparing changes
Open a pull request
- +15 −0 .clang-format
- +0 −31 .eslintrc.yml
- +4 −1 .gitignore
- +18 −16 .travis.yml
- +99 −97 CMakeLists.txt
- +3 −8 CONTRIBUTING.md
- +5 −5 README.md
- +27 −29 appveyor.yml
- +0 −40 bower.json
- +325 −0 docs/app/changelog.rst
- +9 −8 docs/app/credits.rst
- +1 −1 docs/app/introduction.rst
- +138 −0 docs/app/usage/groups_editor.rst
- +1 −1 docs/app/usage/initialisation.rst
- +10 −3 docs/app/usage/main.rst
- +2 −3 docs/app/usage/{editor.rst → plugin_editor.rst}
- +3 −1 docs/app/usage/settings.rst
- +2 −2 docs/conf.py
- BIN docs/images/groups_editor.png
- BIN docs/images/main.png
- BIN docs/images/settings.png
- +2 −1 docs/index.rst
- +25 −0 docs/licenses/BSD License (github-api).txt
- +18 −0 docs/licenses/MIT License (cpptoml).txt
- +49 −0 docs/licenses/MIT License (lodash).txt
- +21 −0 docs/licenses/MIT License (nlohmann json).txt
- +21 −0 docs/licenses/MIT License (spdlog).txt
- +43 −5 docs/licenses/texts.rst
- +0 −35 karma.conf.js
- +145 −17 package.json
- +1,523 −811 resources/l10n/da/LC_MESSAGES/loot.po
- +846 −0 resources/l10n/ja/LC_MESSAGES/loot.po
- +343 −323 resources/l10n/ru/LC_MESSAGES/loot.po
- +2 −2 resources/l10n/sv/LC_MESSAGES/loot.po
- +306 −239 resources/l10n/template.pot
- +404 −373 resources/l10n/zh_CN/LC_MESSAGES/loot.po
- +2 −2 resources/ui/css/dark-theme.css
- +10 −1 scripts/appveyor/build_installer.ps1
- +1 −1 scripts/appveyor/update_masterlist_branches.ps1
- +44 −41 scripts/archive.js
- +0 −121 scripts/build_ui.js
- +0 −25 scripts/cmake/configure_cef.cmake
- +0 −32 scripts/create_ico.js
- +32 −12 scripts/get_roboto_files.js
- +17 −1 scripts/git/pre-commit
- +7 −7 scripts/helpers.js
- +13 −9 scripts/installer.iss
- +5 −14 scripts/potomo.js
- +12 −12 scripts/set_version_number.js
- +2 −2 scripts/travis/loot.bintray.json
- +30 −23 src/gui/{ → cef}/loot_app.cpp
- +13 −10 src/gui/{ → cef}/loot_app.h
- +271 −0 src/gui/cef/loot_handler.cpp
- +27 −15 src/gui/{ → cef}/loot_handler.h
- +34 −27 src/gui/{ → cef}/loot_scheme_handler_factory.cpp
- +7 −6 src/gui/{ → cef}/loot_scheme_handler_factory.h
- +105 −0 src/gui/cef/query/derived_plugin_metadata.h
- +402 −0 src/gui/cef/query/json.h
- +98 −0 src/gui/cef/query/query.h
- +70 −73 src/gui/{ → cef/query}/query_handler.cpp
- +4 −4 src/gui/{ → cef/query}/query_handler.h
- +16 −6 src/gui/{query → cef/query/types}/apply_sort_query.h
- +2 −2 src/gui/{query → cef/query/types}/cancel_find_query.h
- +23 −17 src/gui/{query → cef/query/types}/cancel_sort_query.h
- +8 −9 src/gui/{query → cef/query/types}/change_game_query.h
- +21 −15 src/gui/{query → cef/query/types}/clear_all_metadata_query.h
- +10 −13 src/gui/{query → cef/query/types}/clear_plugin_metadata_query.h
- +26 −14 src/gui/{query → cef/query/types}/clipboard_query.h
- +66 −0 src/gui/cef/query/types/close_settings_query.h
- +10 −14 src/gui/{query → cef/query/types}/copy_content_query.h
- +85 −0 src/gui/cef/query/types/copy_load_order_query.h
- +22 −20 src/gui/{query → cef/query/types}/copy_metadata_query.h
- +2 −2 src/gui/{query → cef/query/types}/discard_unapplied_changes_query.h
- +117 −0 src/gui/cef/query/types/editor_closed_query.h
- +2 −2 src/gui/{query → cef/query/types}/editor_opened_query.h
- +42 −29 src/gui/{query → cef/query/types}/get_conflicting_plugins_query.h
- +75 −0 src/gui/cef/query/types/get_game_data_query.h
- +22 −12 src/gui/{query → cef/query/types}/get_game_types_query.h
- +10 −4 src/gui/{query → cef/query/types}/get_init_errors_query.h
- +14 −9 src/gui/{query → cef/query/types}/get_installed_games_query.h
- +31 −22 src/gui/{query → cef/query/types}/get_languages_query.h
- +23 −5 src/gui/{query → cef/query/types}/get_settings_query.h
- +17 −8 src/gui/{query → cef/query/types}/get_version_query.h
- +234 −0 src/gui/cef/query/types/metadata_query.h
- +7 −4 src/gui/{query → cef/query/types}/open_log_location_query.h
- +27 −5 src/gui/{query → cef/query/types}/open_readme_query.h
- +2 −2 src/gui/{query → cef/query/types}/redate_plugins_query.h
- +9 −6 src/gui/{query → cef/query/types}/save_filter_state_query.h
- +22 −12 src/gui/{query/close_settings_query.h → cef/query/types/save_user_groups_query.h}
- +43 −38 src/gui/{query → cef/query/types}/sort_plugins_query.h
- +68 −0 src/gui/cef/query/types/update_masterlist_query.h
- +44 −35 src/gui/{ → cef}/window_delegate.cpp
- +3 −2 src/gui/{ → cef}/window_delegate.h
- +0 −119 src/gui/editor_message.h
- +37 −16 src/gui/helpers.cpp
- +7 −1 src/gui/helpers.h
- +110 −5 src/gui/html/css/style.css
- +31 −2 src/gui/html/css/typography.css
- +134 −0 src/gui/html/elements/editable-table-rows.js
- +0 −369 src/gui/html/elements/editable-table.html
- +236 −0 src/gui/html/elements/editable-table.js
- +13 −8 src/gui/html/elements/{loot-custom-icons.html → loot-custom-icons.js}
- +0 −81 src/gui/html/elements/loot-dropdown-menu.html
- +80 −0 src/gui/html/elements/loot-dropdown-menu.js
- +342 −0 src/gui/html/elements/loot-groups-editor.js
- +0 −30 src/gui/html/elements/loot-menu.html
- +37 −0 src/gui/html/elements/loot-menu.js
- +0 −102 src/gui/html/elements/loot-message-dialog.html
- +115 −0 src/gui/html/elements/loot-message-dialog.js
- +0 −279 src/gui/html/elements/loot-plugin-card.html
- +315 −0 src/gui/html/elements/loot-plugin-card.js
- +0 −437 src/gui/html/elements/loot-plugin-editor.html
- +399 −0 src/gui/html/elements/loot-plugin-editor.js
- +0 −199 src/gui/html/elements/loot-plugin-item.html
- +237 −0 src/gui/html/elements/loot-plugin-item.js
- +0 −174 src/gui/html/elements/loot-search-toolbar.html
- +188 −0 src/gui/html/elements/loot-search-toolbar.js
- +164 −0 src/gui/html/elements/paper-autocomplete.jsx
- +205 −138 src/gui/html/index.html
- +58 −0 src/gui/html/js/app.js
- +31 −43 src/gui/html/js/dialog.js
- +311 −246 src/gui/html/js/dom.js
- +481 −287 src/gui/html/js/events.js
- +59 −49 src/gui/html/js/filters.js
- +210 −121 src/gui/html/js/game.js
- +46 −0 src/gui/html/js/group.js
- +9 −15 src/gui/html/js/handlePromiseError.js
- +373 −199 src/gui/html/js/initialise.js
- +410 −372 src/gui/html/js/plugin.js
- +5 −18 src/gui/html/js/query.js
- +36 −45 src/gui/html/js/state.js
- +685 −375 src/gui/html/js/translateStaticText.js
- +25 −41 src/gui/html/js/translator.js
- +84 −46 src/gui/html/js/updateExists.js
- +0 −8 src/gui/html/polymer-settings.html
- +0 −178 src/gui/loot_handler.cpp
- +83 −68 src/gui/main.cpp
- +0 −74 src/gui/query/copy_load_order_query.h
- +0 −169 src/gui/query/editor_closed_query.h
- +0 −154 src/gui/query/get_game_data_query.h
- +0 −72 src/gui/query/json.h
- +0 −177 src/gui/query/metadata_query.h
- +0 −57 src/gui/query/query.h
- +0 −112 src/gui/query/update_masterlist_query.h
- +1 −1 src/gui/resource.h
- +5 −5 src/gui/resource.rc
- +516 −156 src/gui/state/game.cpp
- +36 −13 src/gui/state/game.h
- +1 −1 src/gui/state/game_detection_error.h
- +40 −54 src/gui/state/game_settings.cpp
- +12 −71 src/gui/state/game_settings.h
- +39 −0 src/gui/state/logging.h
- +62 −27 src/gui/state/loot_paths.cpp
- +3 −3 src/gui/state/loot_paths.h
- +304 −163 src/gui/state/loot_settings.cpp
- +14 −7 src/gui/state/loot_settings.h
- +209 −124 src/gui/state/loot_state.cpp
- +15 −4 src/gui/state/loot_state.h
- +3 −3 src/gui/version.cpp.in
- +1 −1 src/gui/version.h
- +0 −96 src/gui/yaml_simple_message_helpers.h
- +116 −82 src/tests/common_game_test_fixture.h
- +0 −52 src/tests/gui/html/elements/test_editable-table.html
- +0 −19 src/tests/gui/html/elements/test_loot-custom-icons.html
- +0 −42 src/tests/gui/html/elements/test_loot-dropdown-menu.html
- +0 −19 src/tests/gui/html/elements/test_loot-menu.html
- +0 −34 src/tests/gui/html/elements/test_loot-message-dialog.html
- +0 −81 src/tests/gui/html/elements/test_loot-plugin-card.html
- +0 −37 src/tests/gui/html/elements/test_loot-plugin-editor.html
- +0 −18 src/tests/gui/html/elements/test_loot-plugin-item.html
- +0 −81 src/tests/gui/html/elements/test_loot-search-toolbar.html
- +0 −20 src/tests/gui/html/js/mock_dom.js
- +0 −38 src/tests/gui/html/js/mock_octokat.js
- +123 −120 src/tests/gui/html/js/test_filters.js
- +427 −313 src/tests/gui/html/js/test_game.js
- +133 −0 src/tests/gui/html/js/test_group.js
- +757 −589 src/tests/gui/html/js/test_plugin.js
- +37 −20 src/tests/gui/html/js/test_query.js
- +163 −149 src/tests/gui/html/js/test_state.js
- +67 −80 src/tests/gui/html/js/test_translator.js
- +146 −54 src/tests/gui/html/js/test_updateExists.js
- +3 −8 src/tests/gui/main.cpp
- +23 −116 src/tests/gui/state/game_settings_test.h
- +545 −174 src/tests/gui/state/game_test.h
- +18 −9 src/tests/gui/state/loot_paths_test.h
- +255 −272 src/tests/gui/state/loot_settings_test.h
- +10 −4 src/tests/gui/state/loot_state_test.h
- +20 −24 src/tests/printers.h
- +65 −0 webpack.config.js
- +8,058 −0 yarn.lock
| @@ -0,0 +1,15 @@ | ||
| --- | ||
| Language: Cpp | ||
| BasedOnStyle: Google | ||
| AccessModifierOffset: -2 | ||
| AllowAllParametersOfDeclarationOnNextLine: false | ||
| AllowShortIfStatementsOnASingleLine: false | ||
| BinPackArguments: false | ||
| BinPackParameters: false | ||
| BreakConstructorInitializers: AfterColon | ||
| ConstructorInitializerAllOnOneLineOrOnePerLine: true | ||
| FixNamespaceComments: false | ||
| SpaceAfterTemplateKeyword: false | ||
| Standard: Cpp11 | ||
| ... |
Showing you all comments on commits in this comparison.
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
|
Merged this too early, I meant to release LOOT API v0.12.3 first... |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
LegionS1970
Feb 25, 2018
[12:37:15.682390] [warning]: Chromium console message: Styling master document from stylesheets defined in HTML Imports is deprecated, and is planned to be removed in M65, around March 2018. Please refer to https://goo.gl/EGXzpw for possible migration paths.
[12:37:15.808367] [warning]: Blocking load of resource at https://fonts.googleapis.com/css?family=Roboto+Mono:400,700|Roboto:400,300,300italic,400italic,500,500italic,700,700italic
[12:37:17.698015] [warning]: No masterlist present
[12:39:51.149187] [error]: Exception while executing query: Git operation failed. Details: -1; unsupported URL protocol: libgit2 error
[12:39:51.150164] [error]: Chromium console message from http://loot/ui/js/handlePromiseError.js at line 14: Error: О нет, что-то пошло не так! Дополнительную информацию можно узнать в файле LOOTDebugLog.txt (можно получить доступ к нему через главное меню).
at onFailure (http://loot/ui/js/query.js:43:16)
No master list is found. It is not possible to update it. It is not possible to sort the files.
LegionS1970
commented on 62ca11c
Feb 25, 2018
|
[12:37:15.682390] [warning]: Chromium console message: Styling master document from stylesheets defined in HTML Imports is deprecated, and is planned to be removed in M65, around March 2018. Please refer to https://goo.gl/EGXzpw for possible migration paths. No master list is found. It is not possible to update it. It is not possible to sort the files. |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
|
File an issue then, don't comment on commits. |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Freso
Aug 10, 2018
Member
This commit seems to have broken AppVeyor: it says it is "Unauthorized" for delete_old_bintray_versions.py. I'm guessing there's an API key or something that needs refreshing, but I don't have access to the AppVeyor setup.
|
This commit seems to have broken AppVeyor: it says it is "Unauthorized" for |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
|
I've filed loot/loot.github.io#68 for that issue. |
Merged this too early, I meant to release LOOT API v0.12.3 first...