├── origi.png ├── .gitignore ├── KagiSearchApp └── .DS_Store ├── KagiSearch.xcodeproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcuserdata │ │ ├── Tom.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── IDEFindNavigatorScopes.plist │ │ └── eriond.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── xcuserdata │ ├── alex.xcuserdatad │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── eriond.xcuserdatad │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── Tom.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── project.pbxproj ├── README.md └── License.txt /origi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocebrian/kagisearchsafari/HEAD/origi.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /KagiSearch.xcodeproj/xcshareddata 2 | /.DS_Store 3 | /KagiSearch Extension/.DS_Store 4 | -------------------------------------------------------------------------------- /KagiSearchApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocebrian/kagisearchsafari/HEAD/KagiSearchApp/.DS_Store -------------------------------------------------------------------------------- /KagiSearch.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /KagiSearch.xcodeproj/project.xcworkspace/xcuserdata/Tom.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocebrian/kagisearchsafari/HEAD/KagiSearch.xcodeproj/project.xcworkspace/xcuserdata/Tom.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /KagiSearch.xcodeproj/project.xcworkspace/xcuserdata/eriond.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocebrian/kagisearchsafari/HEAD/KagiSearch.xcodeproj/project.xcworkspace/xcuserdata/eriond.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /KagiSearch.xcodeproj/project.xcworkspace/xcuserdata/Tom.xcuserdatad/IDEFindNavigatorScopes.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /KagiSearch.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /KagiSearch.xcodeproj/xcuserdata/alex.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | RedirectPlease Extension.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 1 11 | 12 | RedirectPlease.xcscheme_^#shared#^_ 13 | 14 | orderHint 15 | 0 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /KagiSearch.xcodeproj/xcuserdata/eriond.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | KagiSearch.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | OpenSearch.xcscheme_^#shared#^_ 13 | 14 | orderHint 15 | 0 16 | 17 | 18 | SuppressBuildableAutocreation 19 | 20 | FA02C6E223EB05EC00F4EA0D 21 | 22 | primary 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /KagiSearch.xcodeproj/xcuserdata/Tom.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | OpenSearch Extension.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 1 11 | 12 | OpenSearch.xcscheme_^#shared#^_ 13 | 14 | orderHint 15 | 0 16 | 17 | RedirectPlease Extension.xcscheme_^#shared#^_ 18 | 19 | orderHint 20 | 1 21 | 22 | RedirectPlease.xcscheme_^#shared#^_ 23 | 24 | orderHint 25 | 0 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Logo](origi.png) 2 | # Kagi Search extension for Safari 3 | Safari Extension that allows the user to use Kagi.com search engine. 4 | Implemented purely using native APIs in Swift. 5 | 6 | # Download 7 | [Free Simple Version 1.2](https://github.com/marcocebrian/kagisearchsafari/releases/download/v12/KagiSearch.app.zip) 8 | (Intel + M1 Native) Universal Binary 9 | 10 | 💪 [Full extension for Safari](https://apps.apple.com/in/app/custom-search-engine/id1588019370?mt=12) 11 | [App Store] (Intel + M1 Native) 17 Search engines... 12 | 13 | 14 | # LICENSE 15 | You can distribute, remix, tweak, and build upon this work, 16 | even commercially, as long as credit is given for the original creation. 17 | Attribution 4.0 International (CC BY 4.0) 18 | (https://creativecommons.org/licenses/by/4.0/) 19 | 20 | ## How to Use 21 | Compile with xCode, then activate the 'KagiSearch' extension in Safari. 22 | 23 | ## Marco Cebrián Muiño - 2021 24 | -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- 1 | Attribution-NonCommercial-ShareAlike 4.0 International 2 | 3 | ======================================================================= 4 | 5 | Creative Commons Corporation ("Creative Commons") is not a law firm and 6 | does not provide legal services or legal advice. Distribution of 7 | Creative Commons public licenses does not create a lawyer-client or 8 | other relationship. Creative Commons makes its licenses and related 9 | information available on an "as-is" basis. Creative Commons gives no 10 | warranties regarding its licenses, any material licensed under their 11 | terms and conditions, or any related information. Creative Commons 12 | disclaims all liability for damages resulting from their use to the 13 | fullest extent possible. 14 | 15 | Using Creative Commons Public Licenses 16 | 17 | Creative Commons public licenses provide a standard set of terms and 18 | conditions that creators and other rights holders may use to share 19 | original works of authorship and other material subject to copyright 20 | and certain other rights specified in the public license below. The 21 | following considerations are for informational purposes only, are not 22 | exhaustive, and do not form part of our licenses. 23 | 24 | Considerations for licensors: Our public licenses are 25 | intended for use by those authorized to give the public 26 | permission to use material in ways otherwise restricted by 27 | copyright and certain other rights. Our licenses are 28 | irrevocable. Licensors should read and understand the terms 29 | and conditions of the license they choose before applying it. 30 | Licensors should also secure all rights necessary before 31 | applying our licenses so that the public can reuse the 32 | material as expected. Licensors should clearly mark any 33 | material not subject to the license. This includes other CC- 34 | licensed material, or material used under an exception or 35 | limitation to copyright. More considerations for licensors: 36 | wiki.creativecommons.org/Considerations_for_licensors 37 | 38 | Considerations for the public: By using one of our public 39 | licenses, a licensor grants the public permission to use the 40 | licensed material under specified terms and conditions. If 41 | the licensor's permission is not necessary for any reason--for 42 | example, because of any applicable exception or limitation to 43 | copyright--then that use is not regulated by the license. Our 44 | licenses grant only permissions under copyright and certain 45 | other rights that a licensor has authority to grant. Use of 46 | the licensed material may still be restricted for other 47 | reasons, including because others have copyright or other 48 | rights in the material. A licensor may make special requests, 49 | such as asking that all changes be marked or described. 50 | Although not required by our licenses, you are encouraged to 51 | respect those requests where reasonable. More considerations 52 | for the public: 53 | wiki.creativecommons.org/Considerations_for_licensees 54 | 55 | ======================================================================= 56 | 57 | Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International 58 | Public License 59 | 60 | By exercising the Licensed Rights (defined below), You accept and agree 61 | to be bound by the terms and conditions of this Creative Commons 62 | Attribution-NonCommercial-ShareAlike 4.0 International Public License 63 | ("Public License"). To the extent this Public License may be 64 | interpreted as a contract, You are granted the Licensed Rights in 65 | consideration of Your acceptance of these terms and conditions, and the 66 | Licensor grants You such rights in consideration of benefits the 67 | Licensor receives from making the Licensed Material available under 68 | these terms and conditions. 69 | 70 | 71 | Section 1 -- Definitions. 72 | 73 | a. Adapted Material means material subject to Copyright and Similar 74 | Rights that is derived from or based upon the Licensed Material 75 | and in which the Licensed Material is translated, altered, 76 | arranged, transformed, or otherwise modified in a manner requiring 77 | permission under the Copyright and Similar Rights held by the 78 | Licensor. For purposes of this Public License, where the Licensed 79 | Material is a musical work, performance, or sound recording, 80 | Adapted Material is always produced where the Licensed Material is 81 | synched in timed relation with a moving image. 82 | 83 | b. Adapter's License means the license You apply to Your Copyright 84 | and Similar Rights in Your contributions to Adapted Material in 85 | accordance with the terms and conditions of this Public License. 86 | 87 | c. BY-NC-SA Compatible License means a license listed at 88 | creativecommons.org/compatiblelicenses, approved by Creative 89 | Commons as essentially the equivalent of this Public License. 90 | 91 | d. Copyright and Similar Rights means copyright and/or similar rights 92 | closely related to copyright including, without limitation, 93 | performance, broadcast, sound recording, and Sui Generis Database 94 | Rights, without regard to how the rights are labeled or 95 | categorized. For purposes of this Public License, the rights 96 | specified in Section 2(b)(1)-(2) are not Copyright and Similar 97 | Rights. 98 | 99 | e. Effective Technological Measures means those measures that, in the 100 | absence of proper authority, may not be circumvented under laws 101 | fulfilling obligations under Article 11 of the WIPO Copyright 102 | Treaty adopted on December 20, 1996, and/or similar international 103 | agreements. 104 | 105 | f. Exceptions and Limitations means fair use, fair dealing, and/or 106 | any other exception or limitation to Copyright and Similar Rights 107 | that applies to Your use of the Licensed Material. 108 | 109 | g. License Elements means the license attributes listed in the name 110 | of a Creative Commons Public License. The License Elements of this 111 | Public License are Attribution, NonCommercial, and ShareAlike. 112 | 113 | h. Licensed Material means the artistic or literary work, database, 114 | or other material to which the Licensor applied this Public 115 | License. 116 | 117 | i. Licensed Rights means the rights granted to You subject to the 118 | terms and conditions of this Public License, which are limited to 119 | all Copyright and Similar Rights that apply to Your use of the 120 | Licensed Material and that the Licensor has authority to license. 121 | 122 | j. Licensor means the individual(s) or entity(ies) granting rights 123 | under this Public License. 124 | 125 | k. NonCommercial means not primarily intended for or directed towards 126 | commercial advantage or monetary compensation. For purposes of 127 | this Public License, the exchange of the Licensed Material for 128 | other material subject to Copyright and Similar Rights by digital 129 | file-sharing or similar means is NonCommercial provided there is 130 | no payment of monetary compensation in connection with the 131 | exchange. 132 | 133 | l. Share means to provide material to the public by any means or 134 | process that requires permission under the Licensed Rights, such 135 | as reproduction, public display, public performance, distribution, 136 | dissemination, communication, or importation, and to make material 137 | available to the public including in ways that members of the 138 | public may access the material from a place and at a time 139 | individually chosen by them. 140 | 141 | m. Sui Generis Database Rights means rights other than copyright 142 | resulting from Directive 96/9/EC of the European Parliament and of 143 | the Council of 11 March 1996 on the legal protection of databases, 144 | as amended and/or succeeded, as well as other essentially 145 | equivalent rights anywhere in the world. 146 | 147 | n. You means the individual or entity exercising the Licensed Rights 148 | under this Public License. Your has a corresponding meaning. 149 | 150 | 151 | Section 2 -- Scope. 152 | 153 | a. License grant. 154 | 155 | 1. Subject to the terms and conditions of this Public License, 156 | the Licensor hereby grants You a worldwide, royalty-free, 157 | non-sublicensable, non-exclusive, irrevocable license to 158 | exercise the Licensed Rights in the Licensed Material to: 159 | 160 | a. reproduce and Share the Licensed Material, in whole or 161 | in part, for NonCommercial purposes only; and 162 | 163 | b. produce, reproduce, and Share Adapted Material for 164 | NonCommercial purposes only. 165 | 166 | 2. Exceptions and Limitations. For the avoidance of doubt, where 167 | Exceptions and Limitations apply to Your use, this Public 168 | License does not apply, and You do not need to comply with 169 | its terms and conditions. 170 | 171 | 3. Term. The term of this Public License is specified in Section 172 | 6(a). 173 | 174 | 4. Media and formats; technical modifications allowed. The 175 | Licensor authorizes You to exercise the Licensed Rights in 176 | all media and formats whether now known or hereafter created, 177 | and to make technical modifications necessary to do so. The 178 | Licensor waives and/or agrees not to assert any right or 179 | authority to forbid You from making technical modifications 180 | necessary to exercise the Licensed Rights, including 181 | technical modifications necessary to circumvent Effective 182 | Technological Measures. For purposes of this Public License, 183 | simply making modifications authorized by this Section 2(a) 184 | (4) never produces Adapted Material. 185 | 186 | 5. Downstream recipients. 187 | 188 | a. Offer from the Licensor -- Licensed Material. Every 189 | recipient of the Licensed Material automatically 190 | receives an offer from the Licensor to exercise the 191 | Licensed Rights under the terms and conditions of this 192 | Public License. 193 | 194 | b. Additional offer from the Licensor -- Adapted Material. 195 | Every recipient of Adapted Material from You 196 | automatically receives an offer from the Licensor to 197 | exercise the Licensed Rights in the Adapted Material 198 | under the conditions of the Adapter's License You apply. 199 | 200 | c. No downstream restrictions. You may not offer or impose 201 | any additional or different terms or conditions on, or 202 | apply any Effective Technological Measures to, the 203 | Licensed Material if doing so restricts exercise of the 204 | Licensed Rights by any recipient of the Licensed 205 | Material. 206 | 207 | 6. No endorsement. Nothing in this Public License constitutes or 208 | may be construed as permission to assert or imply that You 209 | are, or that Your use of the Licensed Material is, connected 210 | with, or sponsored, endorsed, or granted official status by, 211 | the Licensor or others designated to receive attribution as 212 | provided in Section 3(a)(1)(A)(i). 213 | 214 | b. Other rights. 215 | 216 | 1. Moral rights, such as the right of integrity, are not 217 | licensed under this Public License, nor are publicity, 218 | privacy, and/or other similar personality rights; however, to 219 | the extent possible, the Licensor waives and/or agrees not to 220 | assert any such rights held by the Licensor to the limited 221 | extent necessary to allow You to exercise the Licensed 222 | Rights, but not otherwise. 223 | 224 | 2. Patent and trademark rights are not licensed under this 225 | Public License. 226 | 227 | 3. To the extent possible, the Licensor waives any right to 228 | collect royalties from You for the exercise of the Licensed 229 | Rights, whether directly or through a collecting society 230 | under any voluntary or waivable statutory or compulsory 231 | licensing scheme. In all other cases the Licensor expressly 232 | reserves any right to collect such royalties, including when 233 | the Licensed Material is used other than for NonCommercial 234 | purposes. 235 | 236 | 237 | Section 3 -- License Conditions. 238 | 239 | Your exercise of the Licensed Rights is expressly made subject to the 240 | following conditions. 241 | 242 | a. Attribution. 243 | 244 | 1. If You Share the Licensed Material (including in modified 245 | form), You must: 246 | 247 | a. retain the following if it is supplied by the Licensor 248 | with the Licensed Material: 249 | 250 | i. identification of the creator(s) of the Licensed 251 | Material and any others designated to receive 252 | attribution, in any reasonable manner requested by 253 | the Licensor (including by pseudonym if 254 | designated); 255 | 256 | ii. a copyright notice; 257 | 258 | iii. a notice that refers to this Public License; 259 | 260 | iv. a notice that refers to the disclaimer of 261 | warranties; 262 | 263 | v. a URI or hyperlink to the Licensed Material to the 264 | extent reasonably practicable; 265 | 266 | b. indicate if You modified the Licensed Material and 267 | retain an indication of any previous modifications; and 268 | 269 | c. indicate the Licensed Material is licensed under this 270 | Public License, and include the text of, or the URI or 271 | hyperlink to, this Public License. 272 | 273 | 2. You may satisfy the conditions in Section 3(a)(1) in any 274 | reasonable manner based on the medium, means, and context in 275 | which You Share the Licensed Material. For example, it may be 276 | reasonable to satisfy the conditions by providing a URI or 277 | hyperlink to a resource that includes the required 278 | information. 279 | 3. If requested by the Licensor, You must remove any of the 280 | information required by Section 3(a)(1)(A) to the extent 281 | reasonably practicable. 282 | 283 | b. ShareAlike. 284 | 285 | In addition to the conditions in Section 3(a), if You Share 286 | Adapted Material You produce, the following conditions also apply. 287 | 288 | 1. The Adapter's License You apply must be a Creative Commons 289 | license with the same License Elements, this version or 290 | later, or a BY-NC-SA Compatible License. 291 | 292 | 2. You must include the text of, or the URI or hyperlink to, the 293 | Adapter's License You apply. You may satisfy this condition 294 | in any reasonable manner based on the medium, means, and 295 | context in which You Share Adapted Material. 296 | 297 | 3. You may not offer or impose any additional or different terms 298 | or conditions on, or apply any Effective Technological 299 | Measures to, Adapted Material that restrict exercise of the 300 | rights granted under the Adapter's License You apply. 301 | 302 | 303 | Section 4 -- Sui Generis Database Rights. 304 | 305 | Where the Licensed Rights include Sui Generis Database Rights that 306 | apply to Your use of the Licensed Material: 307 | 308 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right 309 | to extract, reuse, reproduce, and Share all or a substantial 310 | portion of the contents of the database for NonCommercial purposes 311 | only; 312 | 313 | b. if You include all or a substantial portion of the database 314 | contents in a database in which You have Sui Generis Database 315 | Rights, then the database in which You have Sui Generis Database 316 | Rights (but not its individual contents) is Adapted Material, 317 | including for purposes of Section 3(b); and 318 | 319 | c. You must comply with the conditions in Section 3(a) if You Share 320 | all or a substantial portion of the contents of the database. 321 | 322 | For the avoidance of doubt, this Section 4 supplements and does not 323 | replace Your obligations under this Public License where the Licensed 324 | Rights include other Copyright and Similar Rights. 325 | 326 | 327 | Section 5 -- Disclaimer of Warranties and Limitation of Liability. 328 | 329 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 330 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 331 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 332 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 333 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 334 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 335 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 336 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 337 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 338 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 339 | 340 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 341 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 342 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 343 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 344 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 345 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 346 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 347 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 348 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 349 | 350 | c. The disclaimer of warranties and limitation of liability provided 351 | above shall be interpreted in a manner that, to the extent 352 | possible, most closely approximates an absolute disclaimer and 353 | waiver of all liability. 354 | 355 | 356 | Section 6 -- Term and Termination. 357 | 358 | a. This Public License applies for the term of the Copyright and 359 | Similar Rights licensed here. However, if You fail to comply with 360 | this Public License, then Your rights under this Public License 361 | terminate automatically. 362 | 363 | b. Where Your right to use the Licensed Material has terminated under 364 | Section 6(a), it reinstates: 365 | 366 | 1. automatically as of the date the violation is cured, provided 367 | it is cured within 30 days of Your discovery of the 368 | violation; or 369 | 370 | 2. upon express reinstatement by the Licensor. 371 | 372 | For the avoidance of doubt, this Section 6(b) does not affect any 373 | right the Licensor may have to seek remedies for Your violations 374 | of this Public License. 375 | 376 | c. For the avoidance of doubt, the Licensor may also offer the 377 | Licensed Material under separate terms or conditions or stop 378 | distributing the Licensed Material at any time; however, doing so 379 | will not terminate this Public License. 380 | 381 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 382 | License. 383 | 384 | 385 | Section 7 -- Other Terms and Conditions. 386 | 387 | a. The Licensor shall not be bound by any additional or different 388 | terms or conditions communicated by You unless expressly agreed. 389 | 390 | b. Any arrangements, understandings, or agreements regarding the 391 | Licensed Material not stated herein are separate from and 392 | independent of the terms and conditions of this Public License. 393 | 394 | 395 | Section 8 -- Interpretation. 396 | 397 | a. For the avoidance of doubt, this Public License does not, and 398 | shall not be interpreted to, reduce, limit, restrict, or impose 399 | conditions on any use of the Licensed Material that could lawfully 400 | be made without permission under this Public License. 401 | 402 | b. To the extent possible, if any provision of this Public License is 403 | deemed unenforceable, it shall be automatically reformed to the 404 | minimum extent necessary to make it enforceable. If the provision 405 | cannot be reformed, it shall be severed from this Public License 406 | without affecting the enforceability of the remaining terms and 407 | conditions. 408 | 409 | c. No term or condition of this Public License will be waived and no 410 | failure to comply consented to unless expressly agreed to by the 411 | Licensor. 412 | 413 | d. Nothing in this Public License constitutes or may be interpreted 414 | as a limitation upon, or waiver of, any privileges and immunities 415 | that apply to the Licensor or You, including from the legal 416 | processes of any jurisdiction or authority. 417 | 418 | ======================================================================= 419 | 420 | Creative Commons is not a party to its public 421 | licenses. Notwithstanding, Creative Commons may elect to apply one of 422 | its public licenses to material it publishes and in those instances 423 | will be considered the “Licensor.” The text of the Creative Commons 424 | public licenses is dedicated to the public domain under the CC0 Public 425 | Domain Dedication. Except for the limited purpose of indicating that 426 | material is shared under a Creative Commons public license or as 427 | otherwise permitted by the Creative Commons policies published at 428 | creativecommons.org/policies, Creative Commons does not authorize the 429 | use of the trademark "Creative Commons" or any other trademark or logo 430 | of Creative Commons without its prior written consent including, 431 | without limitation, in connection with any unauthorized modifications 432 | to any of its public licenses or any other arrangements, 433 | understandings, or agreements concerning use of licensed material. For 434 | the avoidance of doubt, this paragraph does not form part of the 435 | public licenses. 436 | 437 | Creative Commons may be contacted at creativecommons.org. 438 | -------------------------------------------------------------------------------- /KagiSearch.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 50; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | D709FFF62702CCC700E42A74 /* SearchSourcesManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = D709FFF52702CCC700E42A74 /* SearchSourcesManager.swift */; }; 11 | D7A9ACFD2701B84200C7AD84 /* origi.png in Resources */ = {isa = PBXBuildFile; fileRef = D7A9ACFC2701B84200C7AD84 /* origi.png */; }; 12 | D7DBDDD32701C87A00B42C0D /* Constants.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7DBDDD22701C87A00B42C0D /* Constants.swift */; }; 13 | FA02C6E723EB05EC00F4EA0D /* KagiSearchApp.entitlements in Resources */ = {isa = PBXBuildFile; fileRef = FA02C6E623EB05EC00F4EA0D /* KagiSearchApp.entitlements */; }; 14 | FA02C6E923EB05EC00F4EA0D /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA02C6E823EB05EC00F4EA0D /* AppDelegate.swift */; }; 15 | FA02C6EC23EB05EC00F4EA0D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = FA02C6EA23EB05EC00F4EA0D /* Main.storyboard */; }; 16 | FA02C6EE23EB05EC00F4EA0D /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA02C6ED23EB05EC00F4EA0D /* ViewController.swift */; }; 17 | FA02C6F023EB05EE00F4EA0D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = FA02C6EF23EB05EE00F4EA0D /* Assets.xcassets */; }; 18 | FA02C6F723EB05EF00F4EA0D /* KagiSearch Extension.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = FA02C6F623EB05EF00F4EA0D /* KagiSearch Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; }; 19 | FA02C6FC23EB05EF00F4EA0D /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA02C6FB23EB05EF00F4EA0D /* Cocoa.framework */; }; 20 | FA02C6FF23EB05EF00F4EA0D /* SafariExtensionHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA02C6FE23EB05EF00F4EA0D /* SafariExtensionHandler.swift */; }; 21 | FA02C70123EB05EF00F4EA0D /* SafariExtensionViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA02C70023EB05EF00F4EA0D /* SafariExtensionViewController.swift */; }; 22 | FA02C70423EB05EF00F4EA0D /* SafariExtensionViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = FA02C70223EB05EF00F4EA0D /* SafariExtensionViewController.xib */; }; 23 | /* End PBXBuildFile section */ 24 | 25 | /* Begin PBXContainerItemProxy section */ 26 | FA02C6F823EB05EF00F4EA0D /* PBXContainerItemProxy */ = { 27 | isa = PBXContainerItemProxy; 28 | containerPortal = FA02C6DB23EB05EC00F4EA0D /* Project object */; 29 | proxyType = 1; 30 | remoteGlobalIDString = FA02C6F523EB05EF00F4EA0D; 31 | remoteInfo = "RedirectPlease Extension"; 32 | }; 33 | /* End PBXContainerItemProxy section */ 34 | 35 | /* Begin PBXCopyFilesBuildPhase section */ 36 | FA02C71023EB05EF00F4EA0D /* Embed App Extensions */ = { 37 | isa = PBXCopyFilesBuildPhase; 38 | buildActionMask = 2147483647; 39 | dstPath = ""; 40 | dstSubfolderSpec = 13; 41 | files = ( 42 | FA02C6F723EB05EF00F4EA0D /* KagiSearch Extension.appex in Embed App Extensions */, 43 | ); 44 | name = "Embed App Extensions"; 45 | runOnlyForDeploymentPostprocessing = 0; 46 | }; 47 | /* End PBXCopyFilesBuildPhase section */ 48 | 49 | /* Begin PBXFileReference section */ 50 | D709FFF52702CCC700E42A74 /* SearchSourcesManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchSourcesManager.swift; sourceTree = ""; }; 51 | D7A9ACFC2701B84200C7AD84 /* origi.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = origi.png; sourceTree = SOURCE_ROOT; }; 52 | D7DBDDD22701C87A00B42C0D /* Constants.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Constants.swift; sourceTree = ""; }; 53 | FA02C6E323EB05EC00F4EA0D /* KagiSearch.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = KagiSearch.app; sourceTree = BUILT_PRODUCTS_DIR; }; 54 | FA02C6E623EB05EC00F4EA0D /* KagiSearchApp.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = KagiSearchApp.entitlements; sourceTree = ""; }; 55 | FA02C6E823EB05EC00F4EA0D /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 56 | FA02C6EB23EB05EC00F4EA0D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 57 | FA02C6ED23EB05EC00F4EA0D /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 58 | FA02C6EF23EB05EE00F4EA0D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 59 | FA02C6F123EB05EE00F4EA0D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 60 | FA02C6F623EB05EF00F4EA0D /* KagiSearch Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "KagiSearch Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; }; 61 | FA02C6FB23EB05EF00F4EA0D /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; }; 62 | FA02C6FE23EB05EF00F4EA0D /* SafariExtensionHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SafariExtensionHandler.swift; sourceTree = ""; }; 63 | FA02C70023EB05EF00F4EA0D /* SafariExtensionViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SafariExtensionViewController.swift; sourceTree = ""; }; 64 | FA02C70323EB05EF00F4EA0D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/SafariExtensionViewController.xib; sourceTree = ""; }; 65 | FA02C70523EB05EF00F4EA0D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 66 | FA02C70A23EB05EF00F4EA0D /* KagiSearch_Extension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = KagiSearch_Extension.entitlements; sourceTree = ""; }; 67 | /* End PBXFileReference section */ 68 | 69 | /* Begin PBXFrameworksBuildPhase section */ 70 | FA02C6E023EB05EC00F4EA0D /* Frameworks */ = { 71 | isa = PBXFrameworksBuildPhase; 72 | buildActionMask = 2147483647; 73 | files = ( 74 | ); 75 | runOnlyForDeploymentPostprocessing = 0; 76 | }; 77 | FA02C6F323EB05EF00F4EA0D /* Frameworks */ = { 78 | isa = PBXFrameworksBuildPhase; 79 | buildActionMask = 2147483647; 80 | files = ( 81 | FA02C6FC23EB05EF00F4EA0D /* Cocoa.framework in Frameworks */, 82 | ); 83 | runOnlyForDeploymentPostprocessing = 0; 84 | }; 85 | /* End PBXFrameworksBuildPhase section */ 86 | 87 | /* Begin PBXGroup section */ 88 | FA02C6DA23EB05EC00F4EA0D = { 89 | isa = PBXGroup; 90 | children = ( 91 | FA02C6E523EB05EC00F4EA0D /* KagiSearchApp */, 92 | FA02C6FD23EB05EF00F4EA0D /* KagiSearch Extension */, 93 | FA02C6FA23EB05EF00F4EA0D /* Frameworks */, 94 | FA02C6E423EB05EC00F4EA0D /* Products */, 95 | ); 96 | sourceTree = ""; 97 | }; 98 | FA02C6E423EB05EC00F4EA0D /* Products */ = { 99 | isa = PBXGroup; 100 | children = ( 101 | FA02C6E323EB05EC00F4EA0D /* KagiSearch.app */, 102 | FA02C6F623EB05EF00F4EA0D /* KagiSearch Extension.appex */, 103 | ); 104 | name = Products; 105 | sourceTree = ""; 106 | }; 107 | FA02C6E523EB05EC00F4EA0D /* KagiSearchApp */ = { 108 | isa = PBXGroup; 109 | children = ( 110 | FA02C6E623EB05EC00F4EA0D /* KagiSearchApp.entitlements */, 111 | FA02C6E823EB05EC00F4EA0D /* AppDelegate.swift */, 112 | FA02C6EA23EB05EC00F4EA0D /* Main.storyboard */, 113 | FA02C6ED23EB05EC00F4EA0D /* ViewController.swift */, 114 | FA02C6EF23EB05EE00F4EA0D /* Assets.xcassets */, 115 | FA02C6F123EB05EE00F4EA0D /* Info.plist */, 116 | D7DBDDD22701C87A00B42C0D /* Constants.swift */, 117 | ); 118 | path = KagiSearchApp; 119 | sourceTree = ""; 120 | }; 121 | FA02C6FA23EB05EF00F4EA0D /* Frameworks */ = { 122 | isa = PBXGroup; 123 | children = ( 124 | FA02C6FB23EB05EF00F4EA0D /* Cocoa.framework */, 125 | ); 126 | name = Frameworks; 127 | sourceTree = ""; 128 | }; 129 | FA02C6FD23EB05EF00F4EA0D /* KagiSearch Extension */ = { 130 | isa = PBXGroup; 131 | children = ( 132 | D709FFF52702CCC700E42A74 /* SearchSourcesManager.swift */, 133 | FA02C6FE23EB05EF00F4EA0D /* SafariExtensionHandler.swift */, 134 | FA02C70023EB05EF00F4EA0D /* SafariExtensionViewController.swift */, 135 | FA02C70223EB05EF00F4EA0D /* SafariExtensionViewController.xib */, 136 | FA02C70523EB05EF00F4EA0D /* Info.plist */, 137 | D7A9ACFC2701B84200C7AD84 /* origi.png */, 138 | FA02C70A23EB05EF00F4EA0D /* KagiSearch_Extension.entitlements */, 139 | ); 140 | path = "KagiSearch Extension"; 141 | sourceTree = ""; 142 | }; 143 | /* End PBXGroup section */ 144 | 145 | /* Begin PBXNativeTarget section */ 146 | FA02C6E223EB05EC00F4EA0D /* KagiSearch */ = { 147 | isa = PBXNativeTarget; 148 | buildConfigurationList = FA02C71123EB05EF00F4EA0D /* Build configuration list for PBXNativeTarget "KagiSearch" */; 149 | buildPhases = ( 150 | FA02C6DF23EB05EC00F4EA0D /* Sources */, 151 | FA02C6E023EB05EC00F4EA0D /* Frameworks */, 152 | FA02C6E123EB05EC00F4EA0D /* Resources */, 153 | FA02C71023EB05EF00F4EA0D /* Embed App Extensions */, 154 | ); 155 | buildRules = ( 156 | ); 157 | dependencies = ( 158 | FA02C6F923EB05EF00F4EA0D /* PBXTargetDependency */, 159 | ); 160 | name = KagiSearch; 161 | productName = RedirectPlease; 162 | productReference = FA02C6E323EB05EC00F4EA0D /* KagiSearch.app */; 163 | productType = "com.apple.product-type.application"; 164 | }; 165 | FA02C6F523EB05EF00F4EA0D /* KagiSearch Extension */ = { 166 | isa = PBXNativeTarget; 167 | buildConfigurationList = FA02C70D23EB05EF00F4EA0D /* Build configuration list for PBXNativeTarget "KagiSearch Extension" */; 168 | buildPhases = ( 169 | FA02C6F223EB05EF00F4EA0D /* Sources */, 170 | FA02C6F323EB05EF00F4EA0D /* Frameworks */, 171 | FA02C6F423EB05EF00F4EA0D /* Resources */, 172 | ); 173 | buildRules = ( 174 | ); 175 | dependencies = ( 176 | ); 177 | name = "KagiSearch Extension"; 178 | productName = "RedirectPlease Extension"; 179 | productReference = FA02C6F623EB05EF00F4EA0D /* KagiSearch Extension.appex */; 180 | productType = "com.apple.product-type.app-extension"; 181 | }; 182 | /* End PBXNativeTarget section */ 183 | 184 | /* Begin PBXProject section */ 185 | FA02C6DB23EB05EC00F4EA0D /* Project object */ = { 186 | isa = PBXProject; 187 | attributes = { 188 | LastSwiftUpdateCheck = 1130; 189 | LastUpgradeCheck = 1300; 190 | ORGANIZATIONNAME = "Marco Cebrián Muiño"; 191 | TargetAttributes = { 192 | FA02C6E223EB05EC00F4EA0D = { 193 | CreatedOnToolsVersion = 11.3.1; 194 | }; 195 | FA02C6F523EB05EF00F4EA0D = { 196 | CreatedOnToolsVersion = 11.3.1; 197 | }; 198 | }; 199 | }; 200 | buildConfigurationList = FA02C6DE23EB05EC00F4EA0D /* Build configuration list for PBXProject "KagiSearch" */; 201 | compatibilityVersion = "Xcode 9.3"; 202 | developmentRegion = en; 203 | hasScannedForEncodings = 0; 204 | knownRegions = ( 205 | en, 206 | Base, 207 | ); 208 | mainGroup = FA02C6DA23EB05EC00F4EA0D; 209 | productRefGroup = FA02C6E423EB05EC00F4EA0D /* Products */; 210 | projectDirPath = ""; 211 | projectRoot = ""; 212 | targets = ( 213 | FA02C6E223EB05EC00F4EA0D /* KagiSearch */, 214 | FA02C6F523EB05EF00F4EA0D /* KagiSearch Extension */, 215 | ); 216 | }; 217 | /* End PBXProject section */ 218 | 219 | /* Begin PBXResourcesBuildPhase section */ 220 | FA02C6E123EB05EC00F4EA0D /* Resources */ = { 221 | isa = PBXResourcesBuildPhase; 222 | buildActionMask = 2147483647; 223 | files = ( 224 | FA02C6E723EB05EC00F4EA0D /* KagiSearchApp.entitlements in Resources */, 225 | FA02C6F023EB05EE00F4EA0D /* Assets.xcassets in Resources */, 226 | D7A9ACFD2701B84200C7AD84 /* origi.png in Resources */, 227 | FA02C6EC23EB05EC00F4EA0D /* Main.storyboard in Resources */, 228 | ); 229 | runOnlyForDeploymentPostprocessing = 0; 230 | }; 231 | FA02C6F423EB05EF00F4EA0D /* Resources */ = { 232 | isa = PBXResourcesBuildPhase; 233 | buildActionMask = 2147483647; 234 | files = ( 235 | FA02C70423EB05EF00F4EA0D /* SafariExtensionViewController.xib in Resources */, 236 | ); 237 | runOnlyForDeploymentPostprocessing = 0; 238 | }; 239 | /* End PBXResourcesBuildPhase section */ 240 | 241 | /* Begin PBXSourcesBuildPhase section */ 242 | FA02C6DF23EB05EC00F4EA0D /* Sources */ = { 243 | isa = PBXSourcesBuildPhase; 244 | buildActionMask = 2147483647; 245 | files = ( 246 | FA02C6EE23EB05EC00F4EA0D /* ViewController.swift in Sources */, 247 | FA02C6E923EB05EC00F4EA0D /* AppDelegate.swift in Sources */, 248 | D7DBDDD32701C87A00B42C0D /* Constants.swift in Sources */, 249 | ); 250 | runOnlyForDeploymentPostprocessing = 0; 251 | }; 252 | FA02C6F223EB05EF00F4EA0D /* Sources */ = { 253 | isa = PBXSourcesBuildPhase; 254 | buildActionMask = 2147483647; 255 | files = ( 256 | D709FFF62702CCC700E42A74 /* SearchSourcesManager.swift in Sources */, 257 | FA02C70123EB05EF00F4EA0D /* SafariExtensionViewController.swift in Sources */, 258 | FA02C6FF23EB05EF00F4EA0D /* SafariExtensionHandler.swift in Sources */, 259 | ); 260 | runOnlyForDeploymentPostprocessing = 0; 261 | }; 262 | /* End PBXSourcesBuildPhase section */ 263 | 264 | /* Begin PBXTargetDependency section */ 265 | FA02C6F923EB05EF00F4EA0D /* PBXTargetDependency */ = { 266 | isa = PBXTargetDependency; 267 | target = FA02C6F523EB05EF00F4EA0D /* KagiSearch Extension */; 268 | targetProxy = FA02C6F823EB05EF00F4EA0D /* PBXContainerItemProxy */; 269 | }; 270 | /* End PBXTargetDependency section */ 271 | 272 | /* Begin PBXVariantGroup section */ 273 | FA02C6EA23EB05EC00F4EA0D /* Main.storyboard */ = { 274 | isa = PBXVariantGroup; 275 | children = ( 276 | FA02C6EB23EB05EC00F4EA0D /* Base */, 277 | ); 278 | name = Main.storyboard; 279 | sourceTree = ""; 280 | }; 281 | FA02C70223EB05EF00F4EA0D /* SafariExtensionViewController.xib */ = { 282 | isa = PBXVariantGroup; 283 | children = ( 284 | FA02C70323EB05EF00F4EA0D /* Base */, 285 | ); 286 | name = SafariExtensionViewController.xib; 287 | sourceTree = ""; 288 | }; 289 | /* End PBXVariantGroup section */ 290 | 291 | /* Begin XCBuildConfiguration section */ 292 | FA02C70B23EB05EF00F4EA0D /* Debug */ = { 293 | isa = XCBuildConfiguration; 294 | buildSettings = { 295 | ALWAYS_SEARCH_USER_PATHS = NO; 296 | CLANG_ANALYZER_NONNULL = YES; 297 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 298 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 299 | CLANG_CXX_LIBRARY = "libc++"; 300 | CLANG_ENABLE_MODULES = YES; 301 | CLANG_ENABLE_OBJC_ARC = YES; 302 | CLANG_ENABLE_OBJC_WEAK = YES; 303 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 304 | CLANG_WARN_BOOL_CONVERSION = YES; 305 | CLANG_WARN_COMMA = YES; 306 | CLANG_WARN_CONSTANT_CONVERSION = YES; 307 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 308 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 309 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 310 | CLANG_WARN_EMPTY_BODY = YES; 311 | CLANG_WARN_ENUM_CONVERSION = YES; 312 | CLANG_WARN_INFINITE_RECURSION = YES; 313 | CLANG_WARN_INT_CONVERSION = YES; 314 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 315 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 316 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 317 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 318 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 319 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 320 | CLANG_WARN_STRICT_PROTOTYPES = YES; 321 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 322 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 323 | CLANG_WARN_UNREACHABLE_CODE = YES; 324 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 325 | COPY_PHASE_STRIP = NO; 326 | DEBUG_INFORMATION_FORMAT = dwarf; 327 | ENABLE_STRICT_OBJC_MSGSEND = YES; 328 | ENABLE_TESTABILITY = YES; 329 | GCC_C_LANGUAGE_STANDARD = gnu11; 330 | GCC_DYNAMIC_NO_PIC = NO; 331 | GCC_NO_COMMON_BLOCKS = YES; 332 | GCC_OPTIMIZATION_LEVEL = 0; 333 | GCC_PREPROCESSOR_DEFINITIONS = ( 334 | "DEBUG=1", 335 | "$(inherited)", 336 | ); 337 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 338 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 339 | GCC_WARN_UNDECLARED_SELECTOR = YES; 340 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 341 | GCC_WARN_UNUSED_FUNCTION = YES; 342 | GCC_WARN_UNUSED_VARIABLE = YES; 343 | MACOSX_DEPLOYMENT_TARGET = 10.12; 344 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 345 | MTL_FAST_MATH = YES; 346 | ONLY_ACTIVE_ARCH = YES; 347 | SDKROOT = macosx; 348 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 349 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 350 | }; 351 | name = Debug; 352 | }; 353 | FA02C70C23EB05EF00F4EA0D /* Release */ = { 354 | isa = XCBuildConfiguration; 355 | buildSettings = { 356 | ALWAYS_SEARCH_USER_PATHS = NO; 357 | CLANG_ANALYZER_NONNULL = YES; 358 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 359 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 360 | CLANG_CXX_LIBRARY = "libc++"; 361 | CLANG_ENABLE_MODULES = YES; 362 | CLANG_ENABLE_OBJC_ARC = YES; 363 | CLANG_ENABLE_OBJC_WEAK = YES; 364 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 365 | CLANG_WARN_BOOL_CONVERSION = YES; 366 | CLANG_WARN_COMMA = YES; 367 | CLANG_WARN_CONSTANT_CONVERSION = YES; 368 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 369 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 370 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 371 | CLANG_WARN_EMPTY_BODY = YES; 372 | CLANG_WARN_ENUM_CONVERSION = YES; 373 | CLANG_WARN_INFINITE_RECURSION = YES; 374 | CLANG_WARN_INT_CONVERSION = YES; 375 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 376 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 377 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 378 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 379 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 380 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 381 | CLANG_WARN_STRICT_PROTOTYPES = YES; 382 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 383 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 384 | CLANG_WARN_UNREACHABLE_CODE = YES; 385 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 386 | COPY_PHASE_STRIP = NO; 387 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 388 | ENABLE_NS_ASSERTIONS = NO; 389 | ENABLE_STRICT_OBJC_MSGSEND = YES; 390 | GCC_C_LANGUAGE_STANDARD = gnu11; 391 | GCC_NO_COMMON_BLOCKS = YES; 392 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 393 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 394 | GCC_WARN_UNDECLARED_SELECTOR = YES; 395 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 396 | GCC_WARN_UNUSED_FUNCTION = YES; 397 | GCC_WARN_UNUSED_VARIABLE = YES; 398 | MACOSX_DEPLOYMENT_TARGET = 10.12; 399 | MTL_ENABLE_DEBUG_INFO = NO; 400 | MTL_FAST_MATH = YES; 401 | SDKROOT = macosx; 402 | SWIFT_COMPILATION_MODE = wholemodule; 403 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 404 | }; 405 | name = Release; 406 | }; 407 | FA02C70E23EB05EF00F4EA0D /* Debug */ = { 408 | isa = XCBuildConfiguration; 409 | buildSettings = { 410 | CODE_SIGN_ENTITLEMENTS = "KagiSearch Extension/KagiSearch_Extension.entitlements"; 411 | CODE_SIGN_IDENTITY = "Apple Development"; 412 | CODE_SIGN_STYLE = Automatic; 413 | CURRENT_PROJECT_VERSION = 57; 414 | DEVELOPMENT_TEAM = JNNL648AFG; 415 | ENABLE_HARDENED_RUNTIME = YES; 416 | INFOPLIST_FILE = "KagiSearch Extension/Info.plist"; 417 | LD_RUNPATH_SEARCH_PATHS = ( 418 | "$(inherited)", 419 | "@executable_path/../Frameworks", 420 | "@executable_path/../../../../Frameworks", 421 | ); 422 | MARKETING_VERSION = 1.1; 423 | PRODUCT_BUNDLE_IDENTIFIER = com.mcebrian.Kagi.extension; 424 | PRODUCT_NAME = "$(TARGET_NAME)"; 425 | PROVISIONING_PROFILE_SPECIFIER = ""; 426 | SKIP_INSTALL = YES; 427 | SWIFT_VERSION = 5.0; 428 | }; 429 | name = Debug; 430 | }; 431 | FA02C70F23EB05EF00F4EA0D /* Release */ = { 432 | isa = XCBuildConfiguration; 433 | buildSettings = { 434 | CODE_SIGN_ENTITLEMENTS = "KagiSearch Extension/KagiSearch_Extension.entitlements"; 435 | CODE_SIGN_IDENTITY = "Apple Development"; 436 | CODE_SIGN_STYLE = Automatic; 437 | CURRENT_PROJECT_VERSION = 57; 438 | DEVELOPMENT_TEAM = JNNL648AFG; 439 | ENABLE_HARDENED_RUNTIME = YES; 440 | INFOPLIST_FILE = "KagiSearch Extension/Info.plist"; 441 | LD_RUNPATH_SEARCH_PATHS = ( 442 | "$(inherited)", 443 | "@executable_path/../Frameworks", 444 | "@executable_path/../../../../Frameworks", 445 | ); 446 | MARKETING_VERSION = 1.1; 447 | PRODUCT_BUNDLE_IDENTIFIER = com.mcebrian.Kagi.extension; 448 | PRODUCT_NAME = "$(TARGET_NAME)"; 449 | PROVISIONING_PROFILE_SPECIFIER = ""; 450 | SKIP_INSTALL = YES; 451 | SWIFT_VERSION = 5.0; 452 | }; 453 | name = Release; 454 | }; 455 | FA02C71223EB05EF00F4EA0D /* Debug */ = { 456 | isa = XCBuildConfiguration; 457 | buildSettings = { 458 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 459 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 460 | CODE_SIGN_ENTITLEMENTS = KagiSearchApp/KagiSearchApp.entitlements; 461 | CODE_SIGN_IDENTITY = "Apple Development"; 462 | CODE_SIGN_STYLE = Automatic; 463 | COMBINE_HIDPI_IMAGES = YES; 464 | CURRENT_PROJECT_VERSION = 57; 465 | DEVELOPMENT_TEAM = JNNL648AFG; 466 | ENABLE_HARDENED_RUNTIME = YES; 467 | INFOPLIST_FILE = KagiSearchApp/Info.plist; 468 | LD_RUNPATH_SEARCH_PATHS = ( 469 | "$(inherited)", 470 | "@executable_path/../Frameworks", 471 | ); 472 | MARKETING_VERSION = 1.1; 473 | PRODUCT_BUNDLE_IDENTIFIER = com.mcebrian.Kagi; 474 | PRODUCT_NAME = "$(TARGET_NAME)"; 475 | SWIFT_VERSION = 5.0; 476 | }; 477 | name = Debug; 478 | }; 479 | FA02C71323EB05EF00F4EA0D /* Release */ = { 480 | isa = XCBuildConfiguration; 481 | buildSettings = { 482 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 483 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 484 | CODE_SIGN_ENTITLEMENTS = KagiSearchApp/KagiSearchApp.entitlements; 485 | CODE_SIGN_IDENTITY = "Apple Development"; 486 | CODE_SIGN_STYLE = Automatic; 487 | COMBINE_HIDPI_IMAGES = YES; 488 | CURRENT_PROJECT_VERSION = 57; 489 | DEVELOPMENT_TEAM = JNNL648AFG; 490 | ENABLE_HARDENED_RUNTIME = YES; 491 | INFOPLIST_FILE = KagiSearchApp/Info.plist; 492 | LD_RUNPATH_SEARCH_PATHS = ( 493 | "$(inherited)", 494 | "@executable_path/../Frameworks", 495 | ); 496 | MARKETING_VERSION = 1.1; 497 | PRODUCT_BUNDLE_IDENTIFIER = com.mcebrian.Kagi; 498 | PRODUCT_NAME = "$(TARGET_NAME)"; 499 | SWIFT_VERSION = 5.0; 500 | }; 501 | name = Release; 502 | }; 503 | /* End XCBuildConfiguration section */ 504 | 505 | /* Begin XCConfigurationList section */ 506 | FA02C6DE23EB05EC00F4EA0D /* Build configuration list for PBXProject "KagiSearch" */ = { 507 | isa = XCConfigurationList; 508 | buildConfigurations = ( 509 | FA02C70B23EB05EF00F4EA0D /* Debug */, 510 | FA02C70C23EB05EF00F4EA0D /* Release */, 511 | ); 512 | defaultConfigurationIsVisible = 0; 513 | defaultConfigurationName = Release; 514 | }; 515 | FA02C70D23EB05EF00F4EA0D /* Build configuration list for PBXNativeTarget "KagiSearch Extension" */ = { 516 | isa = XCConfigurationList; 517 | buildConfigurations = ( 518 | FA02C70E23EB05EF00F4EA0D /* Debug */, 519 | FA02C70F23EB05EF00F4EA0D /* Release */, 520 | ); 521 | defaultConfigurationIsVisible = 0; 522 | defaultConfigurationName = Release; 523 | }; 524 | FA02C71123EB05EF00F4EA0D /* Build configuration list for PBXNativeTarget "KagiSearch" */ = { 525 | isa = XCConfigurationList; 526 | buildConfigurations = ( 527 | FA02C71223EB05EF00F4EA0D /* Debug */, 528 | FA02C71323EB05EF00F4EA0D /* Release */, 529 | ); 530 | defaultConfigurationIsVisible = 0; 531 | defaultConfigurationName = Release; 532 | }; 533 | /* End XCConfigurationList section */ 534 | }; 535 | rootObject = FA02C6DB23EB05EC00F4EA0D /* Project object */; 536 | } 537 | --------------------------------------------------------------------------------