├── scss
├── list
│ ├── index.scss
│ ├── _channel.scss
│ ├── _server.scss
│ └── _user.scss
├── _property.scss
├── _data.scss
└── main.scss
├── .gitignore
├── .prettierignore
├── svg
├── vencordcloud.svg
├── dismissiblecontentoptions.svg
├── games.svg
├── gameactivity.svg
├── textcomponent.svg
├── textplayground.svg
├── textimages.svg
├── vanityurl.svg
├── friendrequests.svg
├── onboarding.svg
├── guildpremium.svg
├── nitroserverboost.svg
├── windows.svg
├── discovery.svg
├── privacysafety.svg
├── sessions.svg
├── roles.svg
├── guildtemplates.svg
├── safety.svg
├── moderation.svg
├── changelog.svg
├── paymentflowmodals.svg
├── vencordsettingssync.svg
├── emoji.svg
├── logout.svg
├── streamermode.svg
├── vencordupdater.svg
├── default.svg
├── keybinds.svg
├── startuptimings.svg
├── community.svg
├── overview.svg
├── profilecustomization.svg
├── delete.svg
├── familycenter.svg
├── overlay.svg
├── auditlog.svg
├── bans.svg
├── subscriptions.svg
├── rolesubscriptions.svg
├── widget.svg
├── language.svg
├── analytics.svg
├── hotspotoptions.svg
├── members.svg
├── vencordsettings.svg
├── vencordplugins.svg
├── activityprivacy.svg
├── merchandise.svg
├── advanced.svg
├── settingsclips.svg
├── rtcspeedtest.svg
├── appearance.svg
├── designsystem.svg
├── appdirectory.svg
├── vencordpatchhelper.svg
├── soundboard.svg
├── hypesquadonline.svg
├── profileeffectspreviewtool.svg
├── questspreviewtool.svg
├── integrations.svg
├── myaccount.svg
├── stickers.svg
├── permissions.svg
├── partner.svg
├── billing.svg
├── accessibility.svg
├── notifications.svg
├── vencordthemes.svg
├── experiments.svg
├── voicevideo.svg
├── vesktop.svg
├── instantinvites.svg
├── developeroptions.svg
├── connections.svg
├── authorizedapps.svg
├── libraryinventory.svg
├── guildautomod.svg
├── powermodesettings.svg
└── discordnitro.svg
├── .prettierrc.json
├── scss-compile.config.js
├── .github
└── workflows
│ ├── release.yml
│ ├── lint.yml
│ └── css.yml
├── SettingsIcons.theme.css
├── package.json
├── README.md
├── pnpm-lock.yaml
└── LICENSE
/scss/list/index.scss:
--------------------------------------------------------------------------------
1 | @forward "./user";
2 | @forward "./server";
3 | @forward "./channel";
4 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Packages
2 | /node_modules
3 |
4 | # Build
5 | /dist
6 | /bundle
7 | /src
8 |
9 | # Social images
10 | /preview
--------------------------------------------------------------------------------
/scss/list/_channel.scss:
--------------------------------------------------------------------------------
1 | // Channel settings
2 |
3 | $channel: ("overview", "permissions", "instant_invites", "integrations", "delete");
4 |
--------------------------------------------------------------------------------
/.prettierignore:
--------------------------------------------------------------------------------
1 | # Folders
2 | /.github
3 | /bundle
4 | /dist
5 | /node_modules
6 | /preview
7 |
8 | # File types
9 | *.md
10 | *.min.css
11 | *.theme.css
12 |
13 | # Files
14 | LICENSE
15 | pnpm-lock.yaml
--------------------------------------------------------------------------------
/svg/vencordcloud.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/dismissiblecontentoptions.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/games.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.prettierrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "useTabs": false,
3 | "singleQuote": false,
4 | "printWidth": 140,
5 | "tabWidth": 4,
6 | "trailingComma": "none",
7 | "overrides": [
8 | {
9 | "files": "*.json",
10 | "options": {
11 | "tabWidth": 2
12 | }
13 | }
14 | ]
15 | }
16 |
--------------------------------------------------------------------------------
/svg/gameactivity.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/textcomponent.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/textplayground.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/scss/_property.scss:
--------------------------------------------------------------------------------
1 | // Create custom property with safe default URL for an icon
2 | @mixin create($setting) {
3 | @property --si-#{$setting} {
4 | syntax: "";
5 | inherits: true;
6 | initial-value: url(https://minidiscordthemes.github.io/SettingsIcons/svg/#{$setting}.svg);
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/svg/textimages.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/vanityurl.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/friendrequests.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/onboarding.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/scss-compile.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('bd-scss/lib/config').Config} */
2 | export default {
3 | meta: {
4 | name: "SettingsIcons" /* The official name of your theme. */,
5 | scss: "main" /* The name of your base scss file. */,
6 | repo: "SettingsIcons" /* The name of your theme repository. */,
7 | version: "dev" /* The version of your theme. */
8 | }
9 | };
10 |
--------------------------------------------------------------------------------
/svg/guildpremium.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/nitroserverboost.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/windows.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/discovery.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/privacysafety.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/sessions.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/roles.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/guildtemplates.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/safety.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/moderation.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/changelog.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/paymentflowmodals.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/vencordsettingssync.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.github/workflows/release.yml:
--------------------------------------------------------------------------------
1 | name: Release
2 |
3 | on:
4 | push:
5 | tags:
6 | - "v*"
7 |
8 | jobs:
9 | release:
10 | name: Release
11 | runs-on: ubuntu-latest
12 | permissions:
13 | contents: write
14 |
15 | steps:
16 | - name: Checkout theme
17 | uses: actions/checkout@v4
18 |
19 | - name: Release .theme.css
20 | uses: ncipollo/release-action@v1
21 | with:
22 | artifacts: "*.theme.css"
23 | makeLatest: true
24 | generateReleaseNotes: true
--------------------------------------------------------------------------------
/svg/emoji.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/logout.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/streamermode.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/vencordupdater.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/default.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/keybinds.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/startuptimings.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/community.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/scss/list/_server.scss:
--------------------------------------------------------------------------------
1 | // Server settings
2 |
3 | $server: (
4 | "overview",
5 | "roles",
6 | "emoji",
7 | "stickers",
8 | "soundboard",
9 | "widget",
10 | "guild_templates",
11 | "vanity_url",
12 | "integrations",
13 | "app_directory",
14 | "safety",
15 | "moderation",
16 | "guild_automod",
17 | "audit_log",
18 | "bans",
19 | "community",
20 | "onboarding",
21 | "analytics",
22 | "partner",
23 | "discovery",
24 | "role_subscriptions",
25 | "guild_premium",
26 | "members",
27 | "instant_invites",
28 | "delete"
29 | );
30 |
--------------------------------------------------------------------------------
/svg/overview.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/SettingsIcons.theme.css:
--------------------------------------------------------------------------------
1 | /**
2 | * @name SettingsIcons
3 | * @author Saltssaumure, JunkiEDM, DevilBro
4 | * @authorLink https://github.com/Saltssaumure
5 | * @description Adds icons to Discord settings, for use with Vencord plugin ThemeAttributes.
6 | * @license AGPL-3.0-or-later
7 | * @version 1.2
8 | * @invite uy8nKQVatp
9 | * @source https://github.com/MiniDiscordThemes/SettingsIcons
10 | */
11 |
12 | @import url("https://minidiscordthemes.github.io/SettingsIcons/main.min.css");
13 |
14 | /* See https://github.com/MiniDiscordThemes/SettingsIcons#customisation for customisation settings. */
15 | :root {
16 | --settingsicons: show;
17 | --si-size: 18px;
18 | --si-gap: 14px;
19 | }
--------------------------------------------------------------------------------
/.github/workflows/lint.yml:
--------------------------------------------------------------------------------
1 | name: Lint
2 |
3 | on:
4 | push:
5 | branches-ignore:
6 | - deploy
7 | pull_request:
8 |
9 | jobs:
10 | run-linters:
11 | name: Run linters
12 | runs-on: ubuntu-latest
13 |
14 | steps:
15 | - name: Checkout theme
16 | uses: actions/checkout@v4
17 |
18 | - name: Setup node
19 | uses: actions/setup-node@v4
20 | with:
21 | node-version: 18
22 |
23 | - name: Setup pnpm
24 | uses: pnpm/action-setup@v4
25 | with:
26 | version: latest
27 |
28 | - name: Install dependencies
29 | run: pnpm install
30 |
31 | - name: Run linters
32 | run: pnpm run lint
--------------------------------------------------------------------------------
/svg/profilecustomization.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/scss/_data.scss:
--------------------------------------------------------------------------------
1 | @use "sass:string";
2 | @use "./list";
3 |
4 | @function _nospace($string, $sep: " ") {
5 | $words: string.split(string.to-lower-case($string), $sep);
6 | $nospace: "";
7 | @each $word in $words {
8 | @if $word != "&" {
9 | $nospace: $nospace + $word;
10 | }
11 | }
12 | @return $nospace;
13 | }
14 |
15 | $pairs: ();
16 |
17 | @each $id in list.$user {
18 | $pairs: append($pairs, ($id, _nospace($id)));
19 | }
20 |
21 | @each $id in list.$server {
22 | $pairs: append($pairs, (string.to-upper-case($id), _nospace($id, "_")));
23 | }
24 |
25 | @each $id in list.$channel {
26 | $pairs: append($pairs, (string.to-upper-case($id), _nospace($id, "_")));
27 | }
28 |
--------------------------------------------------------------------------------
/svg/delete.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/familycenter.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/overlay.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/auditlog.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/bans.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/subscriptions.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/rolesubscriptions.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/widget.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/language.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/analytics.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/hotspotoptions.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/members.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/vencordsettings.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/vencordplugins.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/activityprivacy.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/merchandise.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.github/workflows/css.yml:
--------------------------------------------------------------------------------
1 | name: Build and deploy CSS
2 |
3 | on:
4 | push:
5 | branches:
6 | - main
7 | - master
8 |
9 | jobs:
10 | build:
11 | name: Build CSS
12 | runs-on: ubuntu-latest
13 |
14 | steps:
15 | - name: Checkout theme
16 | uses: actions/checkout@v4
17 |
18 | - name: Setup node
19 | uses: actions/setup-node@v4
20 | with:
21 | node-version: 18
22 |
23 | - name: Setup pnpm
24 | uses: pnpm/action-setup@v4
25 | with:
26 | version: latest
27 |
28 | - name: Install dependencies
29 | run: pnpm install
30 |
31 | - name: Build CSS
32 | run: pnpm run build:css
33 |
34 | - name: Deploy
35 | uses: peaceiris/actions-gh-pages@v4
36 | with:
37 | github_token: ${{ secrets.GITHUB_TOKEN }}
38 | publish_branch: deploy
39 | publish_dir: ./
--------------------------------------------------------------------------------
/svg/advanced.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/settingsclips.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/rtcspeedtest.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/appearance.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/designsystem.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/appdirectory.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "settingsicons-discord-theme",
3 | "version": "1.2.0",
4 | "description": "Adds icons to Discord settings, for use with Vencord plugin ThemeAttributes.",
5 | "repository": "github:MiniDiscordThemes/SettingsIcons",
6 | "author": "Saltssaumure ",
7 | "contributors": [
8 | "DevilBro (https://mwittrien.github.io/)",
9 | "Saltssaumure ",
10 | "JunkiEDM (https://github.com/JunkiEDM)"
11 | ],
12 | "license": "AGPL-3.0-or-later",
13 | "private": true,
14 | "scripts": {
15 | "dev:vc": "bd-scss dev:vc",
16 | "dev:vt": "bd-scss dev:vt",
17 | "build:css": "bd-scss build && postcss *.min.css -r --use autoprefixer --no-map",
18 | "lint": "prettier ./scss --check",
19 | "lint:fix": "prettier ./scss --write --log-level warn"
20 | },
21 | "browserslist": "Chrome > 122",
22 | "type": "module",
23 | "devDependencies": {
24 | "postcss-cli": "^11.0.0",
25 | "prettier": "^3.2.5",
26 | "salt-bd-scss": "^1.2.2"
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/svg/vencordpatchhelper.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/soundboard.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/hypesquadonline.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/profileeffectspreviewtool.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/questspreviewtool.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/integrations.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/myaccount.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/stickers.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/scss/list/_user.scss:
--------------------------------------------------------------------------------
1 | // User settings
2 |
3 | $user: (
4 | "My Account",
5 | "Games",
6 | "Profile Customization",
7 | "Privacy & Safety",
8 | "Family Center",
9 | "Authorized Apps",
10 | "Sessions",
11 | "Connections",
12 | "Settings Clips",
13 | "Friend Requests",
14 | "Discord Nitro",
15 | "Nitro Server Boost",
16 | "Subscriptions",
17 | "Library Inventory",
18 | "Billing",
19 | "Appearance",
20 | "Accessibility",
21 | "Voice & Video",
22 | "Text & Images",
23 | "Notifications",
24 | "Keybinds",
25 | "Language",
26 | "Windows",
27 | "Streamer Mode",
28 | "RTC Speed Test",
29 | "Advanced",
30 | "Activity Privacy",
31 | "Game Activity",
32 | "Overlay",
33 | "changelog",
34 | "merchandise",
35 | "Hypesquad Online",
36 | "Powermode Settings",
37 | "Experiments",
38 | "Developer Options",
39 | "Hotspot Options",
40 | "Dismissible Content Options",
41 | "StartupTimings",
42 | "Payment Flow Modals",
43 | "Design System",
44 | "Text Playground",
45 | "Text Component",
46 | "Profile Effects Preview Tool",
47 | "Quest Preview Tool",
48 | "logout",
49 | "VencordSettings",
50 | "VencordPlugins",
51 | "VencordThemes",
52 | "VencordUpdater",
53 | "VencordCloud",
54 | "VencordSettingsSync",
55 | "VencordPatchHelper",
56 | "Vesktop"
57 | );
58 |
--------------------------------------------------------------------------------
/svg/permissions.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/partner.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/billing.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/accessibility.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/notifications.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/vencordthemes.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/experiments.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/voicevideo.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/vesktop.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/scss/main.scss:
--------------------------------------------------------------------------------
1 | @use "./data";
2 | @use "./property";
3 |
4 | // Property for each settings tab
5 | @each $id, $nospace in data.$pairs {
6 | @include property.create($nospace);
7 | }
8 | // Fallback
9 | @include property.create("default");
10 |
11 | @property --settingsicons {
12 | syntax: "show | hide";
13 | inherits: false;
14 | initial-value: show;
15 | }
16 | @property --si-size {
17 | syntax: "";
18 | inherits: true;
19 | initial-value: 18px;
20 | }
21 | @property --si-gap {
22 | syntax: "";
23 | inherits: true;
24 | initial-value: 14px;
25 | }
26 |
27 | :root {
28 | container: root;
29 | }
30 |
31 | @container root style(--settingsicons: show) {
32 | .sidebarRegion_c25c6d {
33 | flex-basis: calc(218px + var(--si-size) + var(--si-gap)) !important;
34 | }
35 |
36 | // User settings
37 | .sidebar_c25c6d {
38 | width: calc(218px + var(--si-size) + var(--si-gap)) !important;
39 |
40 | :is(
41 | .item_a0 .icon_f7189e,
42 | .premiumLabel_ae3c77 > svg,
43 | .premiumLabel_ae3c77 img,
44 | .tabBarItemContainer_e7c031 > svg,
45 | .tabBarItemContainer_e7c031 img
46 | ) {
47 | display: none;
48 | }
49 |
50 | // Settings tab
51 | .side_a0 .item_a0 {
52 | display: flex;
53 | align-items: center;
54 |
55 | &::before {
56 | content: "";
57 | flex: 0 0 auto;
58 | width: var(--si-size);
59 | height: var(--si-size);
60 | margin-right: calc(var(--si-size) / 2);
61 | background: currentColor;
62 | z-index: 2;
63 | mask: var(--si-default) center/contain no-repeat;
64 | }
65 |
66 | @each $id, $nospace in data.$pairs {
67 | &[data-tab-id="#{$id}"]::before {
68 | mask: var(--si-#{$nospace}) center/contain no-repeat;
69 | }
70 | }
71 |
72 | > div {
73 | flex: 1 1 auto;
74 | }
75 | }
76 | }
77 | }
78 |
--------------------------------------------------------------------------------
/svg/instantinvites.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/developeroptions.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/connections.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/authorizedapps.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/libraryinventory.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/guildautomod.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | [screenshot]: https://github.com/MiniDiscordThemes/SettingsIcons/assets/8350274/7d68e35b-17c0-40e5-9605-84a4ddbba191
2 |
3 | [css-length]: https://developer.mozilla.org/en-US/docs/Web/CSS/length
4 | [discord]: https://discord.gg/uy8nKQVatp
5 |
6 | [Vencord]: https://github.com/Vendicated/Vencord
7 |
8 | [shield-vc-dl]: https://img.shields.io/github/downloads/MiniDiscordThemes/SettingsIcons/SettingsIcons.theme.css?color=purple&label=Downloads&style=flat-square
9 | [shield-repo-size]: https://img.shields.io/github/repo-size/MiniDiscordThemes/SettingsIcons?label=Repository&style=flat-square "Total size"
10 |
11 | [github]: https://github.com/MiniDiscordThemes/SettingsIcons
12 | [issues]: https://github.com/MiniDiscordThemes/SettingsIcons/issues
13 | [license]: https://github.com/MiniDiscordThemes/SettingsIcons/blob/main/LICENSE
14 | [.theme.css]: https://github.com/MiniDiscordThemes/SettingsIcons/blob/main/SettingsIcons.theme.css
15 |
16 | [release-vc-gh]: https://github.com/MiniDiscordThemes/SettingsIcons/releases/latest/download/SettingsIcons.theme.css "Get latest release"
17 |
18 | # SettingsIcons Discord Theme
19 | [![Vencord GitHub downloads][shield-vc-dl]][release-vc-gh]
20 | [![Total repository size][shield-repo-size]][github]
21 |
22 | ***Adds icons to Discord settings, for use with Vencord plugin ThemeAttributes.***
23 |
24 | ![Screenshot of SettingsIcons applied to Vencord settings][screenshot]
25 |
26 | ## Installation
27 | Click to expand
28 |
29 | ⚠️ This theme is designed for use with [Vencord][Vencord]; other client mods are not supported.
30 |
31 | Enable the `ThemeAttributes` plugin in `Settings` > `Vencord` > `Plugins`.
32 | ### Local
33 | 1. Download `SettingsIcons.theme.css`:
34 | - [GitHub][release-vc-gh]
35 | 2. Place the file in the themes folder:
36 | - `Settings` > `Vencord` > `Themes` > `Local Themes` > `Open Themes Folder`
37 | 3. Click `Load missing Themes` and toggle on the theme card.
38 | ### Online
39 | 1. Paste the link in `Settings` > `Vencord` > `Themes` > `Online Themes`:
40 | - `https://minidiscordthemes.github.io/SettingsIcons/SettingsIcons.theme.css`
41 |
42 |
43 | ## Customisation
44 |
45 | | Variable name | Description | Valid values | Default value |
46 | | ----------------- | ------------------------- | ------------------------- | ------------- |
47 | | `--settingsicons` | Enable SettingsIcons | `show` or `hide` | `show` |
48 | | `--si-size` | Icon size | Any [length][css-length]. | `18px` |
49 | | `--si-gap` | Gap between icon and text | Any [length][css-length]. | `14px` |
50 |
51 | Click to expand
52 |
53 | #### Local
54 | 1. `Open Themes Folder` in `Settings` > `Vencord` > `Themes` > `Local Themes`
55 | 2. Open `SettingsIcons.theme.css` with your favourite text editor.
56 | 3. Edit the variable values and save.
57 | #### Online
58 | 1. `Enable Custom CSS` in `Settings` > `Vencord` > `Vencord` and click `Open QuickCSS File`.
59 | 2. Copy and paste lines 15-20 of [`SettingsIcons.theme.css`][.theme.css].
60 | 3. Edit the variable values.
61 |
62 |
63 | ## License
64 | - Copyright (c) 2021-2023 Mirco Wittrien (original)
65 | - Copyright (c) 2023-2024 MiniDiscordThemes (modifications in this repository)
66 |
67 | This theme is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
68 |
69 | This theme is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the [GNU Affero General Public License][license] for more details.
70 |
71 | ## Credits
72 | [si]: https://github.com/mwittrien/BetterDiscordAddons/blob/master/Themes/_res/SettingsIcons.css
73 | [si-author]: https://github.com/mwittrien
74 |
75 | [ionicons]: https://github.com/ionic-team/ionicons
76 | [ionicons-author]: https://github.com/ionic-team
77 |
78 | - [SettingsIcons][si] by [Mirco Wittrien (DevilBro)][si-author] - GPL-2.0 license
79 | - [Ionicons][ionicons] by [Ionic][ionicons-author] - MIT license
80 |
81 | ## Questions or suggestions?
82 | - Post [an issue][issues] on GitHub.
83 | - Post in `#theme-support` on [my support server][discord].
--------------------------------------------------------------------------------
/svg/powermodesettings.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/svg/discordnitro.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
1 | lockfileVersion: '9.0'
2 |
3 | settings:
4 | autoInstallPeers: true
5 | excludeLinksFromLockfile: false
6 |
7 | importers:
8 |
9 | .:
10 | devDependencies:
11 | postcss-cli:
12 | specifier: ^11.0.0
13 | version: 11.0.0(postcss@8.4.38)
14 | prettier:
15 | specifier: ^3.2.5
16 | version: 3.3.1
17 | salt-bd-scss:
18 | specifier: ^1.2.2
19 | version: 1.2.2
20 |
21 | packages:
22 |
23 | '@nodelib/fs.scandir@2.1.5':
24 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
25 | engines: {node: '>= 8'}
26 |
27 | '@nodelib/fs.stat@2.0.5':
28 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
29 | engines: {node: '>= 8'}
30 |
31 | '@nodelib/fs.walk@1.2.8':
32 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
33 | engines: {node: '>= 8'}
34 |
35 | '@sindresorhus/merge-streams@2.3.0':
36 | resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
37 | engines: {node: '>=18'}
38 |
39 | ansi-regex@5.0.1:
40 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
41 | engines: {node: '>=8'}
42 |
43 | ansi-styles@4.3.0:
44 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
45 | engines: {node: '>=8'}
46 |
47 | anymatch@3.1.3:
48 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
49 | engines: {node: '>= 8'}
50 |
51 | autoprefixer@10.4.19:
52 | resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==}
53 | engines: {node: ^10 || ^12 || >=14}
54 | hasBin: true
55 | peerDependencies:
56 | postcss: ^8.1.0
57 |
58 | binary-extensions@2.3.0:
59 | resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
60 | engines: {node: '>=8'}
61 |
62 | braces@3.0.3:
63 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
64 | engines: {node: '>=8'}
65 |
66 | browserslist@4.23.0:
67 | resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==}
68 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
69 | hasBin: true
70 |
71 | caniuse-lite@1.0.30001629:
72 | resolution: {integrity: sha512-c3dl911slnQhmxUIT4HhYzT7wnBK/XYpGnYLOj4nJBaRiw52Ibe7YxlDaAeRECvA786zCuExhxIUJ2K7nHMrBw==}
73 |
74 | chalk@5.3.0:
75 | resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
76 | engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
77 |
78 | chokidar@3.6.0:
79 | resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
80 | engines: {node: '>= 8.10.0'}
81 |
82 | cliui@8.0.1:
83 | resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
84 | engines: {node: '>=12'}
85 |
86 | color-convert@2.0.1:
87 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
88 | engines: {node: '>=7.0.0'}
89 |
90 | color-name@1.1.4:
91 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
92 |
93 | dependency-graph@0.11.0:
94 | resolution: {integrity: sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==}
95 | engines: {node: '>= 0.6.0'}
96 |
97 | electron-to-chromium@1.4.796:
98 | resolution: {integrity: sha512-NglN/xprcM+SHD2XCli4oC6bWe6kHoytcyLKCWXmRL854F0qhPhaYgUswUsglnPxYaNQIg2uMY4BvaomIf3kLA==}
99 |
100 | emoji-regex@8.0.0:
101 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
102 |
103 | escalade@3.1.2:
104 | resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
105 | engines: {node: '>=6'}
106 |
107 | fast-glob@3.3.2:
108 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
109 | engines: {node: '>=8.6.0'}
110 |
111 | fastq@1.17.1:
112 | resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
113 |
114 | fill-range@7.1.1:
115 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
116 | engines: {node: '>=8'}
117 |
118 | fraction.js@4.3.7:
119 | resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
120 |
121 | fs-extra@11.2.0:
122 | resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
123 | engines: {node: '>=14.14'}
124 |
125 | fsevents@2.3.3:
126 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
127 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
128 | os: [darwin]
129 |
130 | get-caller-file@2.0.5:
131 | resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
132 | engines: {node: 6.* || 8.* || >= 10.*}
133 |
134 | get-stdin@9.0.0:
135 | resolution: {integrity: sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==}
136 | engines: {node: '>=12'}
137 |
138 | glob-parent@5.1.2:
139 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
140 | engines: {node: '>= 6'}
141 |
142 | globby@14.0.1:
143 | resolution: {integrity: sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==}
144 | engines: {node: '>=18'}
145 |
146 | graceful-fs@4.2.11:
147 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
148 |
149 | ignore@5.3.1:
150 | resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
151 | engines: {node: '>= 4'}
152 |
153 | immutable@4.3.6:
154 | resolution: {integrity: sha512-Ju0+lEMyzMVZarkTn/gqRpdqd5dOPaz1mCZ0SH3JV6iFw81PldE/PEB1hWVEA288HPt4WXW8O7AWxB10M+03QQ==}
155 |
156 | is-binary-path@2.1.0:
157 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
158 | engines: {node: '>=8'}
159 |
160 | is-extglob@2.1.1:
161 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
162 | engines: {node: '>=0.10.0'}
163 |
164 | is-fullwidth-code-point@3.0.0:
165 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
166 | engines: {node: '>=8'}
167 |
168 | is-glob@4.0.3:
169 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
170 | engines: {node: '>=0.10.0'}
171 |
172 | is-number@7.0.0:
173 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
174 | engines: {node: '>=0.12.0'}
175 |
176 | jsonfile@6.1.0:
177 | resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
178 |
179 | lilconfig@3.1.1:
180 | resolution: {integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==}
181 | engines: {node: '>=14'}
182 |
183 | merge2@1.4.1:
184 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
185 | engines: {node: '>= 8'}
186 |
187 | micromatch@4.0.7:
188 | resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==}
189 | engines: {node: '>=8.6'}
190 |
191 | mri@1.2.0:
192 | resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
193 | engines: {node: '>=4'}
194 |
195 | nanoid@3.3.7:
196 | resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
197 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
198 | hasBin: true
199 |
200 | node-releases@2.0.14:
201 | resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
202 |
203 | normalize-path@3.0.0:
204 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
205 | engines: {node: '>=0.10.0'}
206 |
207 | normalize-range@0.1.2:
208 | resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
209 | engines: {node: '>=0.10.0'}
210 |
211 | path-type@5.0.0:
212 | resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==}
213 | engines: {node: '>=12'}
214 |
215 | picocolors@1.0.1:
216 | resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
217 |
218 | picomatch@2.3.1:
219 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
220 | engines: {node: '>=8.6'}
221 |
222 | pify@2.3.0:
223 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
224 | engines: {node: '>=0.10.0'}
225 |
226 | postcss-cli@11.0.0:
227 | resolution: {integrity: sha512-xMITAI7M0u1yolVcXJ9XTZiO9aO49mcoKQy6pCDFdMh9kGqhzLVpWxeD/32M/QBmkhcGypZFFOLNLmIW4Pg4RA==}
228 | engines: {node: '>=18'}
229 | hasBin: true
230 | peerDependencies:
231 | postcss: ^8.0.0
232 |
233 | postcss-load-config@5.1.0:
234 | resolution: {integrity: sha512-G5AJ+IX0aD0dygOE0yFZQ/huFFMSNneyfp0e3/bT05a8OfPC5FUoZRPfGijUdGOJNMewJiwzcHJXFafFzeKFVA==}
235 | engines: {node: '>= 18'}
236 | peerDependencies:
237 | jiti: '>=1.21.0'
238 | postcss: '>=8.0.9'
239 | tsx: ^4.8.1
240 | peerDependenciesMeta:
241 | jiti:
242 | optional: true
243 | postcss:
244 | optional: true
245 | tsx:
246 | optional: true
247 |
248 | postcss-reporter@7.1.0:
249 | resolution: {integrity: sha512-/eoEylGWyy6/DOiMP5lmFRdmDKThqgn7D6hP2dXKJI/0rJSO1ADFNngZfDzxL0YAxFvws+Rtpuji1YIHj4mySA==}
250 | engines: {node: '>=10'}
251 | peerDependencies:
252 | postcss: ^8.1.0
253 |
254 | postcss-value-parser@4.2.0:
255 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
256 |
257 | postcss@8.4.38:
258 | resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
259 | engines: {node: ^10 || ^12 || >=14}
260 |
261 | prettier@3.3.1:
262 | resolution: {integrity: sha512-7CAwy5dRsxs8PHXT3twixW9/OEll8MLE0VRPCJyl7CkS6VHGPSlsVaWTiASPTyGyYRyApxlaWTzwUxVNrhcwDg==}
263 | engines: {node: '>=14'}
264 | hasBin: true
265 |
266 | pretty-hrtime@1.0.3:
267 | resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==}
268 | engines: {node: '>= 0.8'}
269 |
270 | queue-microtask@1.2.3:
271 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
272 |
273 | read-cache@1.0.0:
274 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
275 |
276 | readdirp@3.6.0:
277 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
278 | engines: {node: '>=8.10.0'}
279 |
280 | require-directory@2.1.1:
281 | resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
282 | engines: {node: '>=0.10.0'}
283 |
284 | reusify@1.0.4:
285 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
286 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
287 |
288 | run-parallel@1.2.0:
289 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
290 |
291 | sade@1.8.1:
292 | resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
293 | engines: {node: '>=6'}
294 |
295 | salt-bd-scss@1.2.2:
296 | resolution: {integrity: sha512-JL3ZX4cCBnYN+8aB4YuvJ+6SQsjWTrqutyQ0gYRm3zzdMgH8JECz47KYf+EIQNIDk/WjacVPL4g7s8gKhVNNMA==}
297 | hasBin: true
298 |
299 | sass@1.77.4:
300 | resolution: {integrity: sha512-vcF3Ckow6g939GMA4PeU7b2K/9FALXk2KF9J87txdHzXbUF9XRQRwSxcAs/fGaTnJeBFd7UoV22j3lzMLdM0Pw==}
301 | engines: {node: '>=14.0.0'}
302 | hasBin: true
303 |
304 | slash@5.1.0:
305 | resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==}
306 | engines: {node: '>=14.16'}
307 |
308 | source-map-js@1.2.0:
309 | resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
310 | engines: {node: '>=0.10.0'}
311 |
312 | string-width@4.2.3:
313 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
314 | engines: {node: '>=8'}
315 |
316 | strip-ansi@6.0.1:
317 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
318 | engines: {node: '>=8'}
319 |
320 | thenby@1.3.4:
321 | resolution: {integrity: sha512-89Gi5raiWA3QZ4b2ePcEwswC3me9JIg+ToSgtE0JWeCynLnLxNr/f9G+xfo9K+Oj4AFdom8YNJjibIARTJmapQ==}
322 |
323 | to-regex-range@5.0.1:
324 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
325 | engines: {node: '>=8.0'}
326 |
327 | unicorn-magic@0.1.0:
328 | resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==}
329 | engines: {node: '>=18'}
330 |
331 | universalify@2.0.1:
332 | resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
333 | engines: {node: '>= 10.0.0'}
334 |
335 | update-browserslist-db@1.0.16:
336 | resolution: {integrity: sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==}
337 | hasBin: true
338 | peerDependencies:
339 | browserslist: '>= 4.21.0'
340 |
341 | wrap-ansi@7.0.0:
342 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
343 | engines: {node: '>=10'}
344 |
345 | y18n@5.0.8:
346 | resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
347 | engines: {node: '>=10'}
348 |
349 | yaml@2.4.3:
350 | resolution: {integrity: sha512-sntgmxj8o7DE7g/Qi60cqpLBA3HG3STcDA0kO+WfB05jEKhZMbY7umNm2rBpQvsmZ16/lPXCJGW2672dgOUkrg==}
351 | engines: {node: '>= 14'}
352 | hasBin: true
353 |
354 | yargs-parser@21.1.1:
355 | resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
356 | engines: {node: '>=12'}
357 |
358 | yargs@17.7.2:
359 | resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
360 | engines: {node: '>=12'}
361 |
362 | snapshots:
363 |
364 | '@nodelib/fs.scandir@2.1.5':
365 | dependencies:
366 | '@nodelib/fs.stat': 2.0.5
367 | run-parallel: 1.2.0
368 |
369 | '@nodelib/fs.stat@2.0.5': {}
370 |
371 | '@nodelib/fs.walk@1.2.8':
372 | dependencies:
373 | '@nodelib/fs.scandir': 2.1.5
374 | fastq: 1.17.1
375 |
376 | '@sindresorhus/merge-streams@2.3.0': {}
377 |
378 | ansi-regex@5.0.1: {}
379 |
380 | ansi-styles@4.3.0:
381 | dependencies:
382 | color-convert: 2.0.1
383 |
384 | anymatch@3.1.3:
385 | dependencies:
386 | normalize-path: 3.0.0
387 | picomatch: 2.3.1
388 |
389 | autoprefixer@10.4.19(postcss@8.4.38):
390 | dependencies:
391 | browserslist: 4.23.0
392 | caniuse-lite: 1.0.30001629
393 | fraction.js: 4.3.7
394 | normalize-range: 0.1.2
395 | picocolors: 1.0.1
396 | postcss: 8.4.38
397 | postcss-value-parser: 4.2.0
398 |
399 | binary-extensions@2.3.0: {}
400 |
401 | braces@3.0.3:
402 | dependencies:
403 | fill-range: 7.1.1
404 |
405 | browserslist@4.23.0:
406 | dependencies:
407 | caniuse-lite: 1.0.30001629
408 | electron-to-chromium: 1.4.796
409 | node-releases: 2.0.14
410 | update-browserslist-db: 1.0.16(browserslist@4.23.0)
411 |
412 | caniuse-lite@1.0.30001629: {}
413 |
414 | chalk@5.3.0: {}
415 |
416 | chokidar@3.6.0:
417 | dependencies:
418 | anymatch: 3.1.3
419 | braces: 3.0.3
420 | glob-parent: 5.1.2
421 | is-binary-path: 2.1.0
422 | is-glob: 4.0.3
423 | normalize-path: 3.0.0
424 | readdirp: 3.6.0
425 | optionalDependencies:
426 | fsevents: 2.3.3
427 |
428 | cliui@8.0.1:
429 | dependencies:
430 | string-width: 4.2.3
431 | strip-ansi: 6.0.1
432 | wrap-ansi: 7.0.0
433 |
434 | color-convert@2.0.1:
435 | dependencies:
436 | color-name: 1.1.4
437 |
438 | color-name@1.1.4: {}
439 |
440 | dependency-graph@0.11.0: {}
441 |
442 | electron-to-chromium@1.4.796: {}
443 |
444 | emoji-regex@8.0.0: {}
445 |
446 | escalade@3.1.2: {}
447 |
448 | fast-glob@3.3.2:
449 | dependencies:
450 | '@nodelib/fs.stat': 2.0.5
451 | '@nodelib/fs.walk': 1.2.8
452 | glob-parent: 5.1.2
453 | merge2: 1.4.1
454 | micromatch: 4.0.7
455 |
456 | fastq@1.17.1:
457 | dependencies:
458 | reusify: 1.0.4
459 |
460 | fill-range@7.1.1:
461 | dependencies:
462 | to-regex-range: 5.0.1
463 |
464 | fraction.js@4.3.7: {}
465 |
466 | fs-extra@11.2.0:
467 | dependencies:
468 | graceful-fs: 4.2.11
469 | jsonfile: 6.1.0
470 | universalify: 2.0.1
471 |
472 | fsevents@2.3.3:
473 | optional: true
474 |
475 | get-caller-file@2.0.5: {}
476 |
477 | get-stdin@9.0.0: {}
478 |
479 | glob-parent@5.1.2:
480 | dependencies:
481 | is-glob: 4.0.3
482 |
483 | globby@14.0.1:
484 | dependencies:
485 | '@sindresorhus/merge-streams': 2.3.0
486 | fast-glob: 3.3.2
487 | ignore: 5.3.1
488 | path-type: 5.0.0
489 | slash: 5.1.0
490 | unicorn-magic: 0.1.0
491 |
492 | graceful-fs@4.2.11: {}
493 |
494 | ignore@5.3.1: {}
495 |
496 | immutable@4.3.6: {}
497 |
498 | is-binary-path@2.1.0:
499 | dependencies:
500 | binary-extensions: 2.3.0
501 |
502 | is-extglob@2.1.1: {}
503 |
504 | is-fullwidth-code-point@3.0.0: {}
505 |
506 | is-glob@4.0.3:
507 | dependencies:
508 | is-extglob: 2.1.1
509 |
510 | is-number@7.0.0: {}
511 |
512 | jsonfile@6.1.0:
513 | dependencies:
514 | universalify: 2.0.1
515 | optionalDependencies:
516 | graceful-fs: 4.2.11
517 |
518 | lilconfig@3.1.1: {}
519 |
520 | merge2@1.4.1: {}
521 |
522 | micromatch@4.0.7:
523 | dependencies:
524 | braces: 3.0.3
525 | picomatch: 2.3.1
526 |
527 | mri@1.2.0: {}
528 |
529 | nanoid@3.3.7: {}
530 |
531 | node-releases@2.0.14: {}
532 |
533 | normalize-path@3.0.0: {}
534 |
535 | normalize-range@0.1.2: {}
536 |
537 | path-type@5.0.0: {}
538 |
539 | picocolors@1.0.1: {}
540 |
541 | picomatch@2.3.1: {}
542 |
543 | pify@2.3.0: {}
544 |
545 | postcss-cli@11.0.0(postcss@8.4.38):
546 | dependencies:
547 | chokidar: 3.6.0
548 | dependency-graph: 0.11.0
549 | fs-extra: 11.2.0
550 | get-stdin: 9.0.0
551 | globby: 14.0.1
552 | picocolors: 1.0.1
553 | postcss: 8.4.38
554 | postcss-load-config: 5.1.0(postcss@8.4.38)
555 | postcss-reporter: 7.1.0(postcss@8.4.38)
556 | pretty-hrtime: 1.0.3
557 | read-cache: 1.0.0
558 | slash: 5.1.0
559 | yargs: 17.7.2
560 | transitivePeerDependencies:
561 | - jiti
562 | - tsx
563 |
564 | postcss-load-config@5.1.0(postcss@8.4.38):
565 | dependencies:
566 | lilconfig: 3.1.1
567 | yaml: 2.4.3
568 | optionalDependencies:
569 | postcss: 8.4.38
570 |
571 | postcss-reporter@7.1.0(postcss@8.4.38):
572 | dependencies:
573 | picocolors: 1.0.1
574 | postcss: 8.4.38
575 | thenby: 1.3.4
576 |
577 | postcss-value-parser@4.2.0: {}
578 |
579 | postcss@8.4.38:
580 | dependencies:
581 | nanoid: 3.3.7
582 | picocolors: 1.0.1
583 | source-map-js: 1.2.0
584 |
585 | prettier@3.3.1: {}
586 |
587 | pretty-hrtime@1.0.3: {}
588 |
589 | queue-microtask@1.2.3: {}
590 |
591 | read-cache@1.0.0:
592 | dependencies:
593 | pify: 2.3.0
594 |
595 | readdirp@3.6.0:
596 | dependencies:
597 | picomatch: 2.3.1
598 |
599 | require-directory@2.1.1: {}
600 |
601 | reusify@1.0.4: {}
602 |
603 | run-parallel@1.2.0:
604 | dependencies:
605 | queue-microtask: 1.2.3
606 |
607 | sade@1.8.1:
608 | dependencies:
609 | mri: 1.2.0
610 |
611 | salt-bd-scss@1.2.2:
612 | dependencies:
613 | autoprefixer: 10.4.19(postcss@8.4.38)
614 | chalk: 5.3.0
615 | chokidar: 3.6.0
616 | postcss: 8.4.38
617 | sade: 1.8.1
618 | sass: 1.77.4
619 |
620 | sass@1.77.4:
621 | dependencies:
622 | chokidar: 3.6.0
623 | immutable: 4.3.6
624 | source-map-js: 1.2.0
625 |
626 | slash@5.1.0: {}
627 |
628 | source-map-js@1.2.0: {}
629 |
630 | string-width@4.2.3:
631 | dependencies:
632 | emoji-regex: 8.0.0
633 | is-fullwidth-code-point: 3.0.0
634 | strip-ansi: 6.0.1
635 |
636 | strip-ansi@6.0.1:
637 | dependencies:
638 | ansi-regex: 5.0.1
639 |
640 | thenby@1.3.4: {}
641 |
642 | to-regex-range@5.0.1:
643 | dependencies:
644 | is-number: 7.0.0
645 |
646 | unicorn-magic@0.1.0: {}
647 |
648 | universalify@2.0.1: {}
649 |
650 | update-browserslist-db@1.0.16(browserslist@4.23.0):
651 | dependencies:
652 | browserslist: 4.23.0
653 | escalade: 3.1.2
654 | picocolors: 1.0.1
655 |
656 | wrap-ansi@7.0.0:
657 | dependencies:
658 | ansi-styles: 4.3.0
659 | string-width: 4.2.3
660 | strip-ansi: 6.0.1
661 |
662 | y18n@5.0.8: {}
663 |
664 | yaml@2.4.3: {}
665 |
666 | yargs-parser@21.1.1: {}
667 |
668 | yargs@17.7.2:
669 | dependencies:
670 | cliui: 8.0.1
671 | escalade: 3.1.2
672 | get-caller-file: 2.0.5
673 | require-directory: 2.1.1
674 | string-width: 4.2.3
675 | y18n: 5.0.8
676 | yargs-parser: 21.1.1
677 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU AFFERO GENERAL PUBLIC LICENSE
2 | Version 3, 19 November 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 Affero General Public License is a free, copyleft license for
11 | software and other kinds of works, specifically designed to ensure
12 | cooperation with the community in the case of network server software.
13 |
14 | The licenses for most software and other practical works are designed
15 | to take away your freedom to share and change the works. By contrast,
16 | our General Public Licenses are intended to guarantee your freedom to
17 | share and change all versions of a program--to make sure it remains free
18 | software for all its users.
19 |
20 | When we speak of free software, we are referring to freedom, not
21 | price. Our General Public Licenses are designed to make sure that you
22 | have the freedom to distribute copies of free software (and charge for
23 | them if you wish), that you receive source code or can get it if you
24 | want it, that you can change the software or use pieces of it in new
25 | free programs, and that you know you can do these things.
26 |
27 | Developers that use our General Public Licenses protect your rights
28 | with two steps: (1) assert copyright on the software, and (2) offer
29 | you this License which gives you legal permission to copy, distribute
30 | and/or modify the software.
31 |
32 | A secondary benefit of defending all users' freedom is that
33 | improvements made in alternate versions of the program, if they
34 | receive widespread use, become available for other developers to
35 | incorporate. Many developers of free software are heartened and
36 | encouraged by the resulting cooperation. However, in the case of
37 | software used on network servers, this result may fail to come about.
38 | The GNU General Public License permits making a modified version and
39 | letting the public access it on a server without ever releasing its
40 | source code to the public.
41 |
42 | The GNU Affero General Public License is designed specifically to
43 | ensure that, in such cases, the modified source code becomes available
44 | to the community. It requires the operator of a network server to
45 | provide the source code of the modified version running there to the
46 | users of that server. Therefore, public use of a modified version, on
47 | a publicly accessible server, gives the public access to the source
48 | code of the modified version.
49 |
50 | An older license, called the Affero General Public License and
51 | published by Affero, was designed to accomplish similar goals. This is
52 | a different license, not a version of the Affero GPL, but Affero has
53 | released a new version of the Affero GPL which permits relicensing under
54 | this license.
55 |
56 | The precise terms and conditions for copying, distribution and
57 | modification follow.
58 |
59 | TERMS AND CONDITIONS
60 |
61 | 0. Definitions.
62 |
63 | "This License" refers to version 3 of the GNU Affero General Public License.
64 |
65 | "Copyright" also means copyright-like laws that apply to other kinds of
66 | works, such as semiconductor masks.
67 |
68 | "The Program" refers to any copyrightable work licensed under this
69 | License. Each licensee is addressed as "you". "Licensees" and
70 | "recipients" may be individuals or organizations.
71 |
72 | To "modify" a work means to copy from or adapt all or part of the work
73 | in a fashion requiring copyright permission, other than the making of an
74 | exact copy. The resulting work is called a "modified version" of the
75 | earlier work or a work "based on" the earlier work.
76 |
77 | A "covered work" means either the unmodified Program or a work based
78 | on the Program.
79 |
80 | To "propagate" a work means to do anything with it that, without
81 | permission, would make you directly or secondarily liable for
82 | infringement under applicable copyright law, except executing it on a
83 | computer or modifying a private copy. Propagation includes copying,
84 | distribution (with or without modification), making available to the
85 | public, and in some countries other activities as well.
86 |
87 | To "convey" a work means any kind of propagation that enables other
88 | parties to make or receive copies. Mere interaction with a user through
89 | a computer network, with no transfer of a copy, is not conveying.
90 |
91 | An interactive user interface displays "Appropriate Legal Notices"
92 | to the extent that it includes a convenient and prominently visible
93 | feature that (1) displays an appropriate copyright notice, and (2)
94 | tells the user that there is no warranty for the work (except to the
95 | extent that warranties are provided), that licensees may convey the
96 | work under this License, and how to view a copy of this License. If
97 | the interface presents a list of user commands or options, such as a
98 | menu, a prominent item in the list meets this criterion.
99 |
100 | 1. Source Code.
101 |
102 | The "source code" for a work means the preferred form of the work
103 | for making modifications to it. "Object code" means any non-source
104 | form of a work.
105 |
106 | A "Standard Interface" means an interface that either is an official
107 | standard defined by a recognized standards body, or, in the case of
108 | interfaces specified for a particular programming language, one that
109 | is widely used among developers working in that language.
110 |
111 | The "System Libraries" of an executable work include anything, other
112 | than the work as a whole, that (a) is included in the normal form of
113 | packaging a Major Component, but which is not part of that Major
114 | Component, and (b) serves only to enable use of the work with that
115 | Major Component, or to implement a Standard Interface for which an
116 | implementation is available to the public in source code form. A
117 | "Major Component", in this context, means a major essential component
118 | (kernel, window system, and so on) of the specific operating system
119 | (if any) on which the executable work runs, or a compiler used to
120 | produce the work, or an object code interpreter used to run it.
121 |
122 | The "Corresponding Source" for a work in object code form means all
123 | the source code needed to generate, install, and (for an executable
124 | work) run the object code and to modify the work, including scripts to
125 | control those activities. However, it does not include the work's
126 | System Libraries, or general-purpose tools or generally available free
127 | programs which are used unmodified in performing those activities but
128 | which are not part of the work. For example, Corresponding Source
129 | includes interface definition files associated with source files for
130 | the work, and the source code for shared libraries and dynamically
131 | linked subprograms that the work is specifically designed to require,
132 | such as by intimate data communication or control flow between those
133 | subprograms and other parts of the work.
134 |
135 | The Corresponding Source need not include anything that users
136 | can regenerate automatically from other parts of the Corresponding
137 | Source.
138 |
139 | The Corresponding Source for a work in source code form is that
140 | same work.
141 |
142 | 2. Basic Permissions.
143 |
144 | All rights granted under this License are granted for the term of
145 | copyright on the Program, and are irrevocable provided the stated
146 | conditions are met. This License explicitly affirms your unlimited
147 | permission to run the unmodified Program. The output from running a
148 | covered work is covered by this License only if the output, given its
149 | content, constitutes a covered work. This License acknowledges your
150 | rights of fair use or other equivalent, as provided by copyright law.
151 |
152 | You may make, run and propagate covered works that you do not
153 | convey, without conditions so long as your license otherwise remains
154 | in force. You may convey covered works to others for the sole purpose
155 | of having them make modifications exclusively for you, or provide you
156 | with facilities for running those works, provided that you comply with
157 | the terms of this License in conveying all material for which you do
158 | not control copyright. Those thus making or running the covered works
159 | for you must do so exclusively on your behalf, under your direction
160 | and control, on terms that prohibit them from making any copies of
161 | your copyrighted material outside their relationship with you.
162 |
163 | Conveying under any other circumstances is permitted solely under
164 | the conditions stated below. Sublicensing is not allowed; section 10
165 | makes it unnecessary.
166 |
167 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
168 |
169 | No covered work shall be deemed part of an effective technological
170 | measure under any applicable law fulfilling obligations under article
171 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
172 | similar laws prohibiting or restricting circumvention of such
173 | measures.
174 |
175 | When you convey a covered work, you waive any legal power to forbid
176 | circumvention of technological measures to the extent such circumvention
177 | is effected by exercising rights under this License with respect to
178 | the covered work, and you disclaim any intention to limit operation or
179 | modification of the work as a means of enforcing, against the work's
180 | users, your or third parties' legal rights to forbid circumvention of
181 | technological measures.
182 |
183 | 4. Conveying Verbatim Copies.
184 |
185 | You may convey verbatim copies of the Program's source code as you
186 | receive it, in any medium, provided that you conspicuously and
187 | appropriately publish on each copy an appropriate copyright notice;
188 | keep intact all notices stating that this License and any
189 | non-permissive terms added in accord with section 7 apply to the code;
190 | keep intact all notices of the absence of any warranty; and give all
191 | recipients a copy of this License along with the Program.
192 |
193 | You may charge any price or no price for each copy that you convey,
194 | and you may offer support or warranty protection for a fee.
195 |
196 | 5. Conveying Modified Source Versions.
197 |
198 | You may convey a work based on the Program, or the modifications to
199 | produce it from the Program, in the form of source code under the
200 | terms of section 4, provided that you also meet all of these conditions:
201 |
202 | a) The work must carry prominent notices stating that you modified
203 | it, and giving a relevant date.
204 |
205 | b) The work must carry prominent notices stating that it is
206 | released under this License and any conditions added under section
207 | 7. This requirement modifies the requirement in section 4 to
208 | "keep intact all notices".
209 |
210 | c) You must license the entire work, as a whole, under this
211 | License to anyone who comes into possession of a copy. This
212 | License will therefore apply, along with any applicable section 7
213 | additional terms, to the whole of the work, and all its parts,
214 | regardless of how they are packaged. This License gives no
215 | permission to license the work in any other way, but it does not
216 | invalidate such permission if you have separately received it.
217 |
218 | d) If the work has interactive user interfaces, each must display
219 | Appropriate Legal Notices; however, if the Program has interactive
220 | interfaces that do not display Appropriate Legal Notices, your
221 | work need not make them do so.
222 |
223 | A compilation of a covered work with other separate and independent
224 | works, which are not by their nature extensions of the covered work,
225 | and which are not combined with it such as to form a larger program,
226 | in or on a volume of a storage or distribution medium, is called an
227 | "aggregate" if the compilation and its resulting copyright are not
228 | used to limit the access or legal rights of the compilation's users
229 | beyond what the individual works permit. Inclusion of a covered work
230 | in an aggregate does not cause this License to apply to the other
231 | parts of the aggregate.
232 |
233 | 6. Conveying Non-Source Forms.
234 |
235 | You may convey a covered work in object code form under the terms
236 | of sections 4 and 5, provided that you also convey the
237 | machine-readable Corresponding Source under the terms of this License,
238 | in one of these ways:
239 |
240 | a) Convey the object code in, or embodied in, a physical product
241 | (including a physical distribution medium), accompanied by the
242 | Corresponding Source fixed on a durable physical medium
243 | customarily used for software interchange.
244 |
245 | b) Convey the object code in, or embodied in, a physical product
246 | (including a physical distribution medium), accompanied by a
247 | written offer, valid for at least three years and valid for as
248 | long as you offer spare parts or customer support for that product
249 | model, to give anyone who possesses the object code either (1) a
250 | copy of the Corresponding Source for all the software in the
251 | product that is covered by this License, on a durable physical
252 | medium customarily used for software interchange, for a price no
253 | more than your reasonable cost of physically performing this
254 | conveying of source, or (2) access to copy the
255 | Corresponding Source from a network server at no charge.
256 |
257 | c) Convey individual copies of the object code with a copy of the
258 | written offer to provide the Corresponding Source. This
259 | alternative is allowed only occasionally and noncommercially, and
260 | only if you received the object code with such an offer, in accord
261 | with subsection 6b.
262 |
263 | d) Convey the object code by offering access from a designated
264 | place (gratis or for a charge), and offer equivalent access to the
265 | Corresponding Source in the same way through the same place at no
266 | further charge. You need not require recipients to copy the
267 | Corresponding Source along with the object code. If the place to
268 | copy the object code is a network server, the Corresponding Source
269 | may be on a different server (operated by you or a third party)
270 | that supports equivalent copying facilities, provided you maintain
271 | clear directions next to the object code saying where to find the
272 | Corresponding Source. Regardless of what server hosts the
273 | Corresponding Source, you remain obligated to ensure that it is
274 | available for as long as needed to satisfy these requirements.
275 |
276 | e) Convey the object code using peer-to-peer transmission, provided
277 | you inform other peers where the object code and Corresponding
278 | Source of the work are being offered to the general public at no
279 | charge under subsection 6d.
280 |
281 | A separable portion of the object code, whose source code is excluded
282 | from the Corresponding Source as a System Library, need not be
283 | included in conveying the object code work.
284 |
285 | A "User Product" is either (1) a "consumer product", which means any
286 | tangible personal property which is normally used for personal, family,
287 | or household purposes, or (2) anything designed or sold for incorporation
288 | into a dwelling. In determining whether a product is a consumer product,
289 | doubtful cases shall be resolved in favor of coverage. For a particular
290 | product received by a particular user, "normally used" refers to a
291 | typical or common use of that class of product, regardless of the status
292 | of the particular user or of the way in which the particular user
293 | actually uses, or expects or is expected to use, the product. A product
294 | is a consumer product regardless of whether the product has substantial
295 | commercial, industrial or non-consumer uses, unless such uses represent
296 | the only significant mode of use of the product.
297 |
298 | "Installation Information" for a User Product means any methods,
299 | procedures, authorization keys, or other information required to install
300 | and execute modified versions of a covered work in that User Product from
301 | a modified version of its Corresponding Source. The information must
302 | suffice to ensure that the continued functioning of the modified object
303 | code is in no case prevented or interfered with solely because
304 | modification has been made.
305 |
306 | If you convey an object code work under this section in, or with, or
307 | specifically for use in, a User Product, and the conveying occurs as
308 | part of a transaction in which the right of possession and use of the
309 | User Product is transferred to the recipient in perpetuity or for a
310 | fixed term (regardless of how the transaction is characterized), the
311 | Corresponding Source conveyed under this section must be accompanied
312 | by the Installation Information. But this requirement does not apply
313 | if neither you nor any third party retains the ability to install
314 | modified object code on the User Product (for example, the work has
315 | been installed in ROM).
316 |
317 | The requirement to provide Installation Information does not include a
318 | requirement to continue to provide support service, warranty, or updates
319 | for a work that has been modified or installed by the recipient, or for
320 | the User Product in which it has been modified or installed. Access to a
321 | network may be denied when the modification itself materially and
322 | adversely affects the operation of the network or violates the rules and
323 | protocols for communication across the network.
324 |
325 | Corresponding Source conveyed, and Installation Information provided,
326 | in accord with this section must be in a format that is publicly
327 | documented (and with an implementation available to the public in
328 | source code form), and must require no special password or key for
329 | unpacking, reading or copying.
330 |
331 | 7. Additional Terms.
332 |
333 | "Additional permissions" are terms that supplement the terms of this
334 | License by making exceptions from one or more of its conditions.
335 | Additional permissions that are applicable to the entire Program shall
336 | be treated as though they were included in this License, to the extent
337 | that they are valid under applicable law. If additional permissions
338 | apply only to part of the Program, that part may be used separately
339 | under those permissions, but the entire Program remains governed by
340 | this License without regard to the additional permissions.
341 |
342 | When you convey a copy of a covered work, you may at your option
343 | remove any additional permissions from that copy, or from any part of
344 | it. (Additional permissions may be written to require their own
345 | removal in certain cases when you modify the work.) You may place
346 | additional permissions on material, added by you to a covered work,
347 | for which you have or can give appropriate copyright permission.
348 |
349 | Notwithstanding any other provision of this License, for material you
350 | add to a covered work, you may (if authorized by the copyright holders of
351 | that material) supplement the terms of this License with terms:
352 |
353 | a) Disclaiming warranty or limiting liability differently from the
354 | terms of sections 15 and 16 of this License; or
355 |
356 | b) Requiring preservation of specified reasonable legal notices or
357 | author attributions in that material or in the Appropriate Legal
358 | Notices displayed by works containing it; or
359 |
360 | c) Prohibiting misrepresentation of the origin of that material, or
361 | requiring that modified versions of such material be marked in
362 | reasonable ways as different from the original version; or
363 |
364 | d) Limiting the use for publicity purposes of names of licensors or
365 | authors of the material; or
366 |
367 | e) Declining to grant rights under trademark law for use of some
368 | trade names, trademarks, or service marks; or
369 |
370 | f) Requiring indemnification of licensors and authors of that
371 | material by anyone who conveys the material (or modified versions of
372 | it) with contractual assumptions of liability to the recipient, for
373 | any liability that these contractual assumptions directly impose on
374 | those licensors and authors.
375 |
376 | All other non-permissive additional terms are considered "further
377 | restrictions" within the meaning of section 10. If the Program as you
378 | received it, or any part of it, contains a notice stating that it is
379 | governed by this License along with a term that is a further
380 | restriction, you may remove that term. If a license document contains
381 | a further restriction but permits relicensing or conveying under this
382 | License, you may add to a covered work material governed by the terms
383 | of that license document, provided that the further restriction does
384 | not survive such relicensing or conveying.
385 |
386 | If you add terms to a covered work in accord with this section, you
387 | must place, in the relevant source files, a statement of the
388 | additional terms that apply to those files, or a notice indicating
389 | where to find the applicable terms.
390 |
391 | Additional terms, permissive or non-permissive, may be stated in the
392 | form of a separately written license, or stated as exceptions;
393 | the above requirements apply either way.
394 |
395 | 8. Termination.
396 |
397 | You may not propagate or modify a covered work except as expressly
398 | provided under this License. Any attempt otherwise to propagate or
399 | modify it is void, and will automatically terminate your rights under
400 | this License (including any patent licenses granted under the third
401 | paragraph of section 11).
402 |
403 | However, if you cease all violation of this License, then your
404 | license from a particular copyright holder is reinstated (a)
405 | provisionally, unless and until the copyright holder explicitly and
406 | finally terminates your license, and (b) permanently, if the copyright
407 | holder fails to notify you of the violation by some reasonable means
408 | prior to 60 days after the cessation.
409 |
410 | Moreover, your license from a particular copyright holder is
411 | reinstated permanently if the copyright holder notifies you of the
412 | violation by some reasonable means, this is the first time you have
413 | received notice of violation of this License (for any work) from that
414 | copyright holder, and you cure the violation prior to 30 days after
415 | your receipt of the notice.
416 |
417 | Termination of your rights under this section does not terminate the
418 | licenses of parties who have received copies or rights from you under
419 | this License. If your rights have been terminated and not permanently
420 | reinstated, you do not qualify to receive new licenses for the same
421 | material under section 10.
422 |
423 | 9. Acceptance Not Required for Having Copies.
424 |
425 | You are not required to accept this License in order to receive or
426 | run a copy of the Program. Ancillary propagation of a covered work
427 | occurring solely as a consequence of using peer-to-peer transmission
428 | to receive a copy likewise does not require acceptance. However,
429 | nothing other than this License grants you permission to propagate or
430 | modify any covered work. These actions infringe copyright if you do
431 | not accept this License. Therefore, by modifying or propagating a
432 | covered work, you indicate your acceptance of this License to do so.
433 |
434 | 10. Automatic Licensing of Downstream Recipients.
435 |
436 | Each time you convey a covered work, the recipient automatically
437 | receives a license from the original licensors, to run, modify and
438 | propagate that work, subject to this License. You are not responsible
439 | for enforcing compliance by third parties with this License.
440 |
441 | An "entity transaction" is a transaction transferring control of an
442 | organization, or substantially all assets of one, or subdividing an
443 | organization, or merging organizations. If propagation of a covered
444 | work results from an entity transaction, each party to that
445 | transaction who receives a copy of the work also receives whatever
446 | licenses to the work the party's predecessor in interest had or could
447 | give under the previous paragraph, plus a right to possession of the
448 | Corresponding Source of the work from the predecessor in interest, if
449 | the predecessor has it or can get it with reasonable efforts.
450 |
451 | You may not impose any further restrictions on the exercise of the
452 | rights granted or affirmed under this License. For example, you may
453 | not impose a license fee, royalty, or other charge for exercise of
454 | rights granted under this License, and you may not initiate litigation
455 | (including a cross-claim or counterclaim in a lawsuit) alleging that
456 | any patent claim is infringed by making, using, selling, offering for
457 | sale, or importing the Program or any portion of it.
458 |
459 | 11. Patents.
460 |
461 | A "contributor" is a copyright holder who authorizes use under this
462 | License of the Program or a work on which the Program is based. The
463 | work thus licensed is called the contributor's "contributor version".
464 |
465 | A contributor's "essential patent claims" are all patent claims
466 | owned or controlled by the contributor, whether already acquired or
467 | hereafter acquired, that would be infringed by some manner, permitted
468 | by this License, of making, using, or selling its contributor version,
469 | but do not include claims that would be infringed only as a
470 | consequence of further modification of the contributor version. For
471 | purposes of this definition, "control" includes the right to grant
472 | patent sublicenses in a manner consistent with the requirements of
473 | this License.
474 |
475 | Each contributor grants you a non-exclusive, worldwide, royalty-free
476 | patent license under the contributor's essential patent claims, to
477 | make, use, sell, offer for sale, import and otherwise run, modify and
478 | propagate the contents of its contributor version.
479 |
480 | In the following three paragraphs, a "patent license" is any express
481 | agreement or commitment, however denominated, not to enforce a patent
482 | (such as an express permission to practice a patent or covenant not to
483 | sue for patent infringement). To "grant" such a patent license to a
484 | party means to make such an agreement or commitment not to enforce a
485 | patent against the party.
486 |
487 | If you convey a covered work, knowingly relying on a patent license,
488 | and the Corresponding Source of the work is not available for anyone
489 | to copy, free of charge and under the terms of this License, through a
490 | publicly available network server or other readily accessible means,
491 | then you must either (1) cause the Corresponding Source to be so
492 | available, or (2) arrange to deprive yourself of the benefit of the
493 | patent license for this particular work, or (3) arrange, in a manner
494 | consistent with the requirements of this License, to extend the patent
495 | license to downstream recipients. "Knowingly relying" means you have
496 | actual knowledge that, but for the patent license, your conveying the
497 | covered work in a country, or your recipient's use of the covered work
498 | in a country, would infringe one or more identifiable patents in that
499 | country that you have reason to believe are valid.
500 |
501 | If, pursuant to or in connection with a single transaction or
502 | arrangement, you convey, or propagate by procuring conveyance of, a
503 | covered work, and grant a patent license to some of the parties
504 | receiving the covered work authorizing them to use, propagate, modify
505 | or convey a specific copy of the covered work, then the patent license
506 | you grant is automatically extended to all recipients of the covered
507 | work and works based on it.
508 |
509 | A patent license is "discriminatory" if it does not include within
510 | the scope of its coverage, prohibits the exercise of, or is
511 | conditioned on the non-exercise of one or more of the rights that are
512 | specifically granted under this License. You may not convey a covered
513 | work if you are a party to an arrangement with a third party that is
514 | in the business of distributing software, under which you make payment
515 | to the third party based on the extent of your activity of conveying
516 | the work, and under which the third party grants, to any of the
517 | parties who would receive the covered work from you, a discriminatory
518 | patent license (a) in connection with copies of the covered work
519 | conveyed by you (or copies made from those copies), or (b) primarily
520 | for and in connection with specific products or compilations that
521 | contain the covered work, unless you entered into that arrangement,
522 | or that patent license was granted, prior to 28 March 2007.
523 |
524 | Nothing in this License shall be construed as excluding or limiting
525 | any implied license or other defenses to infringement that may
526 | otherwise be available to you under applicable patent law.
527 |
528 | 12. No Surrender of Others' Freedom.
529 |
530 | If conditions are imposed on you (whether by court order, agreement or
531 | otherwise) that contradict the conditions of this License, they do not
532 | excuse you from the conditions of this License. If you cannot convey a
533 | covered work so as to satisfy simultaneously your obligations under this
534 | License and any other pertinent obligations, then as a consequence you may
535 | not convey it at all. For example, if you agree to terms that obligate you
536 | to collect a royalty for further conveying from those to whom you convey
537 | the Program, the only way you could satisfy both those terms and this
538 | License would be to refrain entirely from conveying the Program.
539 |
540 | 13. Remote Network Interaction; Use with the GNU General Public License.
541 |
542 | Notwithstanding any other provision of this License, if you modify the
543 | Program, your modified version must prominently offer all users
544 | interacting with it remotely through a computer network (if your version
545 | supports such interaction) an opportunity to receive the Corresponding
546 | Source of your version by providing access to the Corresponding Source
547 | from a network server at no charge, through some standard or customary
548 | means of facilitating copying of software. This Corresponding Source
549 | shall include the Corresponding Source for any work covered by version 3
550 | of the GNU General Public License that is incorporated pursuant to the
551 | following paragraph.
552 |
553 | Notwithstanding any other provision of this License, you have
554 | permission to link or combine any covered work with a work licensed
555 | under version 3 of the GNU General Public License into a single
556 | combined work, and to convey the resulting work. The terms of this
557 | License will continue to apply to the part which is the covered work,
558 | but the work with which it is combined will remain governed by version
559 | 3 of the GNU General Public License.
560 |
561 | 14. Revised Versions of this License.
562 |
563 | The Free Software Foundation may publish revised and/or new versions of
564 | the GNU Affero General Public License from time to time. Such new versions
565 | will be similar in spirit to the present version, but may differ in detail to
566 | address new problems or concerns.
567 |
568 | Each version is given a distinguishing version number. If the
569 | Program specifies that a certain numbered version of the GNU Affero General
570 | Public License "or any later version" applies to it, you have the
571 | option of following the terms and conditions either of that numbered
572 | version or of any later version published by the Free Software
573 | Foundation. If the Program does not specify a version number of the
574 | GNU Affero General Public License, you may choose any version ever published
575 | by the Free Software Foundation.
576 |
577 | If the Program specifies that a proxy can decide which future
578 | versions of the GNU Affero General Public License can be used, that proxy's
579 | public statement of acceptance of a version permanently authorizes you
580 | to choose that version for the Program.
581 |
582 | Later license versions may give you additional or different
583 | permissions. However, no additional obligations are imposed on any
584 | author or copyright holder as a result of your choosing to follow a
585 | later version.
586 |
587 | 15. Disclaimer of Warranty.
588 |
589 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
590 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
591 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
592 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
593 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
594 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
595 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
596 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
597 |
598 | 16. Limitation of Liability.
599 |
600 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
601 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
602 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
603 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
604 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
605 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
606 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
607 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
608 | SUCH DAMAGES.
609 |
610 | 17. Interpretation of Sections 15 and 16.
611 |
612 | If the disclaimer of warranty and limitation of liability provided
613 | above cannot be given local legal effect according to their terms,
614 | reviewing courts shall apply local law that most closely approximates
615 | an absolute waiver of all civil liability in connection with the
616 | Program, unless a warranty or assumption of liability accompanies a
617 | copy of the Program in return for a fee.
618 |
619 | END OF TERMS AND CONDITIONS
620 |
621 | How to Apply These Terms to Your New Programs
622 |
623 | If you develop a new program, and you want it to be of the greatest
624 | possible use to the public, the best way to achieve this is to make it
625 | free software which everyone can redistribute and change under these terms.
626 |
627 | To do so, attach the following notices to the program. It is safest
628 | to attach them to the start of each source file to most effectively
629 | state the exclusion of warranty; and each file should have at least
630 | the "copyright" line and a pointer to where the full notice is found.
631 |
632 |
633 | Copyright (C)
634 |
635 | This program is free software: you can redistribute it and/or modify
636 | it under the terms of the GNU Affero General Public License as published by
637 | the Free Software Foundation, either version 3 of the License, or
638 | (at your option) any later version.
639 |
640 | This program is distributed in the hope that it will be useful,
641 | but WITHOUT ANY WARRANTY; without even the implied warranty of
642 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
643 | GNU Affero General Public License for more details.
644 |
645 | You should have received a copy of the GNU Affero General Public License
646 | along with this program. If not, see .
647 |
648 | Also add information on how to contact you by electronic and paper mail.
649 |
650 | If your software can interact with users remotely through a computer
651 | network, you should also make sure that it provides a way for users to
652 | get its source. For example, if your program is a web application, its
653 | interface could display a "Source" link that leads users to an archive
654 | of the code. There are many ways you could offer source, and different
655 | solutions will be better for different programs; see section 13 for the
656 | specific requirements.
657 |
658 | You should also get your employer (if you work as a programmer) or school,
659 | if any, to sign a "copyright disclaimer" for the program, if necessary.
660 | For more information on this, and how to apply and follow the GNU AGPL, see
661 | .
662 |
--------------------------------------------------------------------------------