push dist

This commit is contained in:
Denjell
2020-02-21 16:51:07 +01:00
parent 980dd4bdc6
commit 2c856c4ee8
96 changed files with 19127 additions and 1 deletions

View File

@@ -2,7 +2,6 @@
.DS_Store
.thumbs.db
node_modules
/dist
/src-cordova/node_modules
/src-cordova/platforms
/src-cordova/plugins

370
docs-generator/dist/ssr/index.js vendored Normal file
View File

@@ -0,0 +1,370 @@
module.exports =
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId]) {
/******/ return installedModules[moduleId].exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ i: moduleId,
/******/ l: false,
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/
/******/ // Flag the module as loaded
/******/ module.l = true;
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/******/
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
/******/
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
/******/
/******/ // define getter function for harmony exports
/******/ __webpack_require__.d = function(exports, name, getter) {
/******/ if(!__webpack_require__.o(exports, name)) {
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
/******/ }
/******/ };
/******/
/******/ // define __esModule on exports
/******/ __webpack_require__.r = function(exports) {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/
/******/ // create a fake namespace object
/******/ // mode & 1: value is a module id, require it
/******/ // mode & 2: merge all properties of value into the ns
/******/ // mode & 4: return value when already ns object
/******/ // mode & 8|1: behave like require
/******/ __webpack_require__.t = function(value, mode) {
/******/ if(mode & 1) value = __webpack_require__(value);
/******/ if(mode & 8) return value;
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
/******/ var ns = Object.create(null);
/******/ __webpack_require__.r(ns);
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
/******/ return ns;
/******/ };
/******/
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = function(module) {
/******/ var getter = module && module.__esModule ?
/******/ function getDefault() { return module['default']; } :
/******/ function getModuleExports() { return module; };
/******/ __webpack_require__.d(getter, 'a', getter);
/******/ return getter;
/******/ };
/******/
/******/ // Object.prototype.hasOwnProperty.call
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
/******/
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "";
/******/
/******/
/******/ // Load entry module and return exports
/******/ return __webpack_require__(__webpack_require__.s = 0);
/******/ })
/************************************************************************/
/******/ ([
/* 0 */
/***/ (function(module, exports, __webpack_require__) {
module.exports = __webpack_require__(1);
/***/ }),
/* 1 */
/***/ (function(module, exports, __webpack_require__) {
/*
* This file runs in a Node context (it's NOT transpiled by Babel), so use only
* the ES6 features that are supported by your Node version. https://node.green/
*
* All content of this folder will be copied as is to the output folder. So only import:
* 1. node_modules (and yarn/npm install dependencies -- NOT to devDependecies though)
* 2. create files in this folder and import only those with the relative path
*
* Note: This file is used only for PRODUCTION. It is not picked up while in dev mode.
* If you are looking to add common DEV & PROD logic to the express app, then use
* "src-ssr/extension.js"
*/
const
express = __webpack_require__(2),
compression = __webpack_require__(3)
const
ssr = __webpack_require__(4),
extension = __webpack_require__(11),
app = express(),
port = Object({"NODE_ENV":"production","CLIENT":true,"SERVER":false,"DEV":false,"PROD":true,"MODE":"ssr","VUE_ROUTER_MODE":"history","VUE_ROUTER_BASE":"/","APP_URL":"undefined","SERVICE_WORKER_FILE":"/service-worker.js"}).PORT || 3000
const serve = (path, cache) => express.static(ssr.resolveWWW(path), {
maxAge: cache ? 1000 * 60 * 60 * 24 * 30 : 0
})
// gzip
app.use(compression({ threshold: 0 }))
// serve this with no cache, if built with PWA:
if (ssr.settings.pwa) {
app.use('/service-worker.js', serve('service-worker.js'))
}
// serve "www" folder
app.use('/', serve('.', true))
// we extend the custom common dev & prod parts here
extension.extendApp({ app, ssr })
// this should be last get(), rendering with SSR
app.get('*', (req, res) => {
res.setHeader('Content-Type', 'text/html')
// SECURITY HEADERS
// read more about headers here: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers
// the following headers help protect your site from common XSS attacks in browsers that respect headers
// you will probably want to use .env variables to drop in appropriate URLs below,
// and potentially look here for inspiration:
// https://ponyfoo.com/articles/content-security-policy-in-express-apps
// https://developer.mozilla.org/en-us/docs/Web/HTTP/Headers/X-Frame-Options
// res.setHeader('X-frame-options', 'SAMEORIGIN') // one of DENY | SAMEORIGIN | ALLOW-FROM https://example.com
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-XSS-Protection
// res.setHeader('X-XSS-Protection', 1)
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options
// res.setHeader('X-Content-Type-Options', 'nosniff')
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Origin
// res.setHeader('Access-Control-Allow-Origin', '*') // one of '*', '<origin>' where origin is one SINGLE origin
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-DNS-Prefetch-Control
// res.setHeader('X-DNS-Prefetch-Control', 'off') // may be slower, but stops some leaks
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy
// res.setHeader('Content-Security-Policy', 'default-src https:')
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/sandbox
// res.setHeader('Content-Security-Policy', 'sandbox') // this will lockdown your server!!!
// here are a few that you might like to consider adding to your CSP
// object-src, media-src, script-src, frame-src, unsafe-inline
ssr.renderToString({ req, res }, (err, html) => {
if (err) {
if (err.url) {
res.redirect(err.url)
}
else if (err.code === 404) {
res.status(404).send('404 | Page Not Found')
}
else {
// Render Error Page or Redirect
res.status(500).send('500 | Internal Server Error')
if (ssr.settings.debug) {
console.error(`500 on ${req.url}`)
console.error(err)
console.error(err.stack)
}
}
}
else {
res.send(html)
}
})
})
app.listen(port, () => {
console.log(`Server listening at port ${port}`)
})
/***/ }),
/* 2 */
/***/ (function(module, exports) {
module.exports = require("express");
/***/ }),
/* 3 */
/***/ (function(module, exports) {
module.exports = require("compression");
/***/ }),
/* 4 */
/***/ (function(module, exports, __webpack_require__) {
/**
* THIS FILE IS GENERATED AUTOMATICALLY.
* DO NOT EDIT.
**/
const fs = __webpack_require__(5)
const path = __webpack_require__(6)
const LRU = __webpack_require__(7)
const { createBundleRenderer } = __webpack_require__(8)
const resolve = file => path.join(__dirname, file)
const template = fs.readFileSync(resolve('template.html'), 'utf-8')
const bundle = __webpack_require__(9)
const clientManifest = __webpack_require__(10)
const settings = {
"pwa": {
"runtimeCaching": [
{
"urlPattern": "/statics/*",
"handler": "CacheFirst"
}
]
},
"manualHydration": false,
"componentCache": {
"max": 1000,
"maxAge": 900000
},
"debug": false,
"preloadChunks": true
}
if (Object({"NODE_ENV":"production","CLIENT":true,"SERVER":false,"DEV":false,"PROD":true,"MODE":"ssr","VUE_ROUTER_MODE":"history","VUE_ROUTER_BASE":"/","APP_URL":"undefined","SERVICE_WORKER_FILE":"/service-worker.js"}).DEBUG) {
settings.debug = true
}
const rendererOptions = {
template,
clientManifest,
// for component caching
cache: new LRU(settings.componentCache),
basedir: __dirname,
// recommended for performance
runInNewContext: false
}
if (settings.preloadChunks !== true) {
const fn = () => false
Object.assign(rendererOptions, {
shouldPreload: fn,
shouldPrefetch: fn
})
}
// https://ssr.vuejs.org/api/#renderer-options
// https://github.com/vuejs/vue/blob/dev/packages/vue-server-renderer/README.md#why-use-bundlerenderer
let renderer = createBundleRenderer(bundle, rendererOptions)
module.exports.renderToString = function ({ req, res }, cb) {
const ctx = {
url: req.url,
req,
res
}
renderer.renderToString(ctx, (err, html) => {
if (err) { cb(err, html) }
else { cb(err, ctx.$getMetaHTML(html)) }
})
}
module.exports.resolveWWW = function (file) {
return resolve('www/' + file)
}
module.exports.mergeRendererOptions = function (opts) {
renderer = createBundleRenderer(
bundle,
Object.assign(rendererOptions, opts)
)
}
module.exports.settings = settings
/***/ }),
/* 5 */
/***/ (function(module, exports) {
module.exports = require("fs");
/***/ }),
/* 6 */
/***/ (function(module, exports) {
module.exports = require("path");
/***/ }),
/* 7 */
/***/ (function(module, exports) {
module.exports = require("lru-cache");
/***/ }),
/* 8 */
/***/ (function(module, exports) {
module.exports = require("vue-server-renderer");
/***/ }),
/* 9 */
/***/ (function(module, exports) {
module.exports = require("./vue-ssr-server-bundle.json");
/***/ }),
/* 10 */
/***/ (function(module, exports) {
module.exports = require("./vue-ssr-client-manifest.json");
/***/ }),
/* 11 */
/***/ (function(module, exports) {
/*
* This file runs in a Node context (it's NOT transpiled by Babel), so use only
* the ES6 features that are supported by your Node version. https://node.green/
*
* All content of this folder will be copied as is to the output folder. So only import:
* 1. node_modules (and yarn/npm install dependencies -- NOT to devDependecies though)
* 2. create files in this folder and import only those with the relative path
*
* Note: This file is used for both PRODUCTION & DEVELOPMENT.
* Note: Changes to this file (but not any file it imports!) are picked up by the
* development server, but such updates are costly since the dev-server needs a reboot.
*/
module.exports.extendApp = function ({ app, ssr }) {
/*
Extend the parts of the express app that you
want to use with development server too.
Example: app.use(), app.get() etc
*/
}
/***/ })
/******/ ]);

31
docs-generator/dist/ssr/package.json vendored Normal file
View File

@@ -0,0 +1,31 @@
{
"name": "docs-generator",
"version": "0.0.1",
"description": "Tauri Documentation",
"author": "Daniel Thompson-Yvetot <denjell@sfosc.dev>",
"private": true,
"scripts": {
"start": "node index.js"
},
"dependencies": {
"@quasar/extras": "1.4.1",
"lru-cache": "5.1.1",
"mermaid": "8.4.4",
"quasar": "1.7.2",
"@quasar/babel-preset-app": "1.1.7",
"compression": "^1.0.0",
"express": "^4.0.0",
"vue": "2.6.11",
"vue-server-renderer": "2.6.11",
"vue-router": "3.1.3",
"vuex": "3.1.2"
},
"engines": {
"node": ">= 8.9.0",
"npm": ">= 5.6.0",
"yarn": ">= 1.6.0"
},
"quasar": {
"ssr": true
}
}

8
docs-generator/dist/ssr/template.html vendored Normal file
View File

@@ -0,0 +1,8 @@
<!DOCTYPE html><html {{ Q_HTML_ATTRS }}><head><base href=/ >{{ Q_HEAD_TAGS }} <meta charset=utf-8><meta name=twitter:card content=summary><meta name=twitter:site content=@tauriapps><meta property=og:image content=https://tauri.studio/statics/thetaTauri_logo.png><meta property=og:type content=website><meta property=twitter:image content=https://tauri.studio/statics/thetaTauri_logo.png><meta property=og:site_name content="Tauri Studio"><meta name=format-detection content="telephone=no"><meta name=msapplication-tap-highlight content=no><meta name=viewport content="user-scalable=no,initial-scale=1,maximum-scale=1,minimum-scale=1,width=device-width"><link rel=icon type=image/png href=statics/app-logo-128x128.png><link rel=icon type=image/png sizes=16x16 href=statics/icons/favicon-16x16.png><link rel=icon type=image/png sizes=32x32 href=statics/icons/favicon-32x32.png><link rel=icon type=image/png sizes=96x96 href=statics/icons/favicon-96x96.png><link rel=icon type=image/ico href=statics/icons/favicon.ico><link rel=manifest href=manifest.json><meta name=theme-color content=#027be3><meta name=apple-mobile-web-app-capable content=yes><meta name=apple-mobile-web-app-status-bar-style content=default><meta name=apple-mobile-web-app-title content=Tauri.studio><link rel=apple-touch-icon href=statics/icons/apple-icon-120x120.png><link rel=apple-touch-icon sizes=180x180 href=statics/icons/apple-icon-180x180.png><link rel=apple-touch-icon sizes=152x152 href=statics/icons/apple-icon-152x152.png><link rel=apple-touch-icon sizes=167x167 href=statics/icons/apple-icon-167x167.png><link rel=mask-icon href=statics/icons/safari-pinned-tab.svg color=#027be3><meta name=msapplication-TileImage content=statics/icons/ms-icon-144x144.png><meta name=msapplication-TileColor content=#000000></head><body class="{{ Q_BODY_CLASSES }}" {{ Q_BODY_ATTRS }}>{{ Q_BODY_TAGS }} <script>// this is a closure for github pages.
(function(){
let redirect = sessionStorage.redirect;
delete sessionStorage.redirect;
if (redirect && redirect !== location.href) {
history.replaceState(null, null, redirect);
}
})();</script><!--vue-ssr-outlet--></body></html>

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
.q-menu{z-index:1000000}.tauri-name--holder{width:300px;height:10px;left:0;right:0;background:red}.tauri-name{height:30px;min-height:30px;max-width:50%;position:fixed;text-align:center;margin:0 30%;top:21px;left:0}.page-header{height:70px;border-bottom:2px solid #212111}.bg-container{background-image:url(/statics/thetaTauri_logo.png);background-repeat:no-repeat;background-size:contain;position:absolute;left:-10px;top:5px;height:60px;width:60px;max-height:250px;max-width:250px;min-height:60px;min-width:60px}.animateLeft{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-delay:5s;animation-delay:5s;-webkit-animation-name:slideover;animation-name:slideover;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}@-webkit-keyframes slideover{0%{margin-left:30%}to{margin-left:80px}}@keyframes slideover{0%{margin-left:30%}to{margin-left:80px}}.footer-item{font-size:16px}h2{margin-left:-10px!important}.toc-level-2{margin-left:0;font-weight:800}.toc-level-3{margin-left:10px}

View File

@@ -0,0 +1 @@
.q-markdown--line-numbers-wrapper{margin-bottom:14px}

View File

@@ -0,0 +1 @@
#mermaid{font-family:trebuchet ms,verdana,arial!important;font-weight:200;font-size:1.2em}#mermaid .arrowheadPath{fill:#99a!important}#mermaid .path{stroke:#99a!important}

View File

@@ -0,0 +1 @@
#Donations-and-Sponsoring{text-align:center}i.themify-icon.ti-star:before{margin-top:-4px!important}

View File

@@ -0,0 +1 @@
#mermaid .arrowheadPath{fill:#2b6063!important}#mermaid .path{stroke:#2b6063!important}#mermaid{font-family:trebuchet ms,verdana,arial!important;font-weight:200;font-size:1em}

View File

@@ -0,0 +1 @@
.q-markdown--line-numbers-wrapper{margin-bottom:14px}

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([[8],{cc1d:function(n,e,t){"use strict";t.r(e);var o=function(){var n=this,e=n.$createElement,t=n._self._c||e;return t("div",[t("div",{staticStyle:{"padding-top":"40px"},attrs:{id:"padding"}}),t("q-markdown",{attrs:{src:n.markdown,toc:""},on:{data:n.onToc}})],1)},a=[],i='## Sustainability\nOne of the main goals of the organizational structure of Tauri is to guarantee the sustainability of Tauri and the health and well-being of its contributors. The world of Open Source is fraught with peril and discord, and we have taken measures to ensure the longevity of Tauri. This document explains how we go about doing so.\n\n### Organizational Structure\nTauri apps is governed by the community and work is done in the context of public working groups. Each working group has a dedicated channel on the Discord server as well as a Team on GitHub. Other than that, each WG is free to use whatever type of organizational model it chooses.\n\n The current working groups are:\n- WG Governance & Guidance\n- WG Tech\n- WG Education\n- WG Media\n- WG Security\n- WG Devops\n\nWith the exception of the security working group, which is by invite only and convenes privately, all other working groups are public and open to any and all participants.\n\nPlease visit [this repository](https://github.com/tauri-apps/governance-and-guidance) to get more information.\n\n### Code of Conduct\nEveryone participating in the Tauri commnunity is expected to follow a code of conduct that you can at the [Governance and Guidance:Code of Conduct](https://github.com/tauri-apps/governance-and-guidance/blob/master/CODE_OF_CONDUCT.md).\n\n### Social Contract\nWe have a Social Contract that informs our decision making and organization. You can read about it here: [Governance and Guidance:Social Contract](https://github.com/tauri-apps/governance-and-guidance/blob/master/SOCIAL_CONTRACT.md).\n\n### Licensing\nWe, the contributors to Tauri Apps, use the MIT and Apache licenses for all code content. Images and bodies of text, unless otherwise noted are CC-BY-ND-NC.\n\n### Trademark\nIt is a permissible use of the name "Tauri App" or the Tauri logo to show that a project uses Tauri. "Tauri Studio" is reserved for use by the organization.\n\nAny language that gives the impression that the Tauri organization approves, authorizes or otherwise supports a project, person or company is not permissible without written authorization from the Guidance and Governance Working Group.\n',r={name:"Governance",data:function(){return{markdown:i}},computed:{toc:{get:function(){return this.$store.state.common.toc},set:function(n){this.$store.commit("common/toc",n)}}},methods:{onToc:function(n){this.toc=n}}},s=r,c=t("2877"),u=Object(c["a"])(s,o,a,!1,null,null,null);e["default"]=u.exports}}]);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
{"name":"Tauri.studio","short_name":"Tauri Apps Documentation","description":"Find out all about Tauri and read the docs.","display":"standalone","start_url":".","icons":[{"src":"/statics/icons/icon-128x128.png","sizes":"128x128","type":"image/png"},{"src":"/statics/icons/icon-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/statics/icons/icon-256x256.png","sizes":"256x256","type":"image/png"},{"src":"/statics/icons/icon-384x384.png","sizes":"384x384","type":"image/png"},{"src":"/statics/icons/icon-512x512.png","sizes":"512x512","type":"image/png"}],"orientation":"portrait","background_color":"#ffffff","theme_color":"#027be3"}

View File

@@ -0,0 +1,350 @@
self.__precacheManifest = (self.__precacheManifest || []).concat([
{
"revision": "c44c4a15ac994271e083",
"url": "/css/2.ea3395ae.css"
},
{
"revision": "251af02453709d46b460",
"url": "/css/3.e51c852e.css"
},
{
"revision": "0b7bfbdefcfe7ba39b88",
"url": "/css/4.eafea247.css"
},
{
"revision": "5b9ce5c349d3513069e0",
"url": "/css/5.f07aa5cc.css"
},
{
"revision": "44260f0f150070f1dbeb",
"url": "/css/6.7bdfacea.css"
},
{
"revision": "e10f5503cf608d1d8ba0",
"url": "/css/7.e51c852e.css"
},
{
"revision": "1fa873dc9bbd326edee7",
"url": "/css/app.0ce808d5.css"
},
{
"revision": "5cb7edfceb233100075dc9a1e12e8da3",
"url": "/fonts/KFOkCnqEu92Fr1MmgVxIIzQ.5cb7edfc.woff"
},
{
"revision": "87284894879f5b1c229cb49c8ff6decc",
"url": "/fonts/KFOlCnqEu92Fr1MmEU9fBBc-.87284894.woff"
},
{
"revision": "b00849e00f4c2331cddd8ffb44a6720b",
"url": "/fonts/KFOlCnqEu92Fr1MmSU5fBBc-.b00849e0.woff"
},
{
"revision": "adcde98f1d584de52060ad7b16373da3",
"url": "/fonts/KFOlCnqEu92Fr1MmWUlfBBc-.adcde98f.woff"
},
{
"revision": "bb1e4dc6333675d11ada2e857e7f95d7",
"url": "/fonts/KFOlCnqEu92Fr1MmYUtfBBc-.bb1e4dc6.woff"
},
{
"revision": "60fa3c0614b8fb2f394fa29944c21540",
"url": "/fonts/KFOmCnqEu92Fr1Mu4mxM.60fa3c06.woff"
},
{
"revision": "822d94f19fe57477865209e1242a3c63",
"url": "/fonts/fa-brands-400.822d94f1.woff2"
},
{
"revision": "f4920c94c0861c537f72ba36590f6362",
"url": "/fonts/fa-brands-400.f4920c94.woff"
},
{
"revision": "9efb86976bd53e159166c12365f61e25",
"url": "/fonts/fa-regular-400.9efb8697.woff2"
},
{
"revision": "a57bcf76c178aee452db7a57b75509b6",
"url": "/fonts/fa-regular-400.a57bcf76.woff"
},
{
"revision": "93f284548b42ab76fe3fd03a9d3a2180",
"url": "/fonts/fa-solid-900.93f28454.woff"
},
{
"revision": "f6121be597a72928f54e7ab5b95512a1",
"url": "/fonts/fa-solid-900.f6121be5.woff2"
},
{
"revision": "29b882f018fa6fe75fd338aaae6235b8",
"url": "/fonts/flUhRq6tzZclQEJ-Vdg-IuiaDsNa.29b882f0.woff"
},
{
"revision": "0509ab09c1b0d2200a4135803c91d6ce",
"url": "/fonts/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.0509ab09.woff2"
},
{
"revision": "a1ecc3b826d01251edddf29c3e4e1e97",
"url": "/fonts/themify.a1ecc3b8.woff"
},
{
"revision": "c44c4a15ac994271e083",
"url": "/js/2.1b117f18.js"
},
{
"revision": "251af02453709d46b460",
"url": "/js/3.a2d3ab0e.js"
},
{
"revision": "0b7bfbdefcfe7ba39b88",
"url": "/js/4.3a606182.js"
},
{
"revision": "5b9ce5c349d3513069e0",
"url": "/js/5.74a045f0.js"
},
{
"revision": "44260f0f150070f1dbeb",
"url": "/js/6.dff540ce.js"
},
{
"revision": "e10f5503cf608d1d8ba0",
"url": "/js/7.27b3e441.js"
},
{
"revision": "8422aab96f689419197b",
"url": "/js/8.7b3fc61b.js"
},
{
"revision": "137b2235805e700287b1",
"url": "/js/9.613bac60.js"
},
{
"revision": "1fa873dc9bbd326edee7",
"url": "/js/app.f36fd624.js"
},
{
"revision": "db98b19921d974fd174a",
"url": "/js/vendor.4683bb0c.js"
},
{
"revision": "ed1a64715056e6002846466645f6365d",
"url": "/manifest.json"
},
{
"revision": "764b83d05e03c5cb521e2f2383823d45",
"url": "/statics/app-logo-128x128.png"
},
{
"revision": "7241b689ad55ad2fbd6c20b40c89e59b",
"url": "/statics/discord-light.svg"
},
{
"revision": "e9ec13b3de0578a2e387b2919de4c6df",
"url": "/statics/discord.svg"
},
{
"revision": "1b80415d70a21d7182eb3d16b67e3a18",
"url": "/statics/icons/apple-icon-120x120.png"
},
{
"revision": "7580d79b411cb007f5687257bc1bf81f",
"url": "/statics/icons/apple-icon-152x152.png"
},
{
"revision": "b7a53e220ed44688073a7d70814000bc",
"url": "/statics/icons/apple-icon-167x167.png"
},
{
"revision": "70105c0bd8a35dc9a6db0d9b7389246a",
"url": "/statics/icons/apple-icon-180x180.png"
},
{
"revision": "f820c566694348ed7f207a9766af2f85",
"url": "/statics/icons/favicon-16x16.png"
},
{
"revision": "6ec252210305a1998fb564d76cf3f5de",
"url": "/statics/icons/favicon-32x32.png"
},
{
"revision": "9057402186d23c24f143ba8de1acd485",
"url": "/statics/icons/favicon-96x96.png"
},
{
"revision": "c3ba534ca5f81797943eb492df844f00",
"url": "/statics/icons/favicon.ico"
},
{
"revision": "764b83d05e03c5cb521e2f2383823d45",
"url": "/statics/icons/icon-128x128.png"
},
{
"revision": "615212c33148979a6797dceeca1a164a",
"url": "/statics/icons/icon-192x192.png"
},
{
"revision": "a43cff8d60e693bdfd9d9ea39ae106e2",
"url": "/statics/icons/icon-256x256.png"
},
{
"revision": "7084c7f51108da696fc8de013f22523c",
"url": "/statics/icons/icon-384x384.png"
},
{
"revision": "9d41287d34398803fe1e0df005a4c7a7",
"url": "/statics/icons/icon-512x512.png"
},
{
"revision": "b5bb296ac748d11835f002611ac44469",
"url": "/statics/icons/ms-icon-144x144.png"
},
{
"revision": "424df4e15da848701d5267477913dc37",
"url": "/statics/icons/safari-pinned-tab.svg"
},
{
"revision": "a6a603c39187b437b16e695c968544ee",
"url": "/statics/images/bg-slice.png"
},
{
"revision": "8df77bdd4eeee2279107ba501319543f",
"url": "/statics/images/bigben.jpg"
},
{
"revision": "78d156d8d58abd3f8ad716f296f068db",
"url": "/statics/images/boat.jpg"
},
{
"revision": "cdb469468cb47f7620d3528621da8284",
"url": "/statics/images/bookCover.png"
},
{
"revision": "f018b8ff800b64dc354d4a7fa133f5c0",
"url": "/statics/images/feather.jpg"
},
{
"revision": "f9fad6ac1e754f9137132ba06746d417",
"url": "/statics/images/hammers.jpg"
},
{
"revision": "e60f745799a41f9a8437801c2dadacca",
"url": "/statics/images/keys.jpg"
},
{
"revision": "c3d02c7fff37feee59e3b5db1e8b8f1f",
"url": "/statics/images/lightning.jpg"
},
{
"revision": "cf4eed26830bd280a8540049fe226e40",
"url": "/statics/images/locks.jpg"
},
{
"revision": "5d4d37cb346b0e0438752f093424d9cb",
"url": "/statics/images/skycave.jpg"
},
{
"revision": "1ca0a5aba893a9028b34af8bd3554702",
"url": "/statics/images/snowflake.jpg"
},
{
"revision": "40d7f2945d87d17d01cfc6c10c2b8114",
"url": "/statics/images/vegetables.jpg"
},
{
"revision": "0a8f92907cd9ccd58848dc0e60f60582",
"url": "/statics/open-collective-light.svg"
},
{
"revision": "eea525077d0bc3873609945ef5f522ed",
"url": "/statics/open-collective.svg"
},
{
"revision": "ed41ac63ecc6b690ee631e89712f4818",
"url": "/statics/partnerLogos/IOTA_Logo_black_100px.png"
},
{
"revision": "ca3bbba90b509a1fc072524e4e9c632a",
"url": "/statics/partnerLogos/IOTA_Logo_white_100px.png"
},
{
"revision": "8efd6b27c5b291d8926fa32bae6f9f06",
"url": "/statics/partnerLogos/amethyst-standard.svg"
},
{
"revision": "8f68cb34990a74ba93b83abd02769b6c",
"url": "/statics/partnerLogos/amethyst-white.svg"
},
{
"revision": "8efd6b27c5b291d8926fa32bae6f9f06",
"url": "/statics/partnerLogos/amethyst.svg"
},
{
"revision": "d1965a957f2ce1e1a7771b0c7d3fe672",
"url": "/statics/partnerLogos/guijs-round.svg"
},
{
"revision": "3006ed8dfd31838b4b14b72a44d84d08",
"url": "/statics/partnerLogos/meros.png"
},
{
"revision": "58148e7d58c88f77be29f5f1c9f37d8a",
"url": "/statics/partnerLogos/pureos.png"
},
{
"revision": "36ae4c5d3266a0144a77fc281b92a1e4",
"url": "/statics/partnerLogos/tensor.png"
},
{
"revision": "76f57892a2833ca1c4238d1a397c49b7",
"url": "/statics/partnerLogos/wallabyjs.png"
},
{
"revision": "37ae4df61df6e2e8ddac46e5fb731c70",
"url": "/statics/patterns/Bridge.png"
},
{
"revision": "2257393830110573e7d68615e741d399",
"url": "/statics/patterns/Cloudbridge.png"
},
{
"revision": "4130cbebcae7e6a5b43ac7aaa36f397c",
"url": "/statics/patterns/Cloudish.png"
},
{
"revision": "42abcdb74f59e020e09573cdde37f6f3",
"url": "/statics/patterns/GLUI.png"
},
{
"revision": "82abc0d74e0e83a76cab72131ab69405",
"url": "/statics/patterns/Hermit.png"
},
{
"revision": "cd9ed4d7de8c4eb58934157be505d22b",
"url": "/statics/patterns/Kamikaze.png"
},
{
"revision": "279c9b3248b6a693e88f581ce796b8f6",
"url": "/statics/patterns/Multiwin.png"
},
{
"revision": "f09f36b3de0d8d4ce625b297e71a4548",
"url": "/statics/tauri-studio.svg"
},
{
"revision": "fcb79b4883b4b237012b3c83be65752d",
"url": "/statics/tauri-text.png"
},
{
"revision": "93e03d04b2445911ecf5cbe2d1bd28c2",
"url": "/statics/tauri-wordmark.png"
},
{
"revision": "3d091b26bf50048f26576e571a7a8679",
"url": "/statics/tauri.svg"
},
{
"revision": "fd4c87efeafb1de10e5db3e9a0f94ce5",
"url": "/statics/thetaTauri_logo.png"
}
]);

View File

@@ -0,0 +1,37 @@
/**
* Welcome to your Workbox-powered service worker!
*
* You'll need to register this file in your web app and you should
* disable HTTP caching for this file too.
* See https://goo.gl/nhQhGp
*
* The rest of the code is auto-generated. Please don't update this file
* directly; instead, make changes to your Workbox build configuration
* and re-run your build process.
* See https://goo.gl/2aRDsh
*/
importScripts("https://storage.googleapis.com/workbox-cdn/releases/4.3.1/workbox-sw.js");
importScripts(
"/precache-manifest.c3e8e37b57b11df1a6e9570a2607e2f6.js"
);
workbox.core.setCacheNameDetails({prefix: "docs-generator"});
workbox.core.skipWaiting();
workbox.core.clientsClaim();
/**
* The workboxSW.precacheAndRoute() method efficiently caches and responds to
* requests for URLs in the manifest.
* See https://goo.gl/S9QRab
*/
self.__precacheManifest = [].concat(self.__precacheManifest || []);
workbox.precaching.precacheAndRoute(self.__precacheManifest, {
"directoryIndex": "/"
});
workbox.routing.registerRoute("/", new workbox.strategies.NetworkFirst(), 'GET');
workbox.routing.registerRoute("/statics/*", new workbox.strategies.CacheFirst(), 'GET');

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="256px" height="293px" viewBox="0 0 256 293" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
<g>
<path d="M226.011429,0 L29.9885714,0 C13.4582857,0 0,13.4582857 0,30.1348571 L0,227.913143 C0,244.589714 13.4582857,258.048 29.9885714,258.048 L195.876571,258.048 L188.123429,230.985143 L206.848,248.393143 L224.548571,264.777143 L256,292.571429 L256,30.1348571 C256,13.4582857 242.541714,0 226.011429,0 Z M169.545143,191.049143 C169.545143,191.049143 164.278857,184.758857 159.890286,179.2 C179.053714,173.787429 186.368,161.792 186.368,161.792 C180.370286,165.741714 174.665143,168.521143 169.545143,170.422857 C162.230857,173.494857 155.209143,175.542857 148.333714,176.713143 C134.290286,179.346286 121.417143,178.614857 110.445714,176.566857 C102.107429,174.957714 94.9394286,172.617143 88.9417143,170.276571 C85.5771429,168.96 81.92,167.350857 78.2628571,165.302857 C77.824,165.010286 77.3851429,164.864 76.9462857,164.571429 C76.6537143,164.425143 76.5074286,164.278857 76.3611429,164.132571 C73.728,162.669714 72.2651429,161.645714 72.2651429,161.645714 C72.2651429,161.645714 79.2868571,173.348571 97.8651429,178.907429 C93.4765714,184.466286 88.064,191.049143 88.064,191.049143 C55.7348571,190.025143 43.4468571,168.813714 43.4468571,168.813714 C43.4468571,121.709714 64.512,83.5291429 64.512,83.5291429 C85.5771429,67.7302857 105.618286,68.1691429 105.618286,68.1691429 L107.081143,69.9245714 C80.7497143,77.5314286 68.608,89.088 68.608,89.088 C68.608,89.088 71.8262857,87.3325714 77.2388571,84.8457143 C92.8914286,77.9702857 105.325714,76.0685714 110.445714,75.6297143 C111.323429,75.4834286 112.054857,75.3371429 112.932571,75.3371429 C121.856,74.1668571 131.949714,73.8742857 142.482286,75.0445714 C156.379429,76.6537143 171.300571,80.7497143 186.514286,89.088 C186.514286,89.088 174.957714,78.1165714 150.089143,70.5097143 L152.137143,68.1691429 C152.137143,68.1691429 172.178286,67.7302857 193.243429,83.5291429 C193.243429,83.5291429 214.308571,121.709714 214.308571,168.813714 C214.308571,168.813714 201.874286,190.025143 169.545143,191.049143 Z M101.522286,122.733714 C93.184,122.733714 86.6011429,130.048 86.6011429,138.971429 C86.6011429,147.894857 93.3302857,155.209143 101.522286,155.209143 C109.860571,155.209143 116.443429,147.894857 116.443429,138.971429 C116.589714,130.048 109.860571,122.733714 101.522286,122.733714 M154.916571,122.733714 C146.578286,122.733714 139.995429,130.048 139.995429,138.971429 C139.995429,147.894857 146.724571,155.209143 154.916571,155.209143 C163.254857,155.209143 169.837714,147.894857 169.837714,138.971429 C169.837714,130.048 163.254857,122.733714 154.916571,122.733714" fill="#1F6AB8"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="256px" height="293px" viewBox="0 0 256 293" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
<g>
<path d="M226.011429,0 L29.9885714,0 C13.4582857,0 0,13.4582857 0,30.1348571 L0,227.913143 C0,244.589714 13.4582857,258.048 29.9885714,258.048 L195.876571,258.048 L188.123429,230.985143 L206.848,248.393143 L224.548571,264.777143 L256,292.571429 L256,30.1348571 C256,13.4582857 242.541714,0 226.011429,0 Z M169.545143,191.049143 C169.545143,191.049143 164.278857,184.758857 159.890286,179.2 C179.053714,173.787429 186.368,161.792 186.368,161.792 C180.370286,165.741714 174.665143,168.521143 169.545143,170.422857 C162.230857,173.494857 155.209143,175.542857 148.333714,176.713143 C134.290286,179.346286 121.417143,178.614857 110.445714,176.566857 C102.107429,174.957714 94.9394286,172.617143 88.9417143,170.276571 C85.5771429,168.96 81.92,167.350857 78.2628571,165.302857 C77.824,165.010286 77.3851429,164.864 76.9462857,164.571429 C76.6537143,164.425143 76.5074286,164.278857 76.3611429,164.132571 C73.728,162.669714 72.2651429,161.645714 72.2651429,161.645714 C72.2651429,161.645714 79.2868571,173.348571 97.8651429,178.907429 C93.4765714,184.466286 88.064,191.049143 88.064,191.049143 C55.7348571,190.025143 43.4468571,168.813714 43.4468571,168.813714 C43.4468571,121.709714 64.512,83.5291429 64.512,83.5291429 C85.5771429,67.7302857 105.618286,68.1691429 105.618286,68.1691429 L107.081143,69.9245714 C80.7497143,77.5314286 68.608,89.088 68.608,89.088 C68.608,89.088 71.8262857,87.3325714 77.2388571,84.8457143 C92.8914286,77.9702857 105.325714,76.0685714 110.445714,75.6297143 C111.323429,75.4834286 112.054857,75.3371429 112.932571,75.3371429 C121.856,74.1668571 131.949714,73.8742857 142.482286,75.0445714 C156.379429,76.6537143 171.300571,80.7497143 186.514286,89.088 C186.514286,89.088 174.957714,78.1165714 150.089143,70.5097143 L152.137143,68.1691429 C152.137143,68.1691429 172.178286,67.7302857 193.243429,83.5291429 C193.243429,83.5291429 214.308571,121.709714 214.308571,168.813714 C214.308571,168.813714 201.874286,190.025143 169.545143,191.049143 Z M101.522286,122.733714 C93.184,122.733714 86.6011429,130.048 86.6011429,138.971429 C86.6011429,147.894857 93.3302857,155.209143 101.522286,155.209143 C109.860571,155.209143 116.443429,147.894857 116.443429,138.971429 C116.589714,130.048 109.860571,122.733714 101.522286,122.733714 M154.916571,122.733714 C146.578286,122.733714 139.995429,130.048 139.995429,138.971429 C139.995429,147.894857 146.724571,155.209143 154.916571,155.209143 C163.254857,155.209143 169.837714,147.894857 169.837714,138.971429 C169.837714,130.048 163.254857,122.733714 154.916571,122.733714" fill="#00D5ED"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 708 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="681" height="680"><path d="M251.377 192.765c-2.535 1.659-13.497 26.255-16.865 37.841-1.255 4.319-2.163 5.688-4.301 6.49-12.319 4.622-39.151 19.298-37.783 20.666.308.307 1.35-.143 2.316-1.001 4.174-3.709 33.443-17.761 36.995-17.761.498 0 .129 4.387-.819 9.75-5.833 32.988-1.628 68.804 11.728 99.896 1.974 4.595 3.986 8.354 4.471 8.354 1.235 0 1.259.079-2.534-8.245-6.588-14.456-11.504-33.088-13.655-51.755-1.965-17.056.018-46.552 3.989-59.347.539-1.734 2.384-7.653 4.101-13.153 1.717-5.5 5.538-15.062 8.492-21.25 2.953-6.187 5.284-11.243 5.179-11.235-.105.009-.696.346-1.314.75m128.135 21.849c-20.856 5.042-38.762 22.174-45.869 43.886-4.19 12.801-3.905 29.193.738 42.545 10.434 30.004 41.143 48.376 71.119 42.547 22.957-4.464 41.885-21.645 49.674-45.092 1.971-5.932 2.319-8.984 2.279-20-.041-11.4-.373-13.935-2.692-20.596-7.611-21.867-25.201-38.496-45.875-43.369-7.934-1.87-21.46-1.834-29.374.079m1.69 8.408c-14.102 3.695-25.227 11.799-33.295 24.255-5.606 8.656-8.028 16.597-8.609 28.223-.612 12.267 1.168 20.788 6.437 30.814 7.104 13.52 18.997 23.374 33.605 27.843 9.734 2.978 25.325 2.291 34.66-1.528 16.19-6.623 28.248-20.318 33.617-38.181 2.771-9.221 2.356-23.789-.97-34.026-6.219-19.139-22.367-33.923-41.473-37.973-8.882-1.882-15.174-1.732-23.972.573M480.5 423.655c-6.338 4.345-27.577 14.76-33.5 16.428-2.475.697-4.994 1.637-5.598 2.088-2.567 1.92-24.445 5.929-36.869 6.756-24.414 1.625-49.07-2.287-69.673-11.055-7.419-3.156-7.86-3.269-7.86-2.004 0 1.17 16.945 7.587 26.661 10.096 25.444 6.571 55.324 6.637 80.339.179 4.125-1.065 7.633-1.812 7.796-1.66.739.689-8.284 25.531-11.846 32.617-2.185 4.345-3.592 7.9-3.127 7.9 1.621 0 12.492-24.692 15.643-35.532 1.277-4.391 2.178-5.76 4.323-6.564 11.759-4.412 36.956-18.064 38.776-21.009 1.295-2.096-.197-1.578-5.065 1.76" fill="undefined" fill-rule="evenodd"/></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 108 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 161 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 125 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 280 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 671 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 157 KiB

View File

@@ -0,0 +1,4 @@
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" style="fill: #1F6AB8">
<title>open-collective</title>
<path d="M29.145 6.896c3.819 5.468 3.819 12.74 0 18.208l-4.129-4.131c1.713-3.093 1.713-6.853 0-9.947zM25.104 2.855l-4.131 4.129c-3.187-1.749-7.056-1.692-10.187 0.161-3.131 1.849-5.047 5.215-5.047 8.849 0 3.636 1.916 7 5.047 8.849s7 1.905 10.187 0.156l4.131 4.145c-4.891 3.391-11.26 3.781-16.531 1.021s-8.579-8.224-8.579-14.172c0-5.953 3.308-11.411 8.579-14.177 5.271-2.76 11.64-2.364 16.531 1.021zM29.145 6.896c3.819 5.468 3.819 12.74 0 18.208l-4.129-4.131c1.713-3.093 1.713-6.853 0-9.947z"></path>
</svg>

After

Width:  |  Height:  |  Size: 661 B

View File

@@ -0,0 +1,4 @@
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" style="fill: #00D5ED">
<title>open-collective</title>
<path d="M29.145 6.896c3.819 5.468 3.819 12.74 0 18.208l-4.129-4.131c1.713-3.093 1.713-6.853 0-9.947zM25.104 2.855l-4.131 4.129c-3.187-1.749-7.056-1.692-10.187 0.161-3.131 1.849-5.047 5.215-5.047 8.849 0 3.636 1.916 7 5.047 8.849s7 1.905 10.187 0.156l4.131 4.145c-4.891 3.391-11.26 3.781-16.531 1.021s-8.579-8.224-8.579-14.172c0-5.953 3.308-11.411 8.579-14.177 5.271-2.76 11.64-2.364 16.531 1.021zM29.145 6.896c3.819 5.468 3.819 12.74 0 18.208l-4.129-4.131c1.713-3.093 1.713-6.853 0-9.947z"></path>
</svg>

After

Width:  |  Height:  |  Size: 661 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg viewBox="0 0 32 32" width="200" height="200" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient
gradientTransform="matrix(1.0322583,0,0,1.0322579,-0.5161294,-0.51612924)"
gradientUnits="userSpaceOnUse"
y2="0.50000681"
x2="31.499993"
y1="31.5"
x1="0.49999964"
id="logo-gradient-standard">
<stop style="stop-color:#7f41ef;stop-opacity:1" offset="0%" />
<stop style="stop-color:#4f29d0;stop-opacity:1" offset="100%" />
</linearGradient>
</defs>
<path
style="fill:url(#logo-gradient-standard);"
d="M 15.999999,6.735e-6 A 16,16 0 0 0 -6.15e-7,16 16,16 0 0 0 15.999999,31.999993 16,16 0 0 0 32.000001,16 16,16 0 0 0 15.999999,6.735e-6 Z m -1.816534,3.149209965 3.907261,2.479838 0.657257,4.141114 -1.350806,0.9092713 -1.08468,9.53428 -2.455646,1.100794 -1.633062,-2.062501 -1.122981,-12.5725706 z m 8.191535,4.9213648 3.006047,4.1330375 -3.679434,13.096809 -3.870969,-5.766145 -0.887096,0.399196 1.012094,-8.915315 3.336694,-2.2439572 z m -11.39113,10.5746005 2.467743,3.110859 -0.439517,5.629047 -2.379032,-0.407272 -2.7217751,-7.330625 z m 6.633064,1.637086 3.552421,5.292353 -4.881051,2.372978 -2.691529,-0.461697 0.437499,-5.596784 z" />
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg viewBox="0 0 32 32" width="200" height="200" xmlns="http://www.w3.org/2000/svg">
<path
fill="#ffffff"
d="M 15.999999,6.735e-6 A 16,16 0 0 0 -6.15e-7,16 16,16 0 0 0 15.999999,31.999993 16,16 0 0 0 32.000001,16 16,16 0 0 0 15.999999,6.735e-6 Z m -1.816534,3.149209965 3.907261,2.479838 0.657257,4.141114 -1.350806,0.9092713 -1.08468,9.53428 -2.455646,1.100794 -1.633062,-2.062501 -1.122981,-12.5725706 z m 8.191535,4.9213648 3.006047,4.1330375 -3.679434,13.096809 -3.870969,-5.766145 -0.887096,0.399196 1.012094,-8.915315 3.336694,-2.2439572 z m -11.39113,10.5746005 2.467743,3.110859 -0.439517,5.629047 -2.379032,-0.407272 -2.7217751,-7.330625 z m 6.633064,1.637086 3.552421,5.292353 -4.881051,2.372978 -2.691529,-0.461697 0.437499,-5.596784 z" />
</svg>

After

Width:  |  Height:  |  Size: 826 B

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg viewBox="0 0 32 32" width="200" height="200" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient
gradientTransform="matrix(1.0322583,0,0,1.0322579,-0.5161294,-0.51612924)"
gradientUnits="userSpaceOnUse"
y2="0.50000681"
x2="31.499993"
y1="31.5"
x1="0.49999964"
id="logo-gradient-standard">
<stop style="stop-color:#7f41ef;stop-opacity:1" offset="0%" />
<stop style="stop-color:#4f29d0;stop-opacity:1" offset="100%" />
</linearGradient>
</defs>
<path
style="fill:url(#logo-gradient-standard);"
d="M 15.999999,6.735e-6 A 16,16 0 0 0 -6.15e-7,16 16,16 0 0 0 15.999999,31.999993 16,16 0 0 0 32.000001,16 16,16 0 0 0 15.999999,6.735e-6 Z m -1.816534,3.149209965 3.907261,2.479838 0.657257,4.141114 -1.350806,0.9092713 -1.08468,9.53428 -2.455646,1.100794 -1.633062,-2.062501 -1.122981,-12.5725706 z m 8.191535,4.9213648 3.006047,4.1330375 -3.679434,13.096809 -3.870969,-5.766145 -0.887096,0.399196 1.012094,-8.915315 3.336694,-2.2439572 z m -11.39113,10.5746005 2.467743,3.110859 -0.439517,5.629047 -2.379032,-0.407272 -2.7217751,-7.330625 z m 6.633064,1.637086 3.552421,5.292353 -4.881051,2.372978 -2.691529,-0.461697 0.437499,-5.596784 z" />
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:cc="http://creativecommons.org/ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="176"
height="176"
viewBox="0 0 46.566665 46.566668"
version="1.1"
id="svg8">
<g
id="layer1"
transform="translate(0,-250.43332)">
<rect
style="opacity:1;fill:#f7df1e;fill-opacity:1;stroke:none;stroke-width:4.23333311;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
id="rect928"
width="46.566654"
height="46.566662"
x="6.1473388e-06"
y="250.43332"
rx="52.916668" />
<g
id="g820"
transform="translate(-10.583344,-6.6747727e-6)">
<path
style="fill:none;stroke:#000000;stroke-width:4.23333311;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 29.633349,273.71666 V 277.95"
id="path922"/>
<path
style="fill:none;stroke:#000000;stroke-width:4.23333311;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 38.100008,273.71666 v 6.35 c 0,4.23334 -2.116659,8.46667 -8.466659,8.46667"
id="path924"/>
<path
style="fill:none;stroke:#000000;stroke-width:4.23333311;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 27.516677,265.24999 h 12.7"
id="path926"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 612 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="100%" height="100%" viewBox="0 0 480 480" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<g>
<g>
<path id="tauri-t" d="M177.312,142.168l0,1.651l-22.252,0l0,49.458l-1.651,0l0,-49.458l-22.095,0l0,-1.651l45.998,0Z" style="fill:none;fill-rule:nonzero;stroke-width:3.07px;" stroke="#e5fcff"/>
<path id="tauri-a" d="M202.867,141.539l22.802,51.738l-1.729,0l-21.152,-47.885l-22.173,47.885l-1.809,0l24.061,-51.738Z" style="fill:none;fill-rule:nonzero;stroke-width:3.07px;" stroke="#e5fcff"/>
<path id="tauri-u" d="M261.131,192.373c2.359,-0.97 4.43,-2.398 6.212,-4.285c1.782,-1.835 3.145,-3.945 4.089,-6.33c0.943,-2.385 1.415,-4.862 1.415,-7.43l0,-32.16l-1.494,0l0,32.16c0,2.411 -0.445,4.691 -1.336,6.84c-0.892,2.15 -2.176,4.063 -3.853,5.74c-1.625,1.73 -3.512,3.041 -5.662,3.932c-2.149,0.891 -4.403,1.337 -6.762,1.337c-4.98,0 -9.173,-1.757 -12.581,-5.269c-1.625,-1.677 -2.87,-3.603 -3.734,-5.779c-0.865,-2.175 -1.298,-4.443 -1.298,-6.801l0,-32.16l-1.651,0l0,32.16c0,2.568 0.472,5.045 1.415,7.43c0.944,2.385 2.307,4.495 4.089,6.33c1.782,1.887 3.866,3.315 6.251,4.285c2.385,0.97 4.888,1.455 7.509,1.455c2.569,0 5.033,-0.485 7.391,-1.455Z" style="fill:none;fill-rule:nonzero;stroke-width:3.07px;" stroke="#e5fcff"/>
<path id="tauri-r" d="M320.182,193.277l-20.05,-24.768l4.089,0c2.149,0 3.8,-0.131 4.953,-0.393c1.153,-0.262 2.438,-0.708 3.853,-1.337c1.992,-0.943 3.709,-2.385 5.15,-4.324c1.442,-1.94 2.163,-4.089 2.163,-6.448c0,-2.045 -0.616,-4.023 -1.848,-5.937c-1.232,-1.913 -2.988,-3.459 -5.268,-4.639c-2.281,-1.179 -4.915,-1.769 -7.903,-1.769l-16.04,0l0.157,49.615l-1.651,0l0,-51.109l17.534,0c3.303,0 6.212,0.668 8.728,2.005c2.516,1.337 4.456,3.067 5.819,5.19c1.363,2.123 2.044,4.337 2.044,6.644c0,2.726 -0.773,5.137 -2.319,7.234c-1.547,2.097 -3.499,3.774 -5.858,5.032c-1.468,0.734 -2.91,1.206 -4.325,1.415c-1.415,0.21 -3.355,0.315 -5.819,0.315l18.714,23.274l-2.123,0Z" style="fill:none;fill-rule:nonzero;stroke-width:3.07px;" stroke="#e5fcff"/>
<rect id="tauri-i" x="336.144" y="142.168" width="1.651" height="51.109" style="fill:none;fill-rule:nonzero;stroke-width:3.07px;" stroke="#e5fcff"/>
<path id="studio-s" d="M163.202,254.123c0.988,1.463 1.483,2.974 1.483,4.532c0,1.786 -0.59,3.43 -1.768,4.931c-1.178,1.502 -2.774,2.689 -4.789,3.563c-2.014,0.875 -4.199,1.312 -6.556,1.312c-2.28,0 -4.389,-0.399 -6.328,-1.198c-1.938,-0.798 -3.506,-1.9 -4.703,-3.306c-1.197,-1.406 -1.872,-2.946 -2.024,-4.618l1.14,-0.684c0,1.558 0.542,3.002 1.625,4.333c1.083,1.33 2.537,2.375 4.361,3.135c1.825,0.76 3.801,1.14 5.929,1.14c2.167,0 4.162,-0.389 5.986,-1.168c1.825,-0.779 3.269,-1.825 4.333,-3.136c1.064,-1.311 1.596,-2.746 1.596,-4.304c0,-1.33 -0.418,-2.604 -1.254,-3.82c-0.836,-1.216 -1.995,-2.242 -3.477,-3.078c-0.875,-0.494 -2.015,-0.874 -3.421,-1.14c-1.406,-0.266 -2.679,-0.456 -3.82,-0.571c-0.228,-0.038 -1.216,-0.199 -2.964,-0.484c-1.748,-0.285 -3.174,-0.675 -4.276,-1.169c-1.786,-0.836 -3.202,-1.995 -4.247,-3.477c-1.045,-1.483 -1.568,-3.041 -1.568,-4.675c0,-1.786 0.589,-3.43 1.767,-4.931c1.179,-1.502 2.775,-2.699 4.789,-3.592c2.015,-0.893 4.2,-1.34 6.556,-1.34c2.243,0 4.343,0.409 6.3,1.226c1.957,0.817 3.544,1.919 4.76,3.306c1.216,1.388 1.901,2.917 2.053,4.59l-1.198,0.627c0,-1.558 -0.532,-2.993 -1.596,-4.304c-1.064,-1.312 -2.508,-2.347 -4.333,-3.107c-1.824,-0.761 -3.819,-1.141 -5.986,-1.141c-2.166,0 -4.161,0.38 -5.986,1.141c-1.824,0.76 -3.268,1.805 -4.332,3.135c-1.065,1.33 -1.597,2.794 -1.597,4.39c0,1.406 0.456,2.755 1.369,4.048c0.912,1.292 2.166,2.299 3.762,3.021c0.684,0.304 1.463,0.551 2.338,0.741c0.874,0.19 1.757,0.352 2.651,0.485c0.893,0.133 1.51,0.237 1.852,0.313c1.787,0.266 3.269,0.513 4.447,0.741c1.178,0.228 2.242,0.59 3.193,1.084c1.634,0.836 2.945,1.985 3.933,3.449Z" style="fill:none;fill-rule:nonzero;stroke-width:1.17px;" stroke="#e5fcff"/>
<path id="studio-t" d="M204.192,230.948l0,1.197l-16.134,0l0,35.86l-1.197,0l0,-35.86l-16.019,0l0,-1.197l33.35,0Z" style="fill:none;fill-rule:nonzero;stroke-width:1.17px;" stroke="#e5fcff"/>
<path id="studio-u" d="M232.184,267.349c1.71,-0.703 3.211,-1.739 4.504,-3.107c1.292,-1.33 2.28,-2.86 2.964,-4.589c0.684,-1.73 1.026,-3.525 1.026,-5.388l0,-23.317l-1.083,0l0,23.317c0,1.748 -0.323,3.402 -0.969,4.96c-0.646,1.558 -1.577,2.946 -2.793,4.162c-1.179,1.254 -2.547,2.204 -4.105,2.85c-1.558,0.646 -3.193,0.969 -4.903,0.969c-3.611,0 -6.651,-1.273 -9.122,-3.819c-1.178,-1.216 -2.08,-2.613 -2.707,-4.19c-0.628,-1.578 -0.941,-3.222 -0.941,-4.932l0,-23.317l-1.197,0l0,23.317c0,1.863 0.342,3.658 1.026,5.388c0.684,1.729 1.672,3.259 2.964,4.589c1.293,1.368 2.803,2.404 4.533,3.107c1.729,0.703 3.544,1.055 5.444,1.055c1.862,0 3.649,-0.352 5.359,-1.055Z" style="fill:none;fill-rule:nonzero;stroke-width:1.17px;" stroke="#e5fcff"/>
<path id="studio-d" d="M269.155,266.551c2.223,-0.969 4.19,-2.366 5.9,-4.19c1.52,-1.711 2.689,-3.678 3.506,-5.901c0.817,-2.223 1.226,-4.57 1.226,-7.041c0,-2.432 -0.409,-4.769 -1.226,-7.012c-0.817,-2.242 -1.986,-4.2 -3.506,-5.872c-3.382,-3.724 -7.772,-5.587 -13.169,-5.587l-10.376,0l0,37.057l10.376,0c2.622,0 5.045,-0.485 7.269,-1.454Zm-16.448,-34.406l9.179,0c2.508,0 4.798,0.438 6.87,1.312c2.071,0.874 3.867,2.166 5.387,3.876c1.444,1.559 2.556,3.383 3.335,5.473c0.779,2.091 1.169,4.295 1.169,6.613c0,2.319 -0.39,4.523 -1.169,6.613c-0.779,2.091 -1.891,3.934 -3.335,5.53c-1.482,1.711 -3.269,3.012 -5.359,3.906c-2.09,0.893 -4.39,1.339 -6.898,1.339l-9.179,0l0,-34.662Z" style="fill:none;fill-rule:nonzero;stroke-width:1.17px;" stroke="#e5fcff"/>
<rect id="studio-i" x="289.479" y="230.948" width="1.197" height="37.056" style="fill:none;fill-rule:nonzero;stroke-width:1.17px;" stroke="#e5fcff" />
<path id="studio-o" d="M328.445,265.838c2.869,-1.71 5.149,-4.019 6.841,-6.927c1.691,-2.907 2.537,-6.071 2.537,-9.492c0,-3.42 -0.846,-6.584 -2.537,-9.492c-1.692,-2.907 -3.972,-5.207 -6.841,-6.898c-2.87,-1.691 -5.996,-2.537 -9.378,-2.537c-3.383,0 -6.509,0.846 -9.379,2.537c-2.869,1.691 -5.149,3.991 -6.841,6.898c-1.691,2.908 -2.537,6.072 -2.537,9.492c0,3.421 0.846,6.585 2.537,9.492c1.692,2.908 3.972,5.217 6.841,6.927c2.87,1.71 5.996,2.566 9.379,2.566c3.382,0 6.508,-0.856 9.378,-2.566Zm-0.513,-31.811c2.717,1.596 4.864,3.753 6.442,6.47c1.577,2.718 2.366,5.692 2.366,8.922c0,3.231 -0.789,6.205 -2.366,8.922c-1.578,2.718 -3.725,4.875 -6.442,6.471c-2.718,1.596 -5.673,2.394 -8.865,2.394c-3.193,0 -6.129,-0.798 -8.808,-2.394c-2.68,-1.596 -4.808,-3.753 -6.386,-6.471c-1.577,-2.717 -2.365,-5.691 -2.365,-8.922c0,-3.23 0.788,-6.204 2.365,-8.922c1.578,-2.717 3.706,-4.874 6.386,-6.47c2.679,-1.596 5.615,-2.395 8.808,-2.395c3.192,0 6.147,0.799 8.865,2.395Z" style="fill:none;fill-rule:nonzero;stroke-width:1.17px;" stroke="#e5fcff"/>
</g>
<path id="line" d="M117.334,208.935l245.332,0" style="fill:none;stroke-width:3.07px;stroke-linecap:round;stroke-miterlimit:1.5;" stroke="#e5fcff"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="100%" height="100%" viewBox="0 0 240 80" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<g>
<g>
<path id="tauri-t" d="M62.758,14.485l0,1.651l-22.253,0l0,49.458l-1.651,0l0,-49.458l-22.095,0l0,-1.651l45.999,0Z" style="fill:none;fill-rule:nonzero;stroke-width:3.07px;" stroke="#e5fcff"/>
<path id="tauri-a" d="M88.312,13.856l22.803,51.738l-1.73,0l-21.151,-47.886l-22.174,47.886l-1.809,0l24.061,-51.738Z" style="fill:none;fill-rule:nonzero;stroke-width:3.07px;" stroke="#e5fcff"/>
<path id="tauri-u" d="M146.577,64.69c2.359,-0.97 4.429,-2.398 6.212,-4.286c1.782,-1.834 3.145,-3.944 4.088,-6.329c0.944,-2.385 1.416,-4.862 1.416,-7.431l0,-32.159l-1.494,0l0,32.159c0,2.412 -0.446,4.692 -1.337,6.841c-0.891,2.149 -2.175,4.063 -3.853,5.74c-1.625,1.73 -3.512,3.04 -5.661,3.931c-2.149,0.892 -4.403,1.337 -6.762,1.337c-4.98,0 -9.174,-1.756 -12.581,-5.268c-1.625,-1.677 -2.87,-3.604 -3.735,-5.779c-0.865,-2.176 -1.297,-4.443 -1.297,-6.802l0,-32.159l-1.652,0l0,32.159c0,2.569 0.472,5.046 1.416,7.431c0.943,2.385 2.306,4.495 4.088,6.329c1.783,1.888 3.866,3.316 6.252,4.286c2.385,0.97 4.888,1.454 7.509,1.454c2.568,0 5.032,-0.484 7.391,-1.454Z" style="fill:none;fill-rule:nonzero;stroke-width:3.07px;" stroke="#e5fcff"/>
<path id="tauri-r" d="M205.628,65.594l-20.051,-24.768l4.089,0c2.149,0 3.8,-0.131 4.954,-0.394c1.153,-0.262 2.437,-0.707 3.853,-1.336c1.991,-0.944 3.708,-2.385 5.15,-4.325c1.441,-1.939 2.162,-4.089 2.162,-6.448c0,-2.044 -0.616,-4.023 -1.848,-5.936c-1.232,-1.913 -2.988,-3.46 -5.268,-4.639c-2.28,-1.18 -4.914,-1.769 -7.902,-1.769l-16.041,0l0.158,49.615l-1.652,0l0,-51.109l17.535,0c3.302,0 6.212,0.668 8.728,2.005c2.516,1.336 4.455,3.066 5.818,5.189c1.363,2.123 2.045,4.338 2.045,6.644c0,2.726 -0.773,5.138 -2.32,7.234c-1.546,2.097 -3.499,3.775 -5.858,5.033c-1.468,0.734 -2.909,1.205 -4.324,1.415c-1.416,0.21 -3.355,0.315 -5.819,0.315l18.714,23.274l-2.123,0Z" style="fill:none;fill-rule:nonzero;stroke-width:3.07px;" stroke="#e5fcff"/>
<rect id="tauri-i" x="221.59" y="14.485" width="1.651" height="51.109" style="fill:none;fill-rule:nonzero;stroke-width:3.07px;" stroke="#e5fcff"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 123 KiB

View File

@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:cc="http://creativecommons.org/ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="176"
height="176"
viewBox="0 0 46.566665 46.566668"
version="1.1"
id="svg8">
<g
id="layer1"
transform="translate(0,-250.43332)">
<rect
style="opacity:1;fill:#f7df1e;fill-opacity:1;stroke:none;stroke-width:4.23333311;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
id="rect928"
width="46.566654"
height="46.566662"
x="6.1473388e-06"
y="250.43332"
rx="52.916668" />
<g
id="g820"
transform="translate(-10.583344,-6.6747727e-6)">
<path
style="fill:none;stroke:#000000;stroke-width:4.23333311;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 29.633349,273.71666 V 277.95"
id="path922"/>
<path
style="fill:none;stroke:#000000;stroke-width:4.23333311;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 38.100008,273.71666 v 6.35 c 0,4.23334 -2.116659,8.46667 -8.466659,8.46667"
id="path924"/>
<path
style="fill:none;stroke:#000000;stroke-width:4.23333311;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 27.516677,265.24999 h 12.7"
id="path926"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB