Skip to content

Commit

Permalink
Release build 7.1.2-test-2 [ci release]
Browse files Browse the repository at this point in the history
  • Loading branch information
shakyShane authored and github-actions[bot] committed Nov 8, 2024
1 parent 76c4f0f commit c5603a8
Show file tree
Hide file tree
Showing 187 changed files with 36,390 additions and 0 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
- fix release flow
- Remove artifacts from 'main' (#227)
- Add config to ignore linting PRs (#224)
- Consistent Prettier config (#222)
- Bump typedoc from 0.26.8 to 0.26.11 (#199)
- Shared eslint config (#198)
- Adds JSON example to Toggle Report guide (#197)
- Grey out icons depending on phishingStatus (#195)
32 changes: 32 additions & 0 deletions build/app/html/android.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!--
Copyright (C) 2017 DuckDuckGo, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>DuckDuckGo</title>
<script src="../public/js/polyfill-loader.js"></script>
<link rel="stylesheet" href="../public/css/android.css" />
<link rel="stylesheet" href="../public/css/base.css" />
<link rel="stylesheet" href="../public/css/popup.css" />
</head>
<body class="environment--android">
<div id="app"></div>
<script src="../public/js/base.js"></script>
</body>
</html>
32 changes: 32 additions & 0 deletions build/app/html/browser.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!--
Copyright (C) 2017 DuckDuckGo, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>DuckDuckGo</title>
<script src="../public/js/polyfill-loader.js"></script>
<link rel="stylesheet" href="../public/css/android.css" />
<link rel="stylesheet" href="../public/css/base.css" />
<link rel="stylesheet" href="../public/css/popup.css" />
</head>
<body class="environment--browser">
<div id="app"></div>
<script src="../public/js/base.js"></script>
</body>
</html>
13 changes: 13 additions & 0 deletions build/app/html/iframe.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Debug</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="stylesheet" href="../debugger/debugger.css" />
</head>
<body>
<div id="app"></div>
<script src="../debugger/debugger.js"></script>
</body>
</html>
32 changes: 32 additions & 0 deletions build/app/html/ios.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!--
Copyright (C) 2017 DuckDuckGo, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>DuckDuckGo</title>
<script src="../public/js/polyfill-loader.js"></script>
<link rel="stylesheet" href="../public/css/android.css" />
<link rel="stylesheet" href="../public/css/base.css" />
<link rel="stylesheet" href="../public/css/popup.css" />
</head>
<body class="environment--ios">
<div id="app"></div>
<script src="../public/js/base.js"></script>
</body>
</html>
32 changes: 32 additions & 0 deletions build/app/html/macos.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!--
Copyright (C) 2017 DuckDuckGo, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>DuckDuckGo</title>
<script src="../public/js/polyfill-loader.js"></script>
<link rel="stylesheet" href="../public/css/android.css" />
<link rel="stylesheet" href="../public/css/base.css" />
<link rel="stylesheet" href="../public/css/popup.css" />
</head>
<body class="environment--macos">
<div id="app"></div>
<script src="../public/js/base.js"></script>
</body>
</html>
32 changes: 32 additions & 0 deletions build/app/html/popup.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!--
Copyright (C) 2017 DuckDuckGo, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>DuckDuckGo</title>
<script src="../public/js/polyfill-loader.js"></script>
<link rel="stylesheet" href="../public/css/android.css" />
<link rel="stylesheet" href="../public/css/base.css" />
<link rel="stylesheet" href="../public/css/popup.css" />
</head>
<body class="environment--example">
<div id="app"></div>
<script src="../public/js/base.js"></script>
</body>
</html>
32 changes: 32 additions & 0 deletions build/app/html/windows.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!--
Copyright (C) 2017 DuckDuckGo, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>DuckDuckGo</title>
<script src="../public/js/polyfill-loader.js"></script>
<link rel="stylesheet" href="../public/css/android.css" />
<link rel="stylesheet" href="../public/css/base.css" />
<link rel="stylesheet" href="../public/css/popup.css" />
</head>
<body class="environment--windows">
<div id="app"></div>
<script src="../public/js/base.js"></script>
</body>
</html>
1 change: 1 addition & 0 deletions build/app/img/arrow--large.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added build/app/img/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added build/app/img/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions build/app/img/blocking--off.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions build/app/img/blocking--on.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit c5603a8

Please sign in to comment.