This repository has been archived by the owner on Oct 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathconfig.nano.js
106 lines (76 loc) · 4.53 KB
/
config.nano.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
// ----------------------------------------------------------------------------------------------------------------- //
// Nano Core 2 - An adblocker
// Copyright (C) 2018-2019 Nano Core 2 contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// ----------------------------------------------------------------------------------------------------------------- //
// Configuration file
// ----------------------------------------------------------------------------------------------------------------- //
"use strict";
// ----------------------------------------------------------------------------------------------------------------- //
(() => {
return {
// --------------------------------------------------------------------------------------------------------- //
Patches: [
// ----------------------------------------------------------------------------------------------------- //
"./patches/integration/00_0_about.patch",
"./patches/integration/00_1_version_parsing.patch",
"./patches/integration/00_2_vapi_icon.patch",
"./patches/integration/00_3_favicon.patch",
"./patches/integration/10_0_load_scripts.patch",
"./patches/integration/10_1_compile_flags.patch",
"./patches/integration/10_2_extended_resources.patch",
"./patches/integration/10_3_force_recompile.patch",
"./patches/integration/10_4_extended_options.patch",
"./patches/integration/10_5_linters.patch",
"./patches/integration/10_6_lint_filters.patch",
"./patches/integration/10_7_filter_editor.patch",
"./patches/integration/10_8_filter_viewer.patch",
"./patches/integration/20_0_force_scroll_background.patch",
"./patches/integration/20_1_bug_reporter_background.patch",
"./patches/integration/21_0_popup_tweaks.patch",
"./patches/integration/21_1_force_scroll.patch",
"./patches/integration/21_2_bug_reporter.patch",
"./patches/integration/22_0_new_popup_tweaks.patch",
"./patches/integration/22_1_font_awesome.patch",
"./patches/integration/22_2_new_force_scroll.patch",
"./patches/integration/22_3_new_bug_reporter.patch",
"./patches/integration/30_0_settings_tweaks.patch",
"./patches/integration/30_1_editor_settings.patch",
"./patches/integration/30_2_link_differences.patch",
"./patches/integration/90_0_settings_migration.patch",
// ----------------------------------------------------------------------------------------------------- //
"./patches/00_0_textarea_spacing.patch",
"./patches/10_0_user_css.patch",
"./patches/20_0_configuration_tweaks.patch",
"./patches/20_1_header_parsing.patch",
"./patches/20_2_hard_purge_any_key.patch",
"./patches/20_3_reset_hard.patch",
"./patches/20_4_log_script_snippet_errors.patch",
"./patches/20_5_other_editors_style.patch",
"./patches/20_6_autocomment_href.patch",
"./patches/30_0_link_resources.patch",
"./patches/90_0_assets_migration.patch",
"./patches/90_1_cherry_pick_fixes.patch",
"./patches/90_2_resources_updates.patch",
// ----------------------------------------------------------------------------------------------------- //
],
// --------------------------------------------------------------------------------------------------------- //
Source: "./temp/uBlock/",
Target: "./temp/NanoCore2DevEnv/",
Output: "./temp/NanoCore2Latest.patch",
// --------------------------------------------------------------------------------------------------------- //
};
})();
// ----------------------------------------------------------------------------------------------------------------- //