├── .gitignore ├── LICENSE ├── README.md ├── css ├── _fonts.scss ├── jquery-ui.structure.css ├── jquery-ui.theme.min.css ├── styles.scss └── tooltipster.bundle.min.css ├── dist ├── styles.css └── styles.css.map ├── fonts └── Inter-var.woff2 ├── images ├── avatar_small.png ├── button_bookmark_idle.png ├── button_bookmark_pressed.png ├── button_close.png ├── button_delete_idle.png ├── button_delete_pressed.png ├── button_external_idle.png ├── button_external_pressed.png ├── button_like_idle.png ├── button_like_pressed.png ├── button_move_idle.png ├── button_move_pressed.png ├── button_read.png ├── button_read_hover.png ├── button_read_idle.png ├── button_read_pressed.png ├── button_reply_idle.png ├── button_reply_pressed.png ├── button_repost_idle.png ├── button_repost_pressed.png ├── button_rsvp_idle.png ├── button_rsvp_pressed.png ├── button_unread.png ├── button_unread_hover.png ├── button_unread_idle.png ├── button_unread_pressed.png ├── button_zoom_idle.png ├── button_zoom_pressed.png ├── dmg-background.png ├── icon-big.png ├── icon.icns ├── icon.ico ├── icon.png ├── install-spinner.gif ├── macOS-icon.png └── no_connection.png ├── index.html ├── js ├── app.js └── jquery-ui.min.js ├── main.js ├── package-lock.json ├── package.json └── preload.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | out 3 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # IndiePass for Desktop 2 | 3 | An IndieWeb app with extensions for sharing information to micropub endpoints and reading 4 | from microsub endpoints. Written in Electron, so available for Windows, macOS and Linux. 5 | 6 | The philosophy at the moment of the app is that it will not be a full blown client like 7 | the Android version. The main focus is on the most common features used on a daily basis. 8 | 9 | Android: https://github.com/marksuth/indigenous-android 10 | 11 | ## Screenshot 12 | ![IndiePass on Desktop](https://indiepass.app/images/indigenous-desktop-screenshot.png "IndiePass Desktop") 13 | 14 | ## Functionality 15 | 16 | - General 17 | - Uses the font of your system 18 | - Account: configure endpoints and token 19 | - Screen state: remember position, fullscreen etc 20 | - Developer: view response of microsub requests in console 21 | - Microsub 22 | - Allow for global unread start screen if the server supports it 23 | - Different displays: Cards, titles and feed with overlay view 24 | - Autoload more posts 25 | - Read channels and posts per timeline 26 | - Inline responses with or without confirmation 27 | - Listen to audio or watch video 28 | - Mark all read button, per item and optionally when viewing detail 29 | - View individual feed via author name 30 | - Search in all channels and feeds 31 | - Delete or move posts, with default channel for moving 32 | - Navigate posts with keyboard shortcuts: 33 | - p: previous post in feed or overlay 34 | - n: next post in feed or overlay, trigger 'More posts' at end 35 | - r or z: read the post in the overlay 36 | - c or esc: close overlay when opened 37 | - Context menu: right click when selecting text to search DuckDuckGo, or save 38 | an image, or copy the link and so on. 39 | - External links in posts open in your system browser 40 | - Micropub 41 | - Post types: note/article 42 | - Single photo upload 43 | - Syndication targets 44 | - Publish date and status 45 | - Tags, with autocomplete 46 | - Upload a file to media endpoint (soon in posts) 47 | 48 | ## Roadmap 49 | 50 | There are a few outstanding feaures coming somewhere in the near future: 51 | 52 | - Use media endpoint to upload image, and allow multiple 53 | - Show all sources (if the microsub supports method=tree) 54 | - Figure out automatic builds and updates 55 | 56 | Note that currently multiple accounts or using the IndieAuth flow is 57 | not on the roadmap. Pull requests welcome of course :) 58 | 59 | ## Installation 60 | 61 | See the releases page: https://github.com/indiepass/indigenous-desktop/releases 62 | 63 | ## Token generation in WordPress 64 | 65 | When you generate a token on WordPress and using Aperture as your Microsub 66 | server, make sure the 'me' value of the token is set to the same as used 67 | in Aperture. Usually, this is just the URL of your website. To make sure 68 | that the 'me' value is set to that, fill in the Website on your profile 69 | and set the 'Set User to Represent Site URL' value to your user on the 70 | IndieAuth settings page. 71 | 72 | ## Development or installation from source 73 | 74 | You can also run this application if you are familiar with development tools. Make sure 75 | to have the most stable version running of npm. 76 | 77 | To clone and run this repository you'll need [Git](https://git-scm.com) and 78 | [Node.js](https://nodejs.org/en/download/) (which comes with [npm](http://npmjs.com)) 79 | installed on your computer. From your command line: 80 | 81 | ```bash 82 | # Clone this repository 83 | git clone https://github.com/indiepass/indigenous-desktop 84 | # Go into the repository 85 | cd indigenous-desktop 86 | # Install dependencies 87 | npm install 88 | # Run the app 89 | npm start 90 | ``` 91 | 92 | ## Credits 93 | 94 | This app uses following libraries: 95 | 96 | - https://github.com/electron/electron 97 | - https://github.com/sindresorhus/electron-store 98 | - https://jquery.com 99 | - https://iamceege.github.io/tooltipster 100 | - https://github.com/iamkun/dayjs 101 | - https://craig.is/killing/mice 102 | - https://github.com/zeusdeux/isInViewport 103 | - https://github.com/sindresorhus/electron-context-menu 104 | - https://github.com/mawie81/electron-window-state 105 | - https://github.com/dimsemenov/Magnific-Popup 106 | - https://github.com/HubSpot/pace 107 | - https://github.com/electron-userland/electron-forge 108 | 109 | ## Other Micropub and Microsub clients 110 | 111 | There are ton of other (mobile) clients, see https://indieweb.org/Micropub/Clients and 112 | https://indieweb.org/Microsub 113 | -------------------------------------------------------------------------------- /css/_fonts.scss: -------------------------------------------------------------------------------- 1 | // Inter 2 | @font-face { 3 | font-family: "Inter"; 4 | font-weight: 100 900; 5 | font-style: oblique 0deg 10deg; 6 | font-display: swap; 7 | src: url("../fonts/Inter-var.woff2") format("woff2 supports variations(gvar)"), 8 | url("../fonts/Inter-var.woff2") format("woff2-variations"), 9 | url("../fonts/Inter-var.woff2") format("woff2"); 10 | } 11 | -------------------------------------------------------------------------------- /css/jquery-ui.structure.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.12.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/category/theming/ 10 | */ 11 | /* Layout helpers 12 | ----------------------------------*/ 13 | .ui-helper-hidden { 14 | display: none; 15 | } 16 | .ui-helper-hidden-accessible { 17 | border: 0; 18 | clip: rect(0 0 0 0); 19 | height: 1px; 20 | margin: -1px; 21 | overflow: hidden; 22 | padding: 0; 23 | position: absolute; 24 | width: 1px; 25 | } 26 | .ui-helper-reset { 27 | margin: 0; 28 | padding: 0; 29 | border: 0; 30 | outline: 0; 31 | line-height: 1.3; 32 | text-decoration: none; 33 | font-size: 100%; 34 | list-style: none; 35 | } 36 | .ui-helper-clearfix:before, 37 | .ui-helper-clearfix:after { 38 | content: ""; 39 | display: table; 40 | border-collapse: collapse; 41 | } 42 | .ui-helper-clearfix:after { 43 | clear: both; 44 | } 45 | .ui-helper-zfix { 46 | width: 100%; 47 | height: 100%; 48 | top: 0; 49 | left: 0; 50 | position: absolute; 51 | opacity: 0; 52 | filter:Alpha(Opacity=0); /* support: IE8 */ 53 | } 54 | 55 | .ui-front { 56 | z-index: 100; 57 | } 58 | 59 | 60 | /* Interaction Cues 61 | ----------------------------------*/ 62 | .ui-state-disabled { 63 | cursor: default !important; 64 | pointer-events: none; 65 | } 66 | 67 | 68 | /* Icons 69 | ----------------------------------*/ 70 | .ui-icon { 71 | display: inline-block; 72 | vertical-align: middle; 73 | margin-top: -.25em; 74 | position: relative; 75 | text-indent: -99999px; 76 | overflow: hidden; 77 | background-repeat: no-repeat; 78 | } 79 | 80 | .ui-widget-icon-block { 81 | left: 50%; 82 | margin-left: -8px; 83 | display: block; 84 | } 85 | 86 | /* Misc visuals 87 | ----------------------------------*/ 88 | 89 | /* Overlays */ 90 | .ui-widget-overlay { 91 | position: fixed; 92 | top: 0; 93 | left: 0; 94 | width: 100%; 95 | height: 100%; 96 | } 97 | .ui-autocomplete { 98 | position: absolute; 99 | top: 0; 100 | left: 0; 101 | cursor: default; 102 | } 103 | .ui-menu { 104 | list-style: none; 105 | padding: 0; 106 | margin: 0; 107 | display: block; 108 | outline: 0; 109 | } 110 | .ui-menu .ui-menu { 111 | position: absolute; 112 | } 113 | .ui-menu .ui-menu-item { 114 | margin: 0; 115 | cursor: pointer; 116 | /* support: IE10, see #8844 */ 117 | /* list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"); */ 118 | } 119 | .ui-menu .ui-menu-item-wrapper { 120 | position: relative; 121 | padding: 3px 1em 3px .4em; 122 | } 123 | .ui-menu .ui-menu-divider { 124 | margin: 5px 0; 125 | height: 0; 126 | font-size: 0; 127 | line-height: 0; 128 | border-width: 1px 0 0 0; 129 | } 130 | .ui-menu .ui-state-focus, 131 | .ui-menu .ui-state-active { 132 | margin: -1px; 133 | } 134 | 135 | /* icon support */ 136 | .ui-menu-icons { 137 | position: relative; 138 | } 139 | .ui-menu-icons .ui-menu-item-wrapper { 140 | padding-left: 2em; 141 | } 142 | 143 | /* left-aligned */ 144 | .ui-menu .ui-icon { 145 | position: absolute; 146 | top: 0; 147 | bottom: 0; 148 | left: .2em; 149 | margin: auto 0; 150 | } 151 | 152 | /* right-aligned */ 153 | .ui-menu .ui-menu-icon { 154 | left: auto; 155 | right: 0; 156 | } 157 | -------------------------------------------------------------------------------- /css/jquery-ui.theme.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.12.1 - 2020-04-04 2 | * http://jqueryui.com 3 | * Copyright jQuery Foundation and other contributors; Licensed MIT */ 4 | 5 | .ui-widget{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget.ui-widget-content{border:1px solid #c5c5c5}.ui-widget-content{border:1px solid #ddd;background:#fff;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #ddd;background:#e9e9e9;color:#333;font-weight:bold}.ui-widget-header a{color:#333}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,.ui-button,html .ui-button.ui-state-disabled:hover,html .ui-button.ui-state-disabled:active{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:normal;color:#454545}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited,a.ui-button,a:link.ui-button,a:visited.ui-button,.ui-button{color:#454545;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus,.ui-button:hover,.ui-button:focus{border:1px solid #ccc;background:#ededed;font-weight:normal;color:#2b2b2b}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,a.ui-button:hover,a.ui-button:focus{color:#2b2b2b;text-decoration:none}.ui-visual-focus{box-shadow:0 0 3px 1px rgb(94,158,214)}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active,a.ui-button:active,.ui-button:active,.ui-button.ui-state-active:hover{border:1px solid #003eff;background:#007fff;font-weight:normal;color:#fff}.ui-icon-background,.ui-state-active .ui-icon-background{border:#003eff;background-color:#fff}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#fff;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #dad55e;background:#fffa90;color:#777620}.ui-state-checked{border:1px solid #dad55e;background:#fffa90}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#777620}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #f1a899;background:#fddfdf;color:#5f3f3f}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#5f3f3f}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#5f3f3f}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("images/ui-icons_444444_256x240.png")}.ui-widget-header .ui-icon{background-image:url("images/ui-icons_444444_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon,.ui-button:hover .ui-icon,.ui-button:focus .ui-icon{background-image:url("images/ui-icons_555555_256x240.png")}.ui-state-active .ui-icon,.ui-button:active .ui-icon{background-image:url("images/ui-icons_ffffff_256x240.png")}.ui-state-highlight .ui-icon,.ui-button .ui-state-highlight.ui-icon{background-image:url("images/ui-icons_777620_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("images/ui-icons_cc0000_256x240.png")}.ui-button .ui-icon{background-image:url("images/ui-icons_777777_256x240.png")}.ui-icon-blank{background-position:16px 16px}.ui-icon-caret-1-n{background-position:0 0}.ui-icon-caret-1-ne{background-position:-16px 0}.ui-icon-caret-1-e{background-position:-32px 0}.ui-icon-caret-1-se{background-position:-48px 0}.ui-icon-caret-1-s{background-position:-65px 0}.ui-icon-caret-1-sw{background-position:-80px 0}.ui-icon-caret-1-w{background-position:-96px 0}.ui-icon-caret-1-nw{background-position:-112px 0}.ui-icon-caret-2-n-s{background-position:-128px 0}.ui-icon-caret-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-65px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-65px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:1px -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:3px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:3px}.ui-widget-overlay{background:#aaa;opacity:.3;filter:Alpha(Opacity=30)}.ui-widget-shadow{-webkit-box-shadow:0 0 5px #666;box-shadow:0 0 5px #666} -------------------------------------------------------------------------------- /css/styles.scss: -------------------------------------------------------------------------------- 1 | //Variables 2 | @import "fonts"; 3 | @import "../node_modules/normalize.css/normalize.css"; 4 | :root { 5 | --primary-color: #C62828; 6 | --primary-color-accent: #C62828; 7 | --background-color: #fdfdfd; 8 | --highlight-color: #f7f7f7; 9 | --link-color: #0000ff; 10 | --border-color: #d4d4d4; 11 | --minimum-text: #666; 12 | --reader-top-color: #fff; 13 | --nav-h3-color: #000; 14 | 15 | --color-error: #C62828; 16 | --color-success: #28a745; 17 | 18 | --text-color: #333333; 19 | --list-row-color: #ffffff; 20 | --list-background-color: #f5f5f5; 21 | --list-item-padding: 10px; 22 | --list-divider-color: #e2e6e9; 23 | --mini-action-color: 255,255,255; 24 | 25 | --input-color: #333333; 26 | --input-border-color: #d4d4d4; 27 | --input-background-color: #ffffff; 28 | } 29 | 30 | [data-theme="dark"] { 31 | 32 | --background-color: #202531; 33 | --text-color: #f1f1f1; 34 | --primary-color-accent: #f1f1f1; 35 | --highlight-color: #2d3445; 36 | --link-color: #C62828; 37 | --border-color: #474d5c; 38 | --minimum-text: #c0c2c8; 39 | --reader-top-color: #202531; 40 | --nav-h3-color: #f1f1f1; 41 | --mini-action-color: 17.6,20.4,27.1; 42 | 43 | --primary-color: #C62828; 44 | --list-background-color: #2d3445; 45 | 46 | --input-color: #7bb6ff; 47 | --input-border-color: #c0c2c8; 48 | --input-background-color: #474d5c; 49 | 50 | --color-error: #C62828; 51 | --color-success: #28a745; 52 | } 53 | 54 | //End variables 55 | 56 | html { 57 | color: var(--text-color); 58 | font-size: 112.5%; 59 | width: 100%; 60 | height: 100%; 61 | display: flex; 62 | flex: 1; 63 | } 64 | 65 | body { 66 | background-color: var(--background-color); 67 | margin: 0; 68 | font-size: 18px; 69 | font-family: "Inter", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; 70 | line-height: 28px; 71 | display: flex; 72 | width: 100%; 73 | height: 100%; 74 | flex: 1; 75 | } 76 | 77 | h3 { 78 | margin-top: 0; 79 | } 80 | 81 | p { 82 | margin: 0 0 1em 0; 83 | } 84 | 85 | //Based on https://xel-toolkit.org/elements/x-box 86 | #main { 87 | position: relative; 88 | display: flex; 89 | flex-flow: row; 90 | width: 100%; 91 | height: 100%; 92 | } 93 | 94 | #sidebar { 95 | position: fixed; 96 | left: 0; 97 | top: 0; 98 | width: 210px; 99 | overflow: auto; 100 | box-shadow: 0 2px 1px -1px rgba(0,0,0,0.2), 0 1px 1px 0 rgba(0,0,0,0.14), 0 1px 3px 0 rgba(0,0,0,0.12); 101 | z-index: 100; 102 | height: 100%; 103 | } 104 | 105 | #views { 106 | margin-left: 270px; 107 | padding: 10px; 108 | display: block; 109 | /*height: 100%;*/ 110 | min-width: 20px; 111 | min-height: 20px; 112 | position: relative; 113 | flex: 1; 114 | 115 | > div { 116 | width: 100%; 117 | height: 100%; 118 | box-sizing: border-box; 119 | } 120 | } 121 | 122 | //end based on x-box 123 | 124 | .no-connection { 125 | margin-top: 20px; 126 | text-align: center; 127 | background-color: #fff; 128 | padding: 10px; 129 | cursor: pointer; 130 | } 131 | 132 | .reader, .settings, .post, .media, .about, .card-view, .title-view, .channel { 133 | cursor: pointer; 134 | } 135 | 136 | .post, .media, .syndication-targets-wrapper, .media-url, .content-truncated img, .content-card-view img { 137 | display: none; 138 | } 139 | 140 | .selected { 141 | text-decoration: underline; 142 | font-weight: 400; 143 | } 144 | 145 | .post-buttons-wrapper { 146 | margin: 20px 0; 147 | } 148 | 149 | .send-post { 150 | float: left; 151 | } 152 | 153 | .reload-config { 154 | float: right; 155 | } 156 | 157 | .settings-button-wrapper { 158 | margin: 20px 0; 159 | padding-bottom: 20px; 160 | .button-wrapper { 161 | display: inline-block; 162 | margin-right: 20px; 163 | } 164 | } 165 | 166 | #reader-container { 167 | display: block; 168 | } 169 | 170 | #settings-container, #posts-container, #media-container, #about-container { 171 | display: none; 172 | padding: 10px; 173 | } 174 | 175 | .reader-wrapper { 176 | display: flex; 177 | } 178 | 179 | .channel-wrapper { 180 | padding-right: 20px; 181 | min-width: 190px; 182 | } 183 | 184 | .reader-top { 185 | position: fixed; 186 | z-index: 100; 187 | top: 0; 188 | background: var(--reader-top-color); 189 | left: 279px; 190 | right: 0; 191 | padding: 10px 0; 192 | display: flex; 193 | flex-direction: row; 194 | user-select: none; 195 | 196 | .text { 197 | width: 300px; 198 | } 199 | } 200 | 201 | #timeline-container { 202 | flex-flow: row; 203 | margin-top: 70px; 204 | } 205 | 206 | .new, .published-on { 207 | font-size: 14px; 208 | color: var(--minimum-text); 209 | } 210 | 211 | .channel:hover, .channel-hover, .channel-highlight { 212 | color: var(--primary-color-accent); 213 | background-color: var(--list-background-color); 214 | } 215 | 216 | .indicator { 217 | text-decoration: none; 218 | color: var(--text-color); 219 | font-size: 14px; 220 | display: inline-block; 221 | } 222 | 223 | .info { 224 | margin-top: 10px; 225 | font-size: 18px; 226 | } 227 | 228 | .mark-read, .next { 229 | font-size: 20px; 230 | display: block; 231 | color: var(--text-color); 232 | cursor: pointer; 233 | } 234 | 235 | .mark-read { 236 | display: inline-block; 237 | margin-left: 20px; 238 | } 239 | 240 | .timeline-display { 241 | color: var(--text-color); 242 | font-size: 20px; 243 | cursor: pointer; 244 | display: inline-block; 245 | margin-left: 20px; 246 | margin-right: 20px; 247 | } 248 | 249 | .search-wrapper { 250 | margin-left: 10px; 251 | flex-grow: 1; 252 | } 253 | 254 | .reader-global-actions { 255 | padding-top: 10px; 256 | text-align: end; 257 | margin-top: 10px; 258 | flex: 1; 259 | } 260 | 261 | .title { 262 | font-size: 20px; 263 | } 264 | 265 | .image { 266 | padding: 10px 0; 267 | } 268 | 269 | .image img, video, iframe { 270 | max-width: 60%; 271 | max-height: 60vh; 272 | } 273 | 274 | .post-content-wrapper img { 275 | max-width: 60%; 276 | max-height: 60vh; 277 | } 278 | 279 | .author-wrapper { 280 | min-width: 90px; 281 | display: inline-block; 282 | } 283 | 284 | .posts { 285 | display: flex; 286 | flex-wrap: wrap; 287 | width: 100%; 288 | flex-direction: row; 289 | } 290 | 291 | .empty-view.timeline-item { 292 | width: 100%; 293 | padding: 10px; 294 | font-size: 20px; 295 | } 296 | 297 | .feed-view { 298 | width: 100%; 299 | position: relative; 300 | } 301 | 302 | .title-view { 303 | width: 100%; 304 | } 305 | 306 | .mfp-container { 307 | border: 20px solid rgba(0,0,0,0.6); 308 | height: auto; 309 | min-height: 100%; 310 | padding: 0 20px 20px 20px; 311 | background: var(--background-color); 312 | } 313 | 314 | .mfp-content { 315 | 316 | height: 100%; 317 | min-height: 100%; 318 | 319 | .actions { 320 | position: sticky; 321 | background-color: var(--background-color); 322 | border-bottom: 1px solid var(--list-divider-color); 323 | margin-bottom: 10px; 324 | top: 0; 325 | left: 20px; 326 | right: 35px; 327 | padding: 10px 10px 5px 10px; 328 | } 329 | 330 | } 331 | 332 | .author-name { 333 | cursor: pointer; 334 | display: inline-block; 335 | } 336 | 337 | .zoom { 338 | cursor: pointer; 339 | background-image: url('../images/button_zoom_idle.png'); 340 | background-size: 30px; 341 | background-repeat: no-repeat; 342 | width: 30px; 343 | height: 30px; 344 | position: absolute; 345 | right: 10px; 346 | top: 10px; 347 | 348 | &:hover { 349 | background-image: url('../images/button_zoom_pressed.png'); 350 | } 351 | } 352 | 353 | .reader-sub-title { 354 | display: none; 355 | font-size: 18px; 356 | margin-left: 10px; 357 | } 358 | 359 | .content-wrapper { 360 | position: relative; 361 | } 362 | 363 | .overlay-close { 364 | cursor: pointer; 365 | display: inline-block; 366 | background-image: url('../images/button_close.png'); 367 | width: 30px; 368 | height: 30px; 369 | background-size: 30px; 370 | background-repeat: no-repeat; 371 | } 372 | 373 | .avatar { 374 | border-radius: 5px; 375 | } 376 | 377 | .button { 378 | cursor: pointer; 379 | text-align: center; 380 | background-color: var(--primary-color); 381 | color: #fff; 382 | padding: 10px 25px; 383 | border: 0 none; 384 | font-weight: normal; 385 | text-decoration: none; 386 | -webkit-transition: all 0.2s ease; 387 | -moz-transition: all 0.2s ease; 388 | transition: all 0.2s ease; 389 | } 390 | 391 | .rsvp-response, .read-response, .move-channel, .timeline-display-select { 392 | padding: 5px; 393 | font-size: 16px; 394 | } 395 | 396 | input, textarea { 397 | margin: 10px 0; 398 | color: var(--input-color); 399 | background-color: var(--input-background-color); 400 | } 401 | 402 | .description { 403 | font-size: 14px; 404 | margin-bottom: 10px; 405 | } 406 | 407 | .actions { 408 | margin-top: 20px; 409 | display: flex; 410 | flex-direction: row; 411 | } 412 | 413 | .actions-column:first-child { 414 | flex-grow: 1; 415 | } 416 | 417 | .next { 418 | margin: 10px; 419 | } 420 | 421 | .post-type { 422 | font-size: 15px; 423 | } 424 | 425 | .content-truncated { 426 | max-height: 200px; 427 | overflow: hidden; 428 | -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%); 429 | mask-image: linear-gradient(to bottom, black 50%, transparent 100%); 430 | } 431 | 432 | .card-view img { 433 | max-height: 300px; 434 | } 435 | 436 | .reference { 437 | margin: 10px 0; 438 | border: 1px solid #cccccc; 439 | border-radius: 5px; 440 | padding: 10px; 441 | } 442 | 443 | .action { 444 | width: 30px; 445 | height: 30px; 446 | display: inline-block; 447 | margin-right: 15px; 448 | cursor: pointer; 449 | z-index: 10; 450 | background-repeat: no-repeat; 451 | background-size: 30px; 452 | } 453 | 454 | .action-reply { 455 | background-image: url('../images/button_reply_idle.png'); 456 | &:hover { 457 | background-image: url('../images/button_reply_pressed.png'); 458 | } 459 | } 460 | 461 | .action-like { 462 | background-image: url('../images/button_like_idle.png'); 463 | &:hover { 464 | background-image: url('../images/button_like_pressed.png'); 465 | } 466 | } 467 | 468 | .action-repost { 469 | background-image: url('../images/button_repost_idle.png'); 470 | &:hover { 471 | background-image: url('../images/button_repost_pressed.png'); 472 | } 473 | } 474 | 475 | .action-bookmark { 476 | background-image: url('../images/button_bookmark_idle.png'); 477 | &:hover { 478 | background-image: url('../images/button_bookmark_pressed.png'); 479 | } 480 | } 481 | 482 | .action-read-of { 483 | background-image: url('../images/button_read_idle.png'); 484 | &:hover { 485 | background-image: url('../images/button_read_pressed.png'); 486 | } 487 | } 488 | 489 | .action-unread { 490 | background-image: url('../images/button_unread.png'); 491 | &:hover { 492 | background-image: url('../images/button_unread_hover.png'); 493 | } 494 | } 495 | 496 | .action-read { 497 | background-image: url('../images/button_read.png'); 498 | &:hover { 499 | background-image: url('../images/button_read_hover.png'); 500 | } 501 | } 502 | 503 | .action-external { 504 | background-image: url('../images/button_external_idle.png'); 505 | &:hover { 506 | background-image: url('../images/button_external_pressed.png'); 507 | } 508 | } 509 | 510 | .action-move { 511 | background-image: url('../images/button_move_idle.png'); 512 | &:hover { 513 | background-image: url('../images/button_move_pressed.png'); 514 | } 515 | } 516 | 517 | .action-delete { 518 | background-image: url('../images/button_delete_idle.png'); 519 | &:hover { 520 | background-image: url('../images/button_delete_pressed.png'); 521 | } 522 | } 523 | 524 | .action-rsvp { 525 | background-image: url('../images/button_rsvp_idle.png'); 526 | &:hover { 527 | background-image: url('../images/button_rsvp_pressed.png'); 528 | } 529 | } 530 | 531 | .tooltipster-base { 532 | margin-left: 3px; 533 | } 534 | 535 | .tooltip-wrapper { 536 | label { 537 | cursor: pointer; 538 | } 539 | } 540 | 541 | .text { 542 | width: 450px; 543 | max-width: 100%; 544 | border: 1px solid var(--input-border-color); 545 | padding: 12px; 546 | } 547 | 548 | .tooltipster-sidetip .tooltipster-content { 549 | padding: 20px; 550 | } 551 | 552 | .tooltip-confirm-wrapper, .tooltip-send { 553 | margin-top: 20px; 554 | } 555 | 556 | .tooltip-confirm-wrapper .tooltip-confirm { 557 | margin-right: 30px; 558 | } 559 | 560 | .tooltip-confirm-wrapper .tooltip-confirm, .tooltip-confirm-wrapper .tooltip-close { 561 | pointer-events: auto; 562 | display: inline-block; 563 | cursor: pointer; 564 | text-decoration: underline; 565 | } 566 | 567 | .inline-textarea { 568 | padding: 10px; 569 | } 570 | 571 | .snackbar { 572 | bottom: 0; 573 | left: 0; 574 | right: 0; 575 | height: 24px; 576 | text-align: center; 577 | position: fixed; 578 | color: #fff; 579 | z-index: 101; 580 | display: none; 581 | 582 | &.success { 583 | padding: 10px; 584 | background: var(--color-success); 585 | } 586 | 587 | &.error { 588 | padding: 10px; 589 | background: var(--primary-color); 590 | } 591 | 592 | .snackbar-wrapper { 593 | display: flex; 594 | flex-direction: row; 595 | } 596 | 597 | .message { 598 | text-align: center; 599 | flex-grow: 1; 600 | } 601 | 602 | .dismiss { 603 | margin: 0 20px 0 0; 604 | font-size: 14px; 605 | cursor: pointer; 606 | } 607 | 608 | .debug { 609 | margin: 0 20px 0 0; 610 | font-size: 14px; 611 | cursor: pointer; 612 | display: none; 613 | } 614 | 615 | } 616 | 617 | //jQuery UI autocomplete */ 618 | .ui-autocomplete { 619 | max-height: 150px; 620 | overflow-y: auto; 621 | /* prevent horizontal scrollbar */ 622 | overflow-x: hidden; 623 | } 624 | /* IE 6 doesn't support max-height 625 | * we use height instead, but this forces the menu to always be this tall 626 | */ 627 | * html .ui-autocomplete { 628 | height: 100px; 629 | } 630 | 631 | .card-view { 632 | width: 33%; 633 | flex-grow: 1; 634 | position: relative; 635 | 636 | .post-content-wrapper { 637 | display: inline-block; 638 | padding: 10px; 639 | margin: 10px; 640 | border: 1px solid var(--border-color); 641 | width: 100%; 642 | } 643 | } 644 | 645 | .mini-actions { 646 | display:none; 647 | position: absolute; 648 | bottom: 11px; 649 | background: rgba(var(--mini-action-color), 0.9); 650 | z-index: 100; 651 | left: 11px; 652 | right: 11px; 653 | padding: 13px 0 5px 10px; 654 | } 655 | 656 | .card-view:hover .mini-actions { 657 | display: block; 658 | } 659 | 660 | .card-view.highlight .post-content-wrapper { 661 | // TODO other highlight? 662 | background: var(--highlight-color); 663 | } 664 | 665 | .feed-view.timeline-item.highlight { 666 | background: var(--highlight-color); 667 | } 668 | 669 | .timeline-item { 670 | display: flex; 671 | 672 | .feed-view { 673 | width: 100%; 674 | } 675 | 676 | } 677 | 678 | .feed-view { 679 | .post-content-wrapper { 680 | width: 100%; 681 | } 682 | } 683 | 684 | .feed-view.timeline-item, .title-view.timeline-item { 685 | padding: 10px; 686 | margin: 10px; 687 | background: var(--background-color); 688 | border: 1px solid var(--border-color); 689 | width: 100%; 690 | } 691 | 692 | a { 693 | color: var(--link-color); 694 | } 695 | 696 | #nav { 697 | 698 | user-select: none; 699 | 700 | section { 701 | .nav-section { 702 | margin: 15px 0; 703 | } 704 | } 705 | 706 | .menu { 707 | button { 708 | color: var(--text-color); 709 | border: none; 710 | background-color: transparent; 711 | width: 100%; 712 | text-align: start; 713 | } 714 | } 715 | 716 | button, a, .channel { 717 | color: var(--text-color); 718 | padding: 5px 0 5px 20px; 719 | display: block; 720 | font-size: 19px; 721 | box-shadow: none; 722 | text-transform: none; 723 | border-radius: 0; 724 | overflow: hidden; 725 | text-decoration: none; 726 | } 727 | 728 | button:hover, a:hover { 729 | color: var(--primary-color); 730 | background-color: var(--list-background-color); 731 | } 732 | } 733 | 734 | #nav { 735 | h3 { 736 | color: rgba(var(--nav-h3-color), var(--nav-h3-color), var(--nav-h3-color), 0.45); 737 | margin: 0 0 0 20px; 738 | padding: 0; 739 | font-size: 12px; 740 | font-weight: 500; 741 | text-transform: uppercase; 742 | user-select: none; 743 | cursor: default; 744 | } 745 | 746 | hr { 747 | margin: 0 10px; 748 | background: rgba(0, 0, 0, 0.12); 749 | border: none; 750 | height: 1px; 751 | min-height: 1px; 752 | box-sizing: border-box; 753 | } 754 | } 755 | 756 | :focus { 757 | outline: var(--list-divider-color) auto 0.5px; 758 | } 759 | -------------------------------------------------------------------------------- /css/tooltipster.bundle.min.css: -------------------------------------------------------------------------------- 1 | .tooltipster-fall,.tooltipster-grow.tooltipster-show{-webkit-transition-timing-function:cubic-bezier(.175,.885,.32,1);-moz-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);-ms-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);-o-transition-timing-function:cubic-bezier(.175,.885,.32,1.15)}.tooltipster-base{display:flex;pointer-events:none;position:absolute}.tooltipster-box{flex:1 1 auto}.tooltipster-content{box-sizing:border-box;max-height:100%;max-width:100%;overflow:auto}.tooltipster-ruler{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0;visibility:hidden}.tooltipster-fade{opacity:0;-webkit-transition-property:opacity;-moz-transition-property:opacity;-o-transition-property:opacity;-ms-transition-property:opacity;transition-property:opacity}.tooltipster-fade.tooltipster-show{opacity:1}.tooltipster-grow{-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-o-transform:scale(0,0);-ms-transform:scale(0,0);transform:scale(0,0);-webkit-transition-property:-webkit-transform;-moz-transition-property:-moz-transform;-o-transition-property:-o-transform;-ms-transition-property:-ms-transform;transition-property:transform;-webkit-backface-visibility:hidden}.tooltipster-grow.tooltipster-show{-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-o-transform:scale(1,1);-ms-transform:scale(1,1);transform:scale(1,1);-webkit-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);transition-timing-function:cubic-bezier(.175,.885,.32,1.15)}.tooltipster-swing{opacity:0;-webkit-transform:rotateZ(4deg);-moz-transform:rotateZ(4deg);-o-transform:rotateZ(4deg);-ms-transform:rotateZ(4deg);transform:rotateZ(4deg);-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform;-o-transition-property:-o-transform;-ms-transition-property:-ms-transform;transition-property:transform}.tooltipster-swing.tooltipster-show{opacity:1;-webkit-transform:rotateZ(0);-moz-transform:rotateZ(0);-o-transform:rotateZ(0);-ms-transform:rotateZ(0);transform:rotateZ(0);-webkit-transition-timing-function:cubic-bezier(.23,.635,.495,1);-webkit-transition-timing-function:cubic-bezier(.23,.635,.495,2.4);-moz-transition-timing-function:cubic-bezier(.23,.635,.495,2.4);-ms-transition-timing-function:cubic-bezier(.23,.635,.495,2.4);-o-transition-timing-function:cubic-bezier(.23,.635,.495,2.4);transition-timing-function:cubic-bezier(.23,.635,.495,2.4)}.tooltipster-fall{-webkit-transition-property:top;-moz-transition-property:top;-o-transition-property:top;-ms-transition-property:top;transition-property:top;-webkit-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);transition-timing-function:cubic-bezier(.175,.885,.32,1.15)}.tooltipster-fall.tooltipster-initial{top:0!important}.tooltipster-fall.tooltipster-dying{-webkit-transition-property:all;-moz-transition-property:all;-o-transition-property:all;-ms-transition-property:all;transition-property:all;top:0!important;opacity:0}.tooltipster-slide{-webkit-transition-property:left;-moz-transition-property:left;-o-transition-property:left;-ms-transition-property:left;transition-property:left;-webkit-transition-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);-moz-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);-ms-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);-o-transition-timing-function:cubic-bezier(.175,.885,.32,1.15);transition-timing-function:cubic-bezier(.175,.885,.32,1.15)}.tooltipster-slide.tooltipster-initial{left:-40px!important}.tooltipster-slide.tooltipster-dying{-webkit-transition-property:all;-moz-transition-property:all;-o-transition-property:all;-ms-transition-property:all;transition-property:all;left:0!important;opacity:0}@keyframes tooltipster-fading{0%{opacity:0}100%{opacity:1}}.tooltipster-update-fade{animation:tooltipster-fading .4s}@keyframes tooltipster-rotating{25%{transform:rotate(-2deg)}75%{transform:rotate(2deg)}100%{transform:rotate(0)}}.tooltipster-update-rotate{animation:tooltipster-rotating .6s}@keyframes tooltipster-scaling{50%{transform:scale(1.1)}100%{transform:scale(1)}}.tooltipster-update-scale{animation:tooltipster-scaling .6s}.tooltipster-sidetip .tooltipster-box{background:#565656;border:2px solid #000;border-radius:4px}.tooltipster-sidetip.tooltipster-bottom .tooltipster-box{margin-top:8px}.tooltipster-sidetip.tooltipster-left .tooltipster-box{margin-right:8px}.tooltipster-sidetip.tooltipster-right .tooltipster-box{margin-left:8px}.tooltipster-sidetip.tooltipster-top .tooltipster-box{margin-bottom:8px}.tooltipster-sidetip .tooltipster-content{color:#fff;line-height:18px;padding:6px 14px}.tooltipster-sidetip .tooltipster-arrow{overflow:hidden;position:absolute}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow{height:10px;margin-left:-10px;top:0;width:20px}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow{height:20px;margin-top:-10px;right:0;top:0;width:10px}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow{height:20px;margin-top:-10px;left:0;top:0;width:10px}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow{bottom:0;height:10px;margin-left:-10px;width:20px}.tooltipster-sidetip .tooltipster-arrow-background,.tooltipster-sidetip .tooltipster-arrow-border{height:0;position:absolute;width:0}.tooltipster-sidetip .tooltipster-arrow-background{border:10px solid transparent}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{border-bottom-color:#565656;left:0;top:3px}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#565656;left:-3px;top:0}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{border-right-color:#565656;left:3px;top:0}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#565656;left:0;top:-3px}.tooltipster-sidetip .tooltipster-arrow-border{border:10px solid transparent;left:0;top:0}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#000}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border{border-left-color:#000}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border{border-right-color:#000}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{border-top-color:#000}.tooltipster-sidetip .tooltipster-arrow-uncropped{position:relative}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped{top:-10px}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped{left:-10px} -------------------------------------------------------------------------------- /dist/styles.css: -------------------------------------------------------------------------------- 1 | :root{--primary-color: #C62828;--primary-color-accent: #C62828;--background-color: #fdfdfd;--highlight-color: #f7f7f7;--link-color: #0000ff;--border-color: #d4d4d4;--minimum-text: #666;--reader-top-color: #fff;--nav-h3-color: #000;--color-error: #C62828;--color-success: #28a745;--text-color: #333333;--list-row-color: #ffffff;--list-background-color: #f5f5f5;--list-item-padding: 10px;--list-divider-color: #e2e6e9;--mini-action-color: 255,255,255;--input-color: #333333;--input-border-color: #d4d4d4;--input-background-color: #ffffff}[data-theme=dark]{--background-color: #202531;--text-color: #f1f1f1;--primary-color-accent: #f1f1f1;--highlight-color: #2d3445;--link-color: #C62828;--border-color: #474d5c;--minimum-text: #c0c2c8;--reader-top-color: #202531;--nav-h3-color: #f1f1f1;--mini-action-color: 17.6,20.4,27.1;--primary-color: #C62828;--list-background-color: #2d3445;--input-color: #7bb6ff;--input-border-color: #c0c2c8;--input-background-color: #474d5c;--color-error: #C62828;--color-success: #28a745}html{color:var(--text-color);font-size:112.5%;width:100%;height:100%;display:flex;flex:1}body{background-color:var(--background-color);margin:0;font-size:18px;font:caption;line-height:28px;display:flex;width:100%;height:100%;flex:1}h3{margin-top:0}p{margin:0 0 1em 0}#main{position:relative;display:flex;flex-flow:row;width:100%;height:100%}#sidebar{position:fixed;left:0;top:0;width:210px;overflow:auto;box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);z-index:100;height:100%}#views{margin-left:270px;padding:10px;display:block;min-width:20px;min-height:20px;position:relative;flex:1}#views>div{width:100%;height:100%;box-sizing:border-box}.no-connection{margin-top:20px;text-align:center;background-color:#fff;padding:10px;cursor:pointer}.reader,.settings,.post,.media,.about,.card-view,.title-view,.channel{cursor:pointer}.post,.media,.syndication-targets-wrapper,.media-url,.content-truncated img,.content-card-view img{display:none}.selected{text-decoration:underline;font-weight:400}.post-buttons-wrapper{margin:20px 0}.send-post{float:left}.reload-config{float:right}.settings-button-wrapper{margin:20px 0;padding-bottom:20px}.settings-button-wrapper .button-wrapper{display:inline-block;margin-right:20px}#reader-container{display:block}#settings-container,#posts-container,#media-container,#about-container{display:none;padding:10px}.reader-wrapper{display:flex}.channel-wrapper{padding-right:20px;min-width:190px}.reader-top{position:fixed;z-index:100;top:0;background:var(--reader-top-color);left:279px;right:0;padding:10px 0;display:flex;flex-direction:row;user-select:none}.reader-top .text{width:300px}#timeline-container{flex-flow:row;margin-top:70px}.new,.published-on{font-size:14px;color:var(--minimum-text)}.channel:hover,.channel-hover,.channel-highlight{color:var(--primary-color-accent);background-color:var(--list-background-color)}.indicator{text-decoration:none;color:var(--text-color);font-size:14px;display:inline-block}.info{margin-top:10px;font-size:18px}.mark-read,.next{font-size:20px;display:block;color:var(--text-color);cursor:pointer}.mark-read{display:inline-block;margin-left:20px}.timeline-display{color:var(--text-color);font-size:20px;cursor:pointer;display:inline-block;margin-left:20px;margin-right:20px}.search-wrapper{margin-left:10px;flex-grow:1}.reader-global-actions{padding-top:10px;text-align:end;margin-top:10px;flex:1}.title{font-size:20px}.image{padding:10px 0}.image img,video,iframe{max-width:60%;max-height:60vh}.post-content-wrapper img{max-width:60%;max-height:60vh}.author-wrapper{min-width:90px;display:inline-block}.posts{display:flex;flex-wrap:wrap;width:100%;flex-direction:row}.empty-view.timeline-item{width:100%;padding:10px;font-size:20px}.feed-view{width:100%;position:relative}.title-view{width:100%}.mfp-container{border:20px solid rgba(0,0,0,.6);height:auto;min-height:100%;padding:0 20px 20px 20px;background:var(--background-color)}.mfp-content{height:100%;min-height:100%}.mfp-content .actions{position:sticky;background-color:var(--background-color);border-bottom:1px solid var(--list-divider-color);margin-bottom:10px;top:0;left:20px;right:35px;padding:10px 10px 5px 10px}.author-name{cursor:pointer;display:inline-block}.zoom{cursor:pointer;background-image:url("../images/button_zoom_idle.png");background-size:30px;background-repeat:no-repeat;width:30px;height:30px;position:absolute;right:10px;top:10px}.zoom:hover{background-image:url("../images/button_zoom_pressed.png")}.reader-sub-title{display:none;font-size:18px;margin-left:10px}.content-wrapper{position:relative}.overlay-close{cursor:pointer;display:inline-block;background-image:url("../images/button_close.png");width:30px;height:30px;background-size:30px;background-repeat:no-repeat}.avatar{border-radius:5px}.button{cursor:pointer;text-align:center;background-color:var(--primary-color);color:#fff;padding:10px 25px;border:0 none;font-weight:normal;text-decoration:none;-webkit-transition:all .2s ease;-moz-transition:all .2s ease;transition:all .2s ease}.rsvp-response,.read-response,.move-channel,.timeline-display-select{padding:5px;font-size:16px}input,textarea{margin:10px 0;color:var(--input-color);background-color:var(--input-background-color)}.description{font-size:14px;margin-bottom:10px}.actions{margin-top:20px;display:flex;flex-direction:row}.actions-column:first-child{flex-grow:1}.next{margin:10px}.post-type{font-size:15px}.content-truncated{max-height:200px;overflow:hidden;-webkit-mask-image:linear-gradient(to bottom, black 50%, transparent 100%);mask-image:linear-gradient(to bottom, black 50%, transparent 100%)}.card-view img{max-height:300px}.reference{margin:10px 0;border:1px solid #ccc;border-radius:5px;padding:10px}.action{width:30px;height:30px;display:inline-block;margin-right:15px;cursor:pointer;z-index:10;background-repeat:no-repeat;background-size:30px}.action-reply{background-image:url("../images/button_reply_idle.png")}.action-reply:hover{background-image:url("../images/button_reply_pressed.png")}.action-like{background-image:url("../images/button_like_idle.png")}.action-like:hover{background-image:url("../images/button_like_pressed.png")}.action-repost{background-image:url("../images/button_repost_idle.png")}.action-repost:hover{background-image:url("../images/button_repost_pressed.png")}.action-bookmark{background-image:url("../images/button_bookmark_idle.png")}.action-bookmark:hover{background-image:url("../images/button_bookmark_pressed.png")}.action-read-of{background-image:url("../images/button_read_idle.png")}.action-read-of:hover{background-image:url("../images/button_read_pressed.png")}.action-unread{background-image:url("../images/button_unread.png")}.action-unread:hover{background-image:url("../images/button_unread_hover.png")}.action-read{background-image:url("../images/button_read.png")}.action-read:hover{background-image:url("../images/button_read_hover.png")}.action-external{background-image:url("../images/button_external_idle.png")}.action-external:hover{background-image:url("../images/button_external_pressed.png")}.action-move{background-image:url("../images/button_move_idle.png")}.action-move:hover{background-image:url("../images/button_move_pressed.png")}.action-delete{background-image:url("../images/button_delete_idle.png")}.action-delete:hover{background-image:url("../images/button_delete_pressed.png")}.action-rsvp{background-image:url("../images/button_rsvp_idle.png")}.action-rsvp:hover{background-image:url("../images/button_rsvp_pressed.png")}.tooltipster-base{margin-left:3px}.tooltip-wrapper label{cursor:pointer}.text{width:450px;max-width:100%;border:1px solid var(--input-border-color);padding:12px}.tooltipster-sidetip .tooltipster-content{padding:20px}.tooltip-confirm-wrapper,.tooltip-send{margin-top:20px}.tooltip-confirm-wrapper .tooltip-confirm{margin-right:30px}.tooltip-confirm-wrapper .tooltip-confirm,.tooltip-confirm-wrapper .tooltip-close{pointer-events:auto;display:inline-block;cursor:pointer;text-decoration:underline}.inline-textarea{padding:10px}.snackbar{bottom:0;left:0;right:0;height:24px;text-align:center;position:fixed;color:#fff;z-index:101;display:none}.snackbar.success{padding:10px;background:var(--color-success)}.snackbar.error{padding:10px;background:var(--primary-color)}.snackbar .snackbar-wrapper{display:flex;flex-direction:row}.snackbar .message{text-align:center;flex-grow:1}.snackbar .dismiss{margin:0 20px 0 0;font-size:14px;cursor:pointer}.snackbar .debug{margin:0 20px 0 0;font-size:14px;cursor:pointer;display:none}.ui-autocomplete{max-height:150px;overflow-y:auto;overflow-x:hidden}* html .ui-autocomplete{height:100px}.card-view{width:33%;flex-grow:1;position:relative}.card-view .post-content-wrapper{display:inline-block;padding:10px;margin:10px;border:1px solid var(--border-color);width:100%}.mini-actions{display:none;position:absolute;bottom:11px;background:rgba(var(--mini-action-color), 0.9);z-index:100;left:11px;right:11px;padding:13px 0 5px 10px}.card-view:hover .mini-actions{display:block}.card-view.highlight .post-content-wrapper{background:var(--highlight-color)}.feed-view.timeline-item.highlight{background:var(--highlight-color)}.timeline-item{display:flex}.timeline-item .feed-view{width:100%}.feed-view .post-content-wrapper{width:100%}.feed-view.timeline-item,.title-view.timeline-item{padding:10px;margin:10px;background:var(--background-color);border:1px solid var(--border-color);width:100%}a{color:var(--link-color)}#nav{user-select:none}#nav section .nav-section{margin:15px 0}#nav .menu button{color:var(--text-color);border:none;background-color:rgba(0,0,0,0);width:100%;text-align:start}#nav button,#nav a,#nav .channel{color:var(--text-color);padding:5px 0 5px 20px;display:block;font-size:19px;box-shadow:none;text-transform:none;border-radius:0;overflow:hidden;text-decoration:none}#nav button:hover,#nav a:hover{color:var(--primary-color);background-color:var(--list-background-color)}#nav h3{color:rgba(var(--nav-h3-color), var(--nav-h3-color), var(--nav-h3-color), 0.45);margin:0 0 0 20px;padding:0;font-size:12px;font-weight:500;text-transform:uppercase;user-select:none;cursor:default}#nav hr{margin:0 10px;background:rgba(0,0,0,.12);border:none;height:1px;min-height:1px;box-sizing:border-box}:focus{outline:var(--list-divider-color) auto .5px}/*# sourceMappingURL=styles.css.map */ 2 | -------------------------------------------------------------------------------- /dist/styles.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sourceRoot":"","sources":["../css/styles.scss"],"names":[],"mappings":"AAEA,MACE,yBACA,gCACA,4BACA,2BACA,sBACA,wBACA,qBACA,yBACA,qBAEA,uBACA,yBAEA,sBACA,0BACA,iCACA,0BACA,8BACA,iCAEA,uBACA,8BACA,kCAGF,kBAEE,4BACA,sBACA,gCACA,2BACA,sBACA,wBACA,wBACA,4BACA,wBACA,oCAEA,yBACA,iCAEA,uBACA,8BACA,kCAEA,uBACA,yBAKF,KACE,wBACA,iBACA,WACA,YACA,aACA,OAGF,KACE,yCACA,SACA,eACA,aACA,iBACA,aACA,WACA,YACA,OAGF,GACE,aAGF,EACE,iBAIF,MACE,kBACA,aACA,cACA,WACA,YAGF,SACE,eACA,OACA,MACA,YACA,cACA,iGACA,YACA,YAGF,OACE,kBACA,aACA,cAEA,eACA,gBACA,kBACA,OAEA,WACE,WACA,YACA,sBAMJ,eACE,gBACA,kBACA,sBACA,aACA,eAGF,sEACE,eAGF,mGACE,aAGF,UACE,0BACA,gBAGF,sBACE,cAGF,WACE,WAGF,eACE,YAGF,yBACE,cACA,oBACA,yCACE,qBACA,kBAIJ,kBACE,cAGF,uEACE,aACA,aAGF,gBACE,aAGF,iBACE,mBACA,gBAGF,YACE,eACA,YACA,MACA,mCACA,WACA,QACA,eACA,aACA,mBACA,iBAEA,kBACE,YAIJ,oBACE,cACA,gBAGF,mBACE,eACA,0BAGF,iDACE,kCACA,8CAGF,WACE,qBACA,wBACA,eACA,qBAGF,MACE,gBACA,eAGF,iBACE,eACA,cACA,wBACA,eAGF,WACE,qBACA,iBAGF,kBACE,wBACA,eACA,eACA,qBACA,iBACA,kBAGF,gBACE,iBACA,YAGF,uBACE,iBACA,eACA,gBACA,OAGF,OACE,eAGF,OACE,eAGF,wBACE,cACA,gBAGF,0BACE,cACA,gBAGF,gBACE,eACA,qBAGF,OACE,aACA,eACA,WACA,mBAGF,0BACE,WACA,aACA,eAGF,WACE,WACA,kBAGF,YACE,WAGF,eACE,iCACA,YACA,gBACA,yBACA,mCAGF,aAEE,YACA,gBAEA,sBACE,gBACA,yCACA,kDACA,mBACA,MACA,UACA,WACA,2BAKJ,aACE,eACA,qBAGF,MACE,eACA,uDACA,qBACA,4BACA,WACA,YACA,kBACA,WACA,SAEA,YACE,0DAIJ,kBACE,aACA,eACA,iBAGF,iBACE,kBAGF,eACE,eACA,qBACA,mDACA,WACA,YACA,qBACA,4BAGF,QACE,kBAGF,QACE,eACA,kBACA,sCACA,WACA,kBACA,cACA,mBACA,qBACA,gCACA,6BACA,wBAGF,qEACE,YACA,eAGF,eACE,cACA,yBACA,+CAGF,aACE,eACA,mBAGF,SACE,gBACA,aACA,mBAGF,4BACE,YAGF,MACE,YAGF,WACE,eAGF,mBACE,iBACA,gBACA,2EACA,mEAGF,eACE,iBAGF,WACE,cACA,sBACA,kBACA,aAGF,QACE,WACA,YACA,qBACA,kBACA,eACA,WACA,4BACA,qBAGF,cACE,wDACA,oBACE,2DAIJ,aACE,uDACA,mBACE,0DAIJ,eACE,yDACA,qBACE,4DAIJ,iBACE,2DACA,uBACE,8DAIJ,gBACE,uDACA,sBACE,0DAIJ,eACE,oDACA,qBACE,0DAIJ,aACE,kDACA,mBACE,wDAIJ,iBACE,2DACA,uBACE,8DAIJ,aACE,uDACA,mBACE,0DAIJ,eACE,yDACA,qBACE,4DAIJ,aACE,uDACA,mBACE,0DAIJ,kBACE,gBAIA,uBACE,eAIJ,MACE,YACA,eACA,2CACA,aAGF,0CACE,aAGF,uCACE,gBAGF,0CACE,kBAGF,kFACE,oBACA,qBACA,eACA,0BAGF,iBACE,aAGF,UACE,SACA,OACA,QACA,YACA,kBACA,eACA,WACA,YACA,aAEA,kBACE,aACA,gCAGF,gBACE,aACA,gCAGF,4BACE,aACA,mBAGF,mBACE,kBACA,YAGF,mBACE,kBACA,eACA,eAGF,iBACE,kBACA,eACA,eACA,aAMJ,iBACE,iBACA,gBAEA,kBAKF,wBACE,aAGF,WACE,UACA,YACA,kBAEA,iCACE,qBACA,aACA,YACA,qCACA,WAIJ,cACE,aACA,kBACA,YACA,+CACA,YACA,UACA,WACA,wBAGF,+BACE,cAGF,2CAEE,kCAGF,mCACE,kCAGF,eACE,aAEA,0BACE,WAMF,iCACE,WAIJ,mDACE,aACA,YACA,mCACA,qCACA,WAGF,EACE,wBAGF,KAEE,iBAGE,0BACA,cAKA,kBACE,wBACA,YACA,+BACA,WACA,iBAIJ,iCACE,wBACA,uBACA,cACA,eACA,gBACA,oBACA,gBACA,gBACA,qBAGF,+BACE,2BACA,8CAKF,QACE,gFACA,kBACA,UACA,eACA,gBACA,yBACA,iBACA,eAGF,QACE,cACA,2BACA,YACA,WACA,eACA,sBAIJ,OACE","file":"styles.css"} -------------------------------------------------------------------------------- /fonts/Inter-var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/fonts/Inter-var.woff2 -------------------------------------------------------------------------------- /images/avatar_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/avatar_small.png -------------------------------------------------------------------------------- /images/button_bookmark_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/button_bookmark_idle.png -------------------------------------------------------------------------------- /images/button_bookmark_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/button_bookmark_pressed.png -------------------------------------------------------------------------------- /images/button_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/button_close.png -------------------------------------------------------------------------------- /images/button_delete_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/button_delete_idle.png -------------------------------------------------------------------------------- /images/button_delete_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/button_delete_pressed.png -------------------------------------------------------------------------------- /images/button_external_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/button_external_idle.png -------------------------------------------------------------------------------- /images/button_external_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/button_external_pressed.png -------------------------------------------------------------------------------- /images/button_like_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/button_like_idle.png -------------------------------------------------------------------------------- /images/button_like_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/button_like_pressed.png -------------------------------------------------------------------------------- /images/button_move_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/button_move_idle.png -------------------------------------------------------------------------------- /images/button_move_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/button_move_pressed.png -------------------------------------------------------------------------------- /images/button_read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/button_read.png -------------------------------------------------------------------------------- /images/button_read_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/button_read_hover.png -------------------------------------------------------------------------------- /images/button_read_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/button_read_idle.png -------------------------------------------------------------------------------- /images/button_read_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/button_read_pressed.png -------------------------------------------------------------------------------- /images/button_reply_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/button_reply_idle.png -------------------------------------------------------------------------------- /images/button_reply_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/button_reply_pressed.png -------------------------------------------------------------------------------- /images/button_repost_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/button_repost_idle.png -------------------------------------------------------------------------------- /images/button_repost_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/button_repost_pressed.png -------------------------------------------------------------------------------- /images/button_rsvp_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/button_rsvp_idle.png -------------------------------------------------------------------------------- /images/button_rsvp_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/button_rsvp_pressed.png -------------------------------------------------------------------------------- /images/button_unread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/button_unread.png -------------------------------------------------------------------------------- /images/button_unread_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/button_unread_hover.png -------------------------------------------------------------------------------- /images/button_unread_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/button_unread_idle.png -------------------------------------------------------------------------------- /images/button_unread_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/button_unread_pressed.png -------------------------------------------------------------------------------- /images/button_zoom_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/button_zoom_idle.png -------------------------------------------------------------------------------- /images/button_zoom_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/button_zoom_pressed.png -------------------------------------------------------------------------------- /images/dmg-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/dmg-background.png -------------------------------------------------------------------------------- /images/icon-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/icon-big.png -------------------------------------------------------------------------------- /images/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/icon.icns -------------------------------------------------------------------------------- /images/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/icon.ico -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/icon.png -------------------------------------------------------------------------------- /images/install-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/install-spinner.gif -------------------------------------------------------------------------------- /images/macOS-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/macOS-icon.png -------------------------------------------------------------------------------- /images/no_connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndiePass/indiepass-desktop/751660324d6bfc6f95af08bf9bc92e892841f2b2/images/no_connection.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | IndiePass 14 | 15 | 16 | 17 |
18 | 19 | 36 | 37 |
38 | 39 |
40 |
41 |
42 |
43 |
Mark all read
44 |
Display
45 |
46 |
47 | 48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 | 57 |
58 |

Settings

59 |

Reader

60 |
61 | 62 | 63 |
If not enabled, a confirmation dialog will show up first
64 |
65 |
66 | 67 | 68 |
If not enabled, a confirmation dialog will show up first
69 |
70 |
71 | 72 | 73 |
If not enabled, a confirmation dialog will show up first
74 |
75 |
76 | 77 | 78 |
Start screen of reader will show all unread items in card view.
79 |
80 |
81 | 82 | 83 |
If not enabled, a confirmation dialog will show up first
84 |
85 |
86 | 87 | 88 |
Marks items read when reading in the overlay and clicking next/previous
89 |
90 |
91 | 92 | 93 |
Leave disabled if your Microsub server does not support this.
94 |
95 |
96 | 97 | 98 |
Autoload more posts when the link comes in the viewport.
99 |
100 |
101 | 102 | 103 |
Leave disabled if your Microsub server does not support this channel.
104 |
105 |
106 | 107 | 108 |
Allows moving posts from one channel to another. Leave disabled if your Microsub server does not support this.
109 |
110 |
111 | 112 | 113 |
Set a default channel when moving posts.
114 |
115 |

General

116 |
117 | 118 | 119 |
Sets the style of the application to the dark theme.
120 |
121 |
122 | 123 | 124 |
Renders the response of requests in the console
125 |
126 |

Account

127 |
128 |
129 | 130 |
131 |
132 |
133 | 134 |
135 |
136 |
137 |
138 |
Enter the URL of your microsub endpoint here
139 |
140 |
141 | 142 |
143 |
This token will be send in the Authentication header.
144 |
145 |
146 |
Save settings
147 |
Reset
148 |
149 |
150 | 151 |
152 |

Create a post

153 |
154 |
155 | 156 |
157 |
158 |
159 | 160 |
Leave empty for 'now'
161 |
162 |
163 | 164 |
165 | 166 |
167 |
168 |
169 |
170 | Reload 171 |
Separate multiple tags by comma. Click "Reload" to update categories from the server.
172 |
173 | 177 |
178 | 179 | 180 |
181 |
182 | 183 | 184 |
185 |
186 | Send post 187 | Reload configuration 188 |
189 |
190 | 191 |
192 |

Media

193 |

Upload a file to your media endpoint. On success, the URL will be printed underneath.

194 |
195 |
196 | 197 | 198 |
199 |
200 | Upload 201 |
202 |
203 | 204 |
205 |

About

206 |

IndiePass allows you to engage with the internet as you do on social media sites, but posts it all on your website. Use the built-in reader to read and respond to posts across the internet. IndiePass doesn't track or store any of your information. You choose a service you trust or host it yourself.

Development happens on GitHub

207 | 208 |

Keyboard shortcuts

209 |
    210 |
  • Reader 211 |
      212 |
    • p: previous post in feed or overlay 213 |
    • n: next post in feed or overlay, triggers 'More posts' at end 214 |
    • r or z: read the post in the overlay 215 |
    • c or esc: close overlay when opened 216 |
    217 |
  • 218 |
219 | 220 |

Found a bug? Don't hesitate to submit an issue at https://github.com/indiepass/indigenous-desktop

221 |
222 |
223 |
224 | 225 |
Dismiss
Debug
226 | 227 | 228 | -------------------------------------------------------------------------------- /js/app.js: -------------------------------------------------------------------------------- 1 | const Store = require('electron-store'); 2 | const store = new Store(); 3 | const shell = require('electron').shell; 4 | const dayjs = require('dayjs'); 5 | 6 | // todo make an object with these properties. 7 | let snackbarElement; 8 | let refreshReader = false; 9 | let loadedChannel = 0; 10 | let loadedSource = null; 11 | let isReader = false; 12 | let isGlobalUnread = false; 13 | let tokenInfoAdded = false; 14 | let targetsAdded = false; 15 | let isOnline = true; 16 | let isDetail = false; 17 | let currentPost; 18 | let postDelta; 19 | let search = ""; 20 | let ignoreScroll = false; 21 | let mouseBindingsAdded = false; 22 | let channelResponse = []; 23 | let posts = []; 24 | let autoloadClicked = false; 25 | let anonymousMicrosubEndpoint = ''; 26 | let defaultAuthor = '
'; 27 | let defaultAuthorCard = ''; 28 | let overlayLoadmore = false; 29 | 30 | /** 31 | * Show loading bar. 32 | */ 33 | function showLoading() { 34 | Pace.start(); 35 | } 36 | 37 | /** 38 | * Hide loading bar. 39 | */ 40 | function hideLoading() { 41 | Pace.stop(); 42 | } 43 | 44 | /** 45 | * Get a value from storage. 46 | * 47 | * @param element 48 | * @returns {*} 49 | */ 50 | function configGet(element) { 51 | return store.get(element); 52 | } 53 | 54 | /** 55 | * Save a value in storage. 56 | * 57 | * @param name 58 | * @param value 59 | */ 60 | function configSave(name, value) { 61 | store.set(name, value); 62 | } 63 | 64 | /** 65 | * Clears a value in storage. 66 | * 67 | * @param name 68 | */ 69 | function configDelete(name) { 70 | store.delete(name); 71 | } 72 | 73 | /** 74 | * Render a debug message in console. 75 | * 76 | * @param log 77 | */ 78 | function debug(log) { 79 | if (configGet('debug')) { 80 | console.log(log); 81 | } 82 | } 83 | 84 | /** 85 | * Check if there's no internet connection. 86 | * 87 | * @param snackbarMessage 88 | * @param element 89 | */ 90 | function noConnection(snackbarMessage, element) { 91 | if (!isOnline) { 92 | 93 | let addBreak = '
'; 94 | if (snackbarMessage) { 95 | addBreak = ' '; 96 | } 97 | let message = "No internet connection" + addBreak + " Check your mobile data or Wi-Fi."; 98 | 99 | if (snackbarMessage) { 100 | snackbar(message); 101 | } 102 | else { 103 | message += '
Click here to retry.'; 104 | message = '

' + message + '
'; 105 | $(element).html(message); 106 | } 107 | 108 | $('.no-connection').on('click', function() { 109 | refreshReader = true; 110 | loadReader(); 111 | }); 112 | 113 | return true; 114 | } 115 | 116 | return false; 117 | } 118 | 119 | /** 120 | * Get configuration from the Micropub endpoint. 121 | * 122 | * @param reload 123 | * @param setSyndications 124 | */ 125 | function getMicropubConfig(reload, setSyndications) { 126 | let micropubConfig = configGet('micropubConfig'); 127 | if (undefined === micropubConfig || reload) { 128 | 129 | // First time, let's save an entry. 130 | if (undefined === micropubConfig) { 131 | configSave('micropubConfig', {}); 132 | } 133 | 134 | let token = configGet('token'); 135 | let headers = { 136 | 'Accept': 'application/json' 137 | }; 138 | if (token !== undefined) { 139 | headers.Authorization = 'Bearer ' + token; 140 | } 141 | 142 | $.ajax({ 143 | type: 'GET', 144 | url: getMicropubEndpoint() + '?q=config', 145 | headers: headers, 146 | }) 147 | .done(function(data) { 148 | debug(data); 149 | if (data) { 150 | configSave('micropubConfig', data); 151 | if (setSyndications) { 152 | if (reload) { 153 | targetsAdded = false; 154 | } 155 | addSyndicationTargetCheckboxes(); 156 | } 157 | } 158 | 159 | if (reload) { 160 | snackbar('Micropub configuration updated'); 161 | } 162 | }) 163 | .fail(function() { 164 | if (reload) { 165 | snackbar('Something went wrong with getting the Micropub configuration', 'error'); 166 | } 167 | }); 168 | } 169 | else { 170 | if (setSyndications) { 171 | addSyndicationTargetCheckboxes(); 172 | } 173 | } 174 | } 175 | 176 | /** 177 | * Set syndication targets. 178 | */ 179 | function addSyndicationTargetCheckboxes() { 180 | let syndicationTargets = configGet('micropubConfig.syndicate-to'); 181 | if (!targetsAdded && undefined !== syndicationTargets && syndicationTargets.length > 0) { 182 | targetsAdded = true; 183 | let targets = $('.syndication-targets-wrapper .targets'); 184 | clearContainer('.syndication-target'); 185 | showContainer('.syndication-targets-wrapper'); 186 | for (let i = 0; i < syndicationTargets.length; i++) { 187 | let uid = syndicationTargets[i].uid; 188 | let name = syndicationTargets[i].name; 189 | let target = ''; 190 | targets.append(target); 191 | } 192 | } 193 | } 194 | 195 | /** 196 | * Get tags from the Micropub endpoint. 197 | * 198 | * @param reload 199 | */ 200 | function getTags(reload) { 201 | let categories = configGet('categories'); 202 | if (undefined === categories || reload) { 203 | 204 | // First time, let's save an entry. 205 | if (undefined === categories) { 206 | configSave('categories', []); 207 | } 208 | 209 | let token = configGet('token'); 210 | let headers = { 211 | 'Accept': 'application/json' 212 | }; 213 | if (token !== undefined) { 214 | headers.Authorization = 'Bearer ' + token; 215 | } 216 | 217 | $.ajax({ 218 | type: 'GET', 219 | url: getMicropubEndpoint() + '?q=category', 220 | headers: headers, 221 | }) 222 | .done(function(data) { 223 | debug(data); 224 | if (data.categories) { 225 | configSave('categories', data.categories); 226 | setAutocomplete(categories); 227 | } 228 | 229 | if (reload) { 230 | snackbar('Categories updated'); 231 | } 232 | }) 233 | .fail(function() { 234 | if (reload) { 235 | snackbar('Something went wrong with getting the tags', 'error'); 236 | } 237 | }); 238 | } 239 | else { 240 | setAutocomplete(categories); 241 | } 242 | } 243 | 244 | /** 245 | * Set autocomplete. 246 | * 247 | * @param categories 248 | */ 249 | function setAutocomplete(categories) { 250 | if (categories.length > 0) { 251 | 252 | function split( val ) { 253 | return val.split( /,\s*/ ); 254 | } 255 | function extractLast( term ) { 256 | return split( term ).pop(); 257 | } 258 | 259 | $( "#tags" ) 260 | // don't navigate away from the field on tab when selecting an item 261 | .on( "keydown", function( event ) { 262 | if ( event.keyCode === $.ui.keyCode.TAB && 263 | $( this ).autocomplete( "instance" ).menu.active ) { 264 | event.preventDefault(); 265 | } 266 | }) 267 | .autocomplete({ 268 | minLength: 0, 269 | source: function( request, response ) { 270 | // delegate back to autocomplete, but extract the last term 271 | response( $.ui.autocomplete.filter( 272 | categories, extractLast( request.term ) ) ); 273 | }, 274 | focus: function() { 275 | // prevent value inserted on focus 276 | return false; 277 | }, 278 | select: function( event, ui ) { 279 | var terms = split( this.value ); 280 | // remove the current input 281 | terms.pop(); 282 | // add the selected item 283 | terms.push( ui.item.value ); 284 | // add placeholder to get the comma-and-space at the end 285 | terms.push( "" ); 286 | this.value = terms.join( ", " ); 287 | return false; 288 | } 289 | }); 290 | } 291 | } 292 | 293 | function setTheme() { 294 | if (configGet('dark_theme')) { 295 | document.documentElement.setAttribute('data-theme', 'dark'); 296 | } 297 | else { 298 | document.documentElement.setAttribute('data-theme', 'light'); 299 | } 300 | } 301 | 302 | $(document).ready(function() { 303 | 304 | setTheme(); 305 | 306 | snackbarElement = $('.snackbar'); 307 | $('.dismiss', snackbarElement).on('click', function() { 308 | snackbarElement.hide(); 309 | }) 310 | 311 | $('.external-link').on('click', function(e) { 312 | e.preventDefault(); 313 | shell.openExternal(this.href); 314 | }); 315 | 316 | $('.timeline-display').on('click', function(e) { 317 | let content = '
'; 318 | content += '
'; 319 | content += '
'; 320 | content += ' '; 321 | content += '
Save
'; 322 | $(this) 323 | .tooltipster({ 324 | animation: 'slide', 325 | trigger: 'click', 326 | content: content, 327 | contentAsHTML: true, 328 | interactive: true, 329 | side: ['left', 'right'], 330 | functionReady: function(instance, helper) { 331 | 332 | let display = getDisplay(); 333 | let $radios = $('input:radio[name=display]'); 334 | if ($radios.is(':checked') === false) { 335 | $radios.filter('[value=' + display + ']').prop('checked', true); 336 | } 337 | 338 | $('.tooltip-send').on('click', function() { 339 | instance.close(); 340 | let selected = ($('input[name=display]:checked').val()); 341 | if (selected !== display) { 342 | configSave('timeline.display.' + loadedChannel, selected); 343 | reloadTimeline(); 344 | } 345 | }); 346 | } 347 | }) 348 | .tooltipster('open'); 349 | 350 | }); 351 | 352 | setupScrollListener(); 353 | 354 | if (!navigator.onLine) { isOnline = false; } 355 | window.addEventListener('offline', function(e) { isOnline = false; }); 356 | window.addEventListener('online', function(e) { isOnline = true; }); 357 | 358 | checkMicropubSettings(false); 359 | loadChannels(); 360 | addMouseBindings(); 361 | 362 | if (configGet('search')) { 363 | $('#search-form').on('submit', function(e) { 364 | search = $('.search-field').val(); 365 | if (search.length > 0) { 366 | isGlobalUnread = false; 367 | $('.reader-sub-title').show().html("Search: " + search); 368 | $('.mark-read').hide(); 369 | clearContainer(".timeline-item"); 370 | loadTimeline(getMicrosubEndpoint(), ""); 371 | } 372 | e.preventDefault(); 373 | }); 374 | } 375 | else { 376 | $('.search-wrapper').hide(); 377 | } 378 | 379 | if (!isDefaultMicrosubEndpoint()) { 380 | $('.mark-read').on('click', function() { 381 | markRead(); 382 | }); 383 | } 384 | 385 | $('.reader').on('click', function() { 386 | loadReader(); 387 | }); 388 | 389 | $('.media').on('click', function() { 390 | loadMedia(); 391 | }); 392 | 393 | $('.about').on('click', function () { 394 | $('.menu').removeClass('selected'); 395 | $('.about').addClass('selected'); 396 | showContainer('#about-container'); 397 | hideContainer('#media-container'); 398 | hideContainer('#reader-container'); 399 | hideContainer('#posts-container'); 400 | hideContainer('#settings-container'); 401 | catchExternalLinks('a'); 402 | }) 403 | 404 | $('.settings').on('click', function() { 405 | $('.menu').removeClass('selected'); 406 | $('.settings').addClass('selected'); 407 | hideContainer('#about-container'); 408 | hideContainer('#media-container'); 409 | hideContainer('#reader-container'); 410 | hideContainer('#posts-container'); 411 | showContainer('#settings-container'); 412 | 413 | if (!tokenInfoAdded) { 414 | tokenInfoAdded = true; 415 | let token = configGet('token'); 416 | if (token !== undefined) { 417 | $(".token-description").append('
').append("A token has been saved. Enter a new one to replace it."); 418 | } 419 | } 420 | $('#micropub-endpoint').val(getMicropubEndpoint()); 421 | $('#microsub-endpoint').val(getMicrosubEndpoint()); 422 | $('#media-endpoint').val(getMediaEndpoint()); 423 | 424 | if (configGet('like_no_confirm')) { 425 | $('#like-direct').prop('checked', true); 426 | } 427 | if (configGet('repost_no_confirm')) { 428 | $('#repost-direct').prop('checked', true); 429 | } 430 | if (configGet('bookmark_no_confirm')) { 431 | $('#bookmark-direct').prop('checked', true); 432 | } 433 | if (configGet('mark_read_no_confirm')) { 434 | $('#mark-read-direct').prop('checked', true); 435 | } 436 | if (configGet('mark_read_overlay')) { 437 | $('#mark-read-overlay').prop('checked', true); 438 | } 439 | if (configGet('search')) { 440 | $('#search').prop('checked', true); 441 | } 442 | if (configGet('post_move')) { 443 | $('#post-move').prop('checked', true); 444 | } 445 | if (configGet('global_unread')) { 446 | $('#global-unread').prop('checked', true); 447 | } 448 | if (configGet('autoload_more')) { 449 | $('#autoload-more').prop('checked', true); 450 | } 451 | if (configGet('debug')) { 452 | $('#debug-message').prop('checked', true); 453 | } 454 | if (configGet('hide_notifications')) { 455 | $('#hide-notifications-channel').prop('checked', true); 456 | } 457 | if (configGet('dark_theme')) { 458 | $('#dark-theme').prop('checked', true); 459 | } 460 | 461 | let defaultMoveChannel = configGet('post_move_default'); 462 | let defaultMoveSelect = $('#post-move-default'); 463 | $.each(channelResponse, function(i, c) { 464 | let option = { 465 | value: c.uid, 466 | text: c.name 467 | }; 468 | if (c.uid === defaultMoveChannel) { 469 | option.selected = true; 470 | } 471 | defaultMoveSelect.append($('