summaryrefslogtreecommitdiffstats
path: root/config/sql/nonces.sql
blob: 644ac32a9032eb4b6ba30d73791aee7ff2f876e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
-- Table: public.nonces

-- DROP TABLE public.nonces;

CREATE TABLE IF NOT EXISTS public.nonces
(
  nonce text,
  expire timestamp with time zone,
  CONSTRAINT nonces_id_key UNIQUE (nonce)
);

GRANT ALL ON TABLE public.nonces TO current_user;

-- Index: public.nonces_nonce_idx

-- DROP INDEX public.nonces_nonce_idx;

CREATE INDEX IF NOT EXISTS nonces_nonce_idx
  ON public.nonces
  USING btree
  (nonce COLLATE pg_catalog."default");

015690992c8e0bd43c90e15a9aa88889defcc6&follow=1'>Fix #60 & complete #30 - YT studio & Nitter "View on..." linksv1.1.32SimonBrazell 2020-05-31Update store screenshotsSimonBrazell 2020-05-31Fixes #58 - No longer host YT JS assetsv1.1.31SimonBrazell 2020-05-27Stop redirecting Google Maps JS API endpoints (#56)v1.1.30SimonBrazell 2020-05-25Update options.htmlAustin Huang 2020-05-25Update popup.htmlAustin Huang 2020-05-20Fixes #51 & fixes #52 - `/tweets` redirects & popup stylingv1.1.29SimonBrazell 2020-05-19Tweak light & dark mode coloursv1.1.28SimonBrazell 2020-05-15Fix typo / spelling mistakes in privacy policySimonBrazell 2020-05-15Closes #49 - added to options menu too & added privacy policyv1.1.27SimonBrazell 2020-05-14Closes #49 - Allow basic authentication credentials in instancesv1.1.26SimonBrazell 2020-05-08Closes #36 - added option to persist Invidious prefsv1.1.25SimonBrazell 2020-05-07Add Light ModeTotalCaesar659 2020-05-07Add Dark Mode supportTotalCaesar659 2020-05-04Fixes #45 - some usersnames caught in instagramReservedPathsv1.1.24SimonBrazell 2020-04-26Fixes #40 - Empty whitelist broke redirectsv1.1.23SimonBrazell 2020-04-26Closes #27 - added ability to whitelist sitesv.1.1.22SimonBrazell 2020-04-25Add tabs UI to options pageSimonBrazell 2020-04-09Fix #28, #33 & #34v1.1.21SimonBrazell 2020-04-03Address GTK theme issue causing popup issues on Manjaro Linuxv1.1.20SimonBrazell 2020-04-02Address GTK theme issue causing popup issues on Majaro LinuxSimonBrazell 2020-03-31Fixed 'View on ...' links for Invidious & Bibliogramv1.1.19SimonBrazell 2020-03-31Fix #30 - 'View on ...' links, & handle more maps embed casesv1.1.18SimonBrazell 2020-03-30Fix #31 - Add Firefox screenshotsSimonBrazell 2020-03-29Fix overflowing inputs on some platforms.Emilio Cobos Álvarez `width: 100%` sets the content-box width, unless the box-sizing value is `border-box`, see: https://developer.mozilla.org/en-US/docs/Web/CSS/box-sizing (`box-sizing: border-box` is already the default for `<select>`). In platforms with more padding by default on inputs (like Firefox on Linux for example) this can cause the inputs to overflow the popup. Also shrink the padding manually to what the popup layout expects, so that it doesn't grow past the popup. Additionally we remove the appearance from checkboxes so that they don't take up space. This fixes https://bugzilla.mozilla.org/show_bug.cgi?id=1625716. 2020-03-29Proactively remove Twitter service workerSimonBrazell 2020-03-24Remove OS files from repoSimonBrazell 2020-03-24Add donate link to READMESimonBrazell 2020-03-21Update store screenshotsSimonBrazell 2020-03-21Address issues #21, #22, #23, #24, #25 & #26v1.1.16SimonBrazell 2020-03-10Add 'Always proxy video' as a settings & avoid youtube-dl.org redirectsv1.1.15SimonBrazell 2020-02-27Update store screenshotsSimonBrazell 2020-02-27Support for OSM layers, streetview workaround, & youtu.bev1.1.14SimonBrazell 2020-02-25Fix OSM embed bbox & add default zoom (17)v1.1.13SimonBrazell 2020-02-25Basic support for OSM embed & directionsv1.1.12SimonBrazell 2020-02-24Fix OSM redirectsv1.1.11SimonBrazell 2020-02-24OSM redirects (except embedded maps)SimonBrazell 2020-02-23OSM redirects (experimental)SimonBrazell 2020-02-22Add date retrieved and source to YT assetsSimonBrazell 2020-02-22Always proxy video through Invidious without an accountv1.1.9SimonBrazell 2020-02-19Redirect requests for 'YouTube Player API' assets to local files instead.v1.1.8SimonBrazell 2020-02-12Avoid redirecting `tweetdeck.twitter.com` & list instancesv1.1.7SimonBrazell 2020-02-09Updated screenshotsSimonBrazell 2020-02-09Avoid redirecting `studio.youtube.com` & basic instance validationv1.1.6SimonBrazell 2020-02-06Fix missing query strings in redirectsv1.1.5SimonBrazell 2020-02-01Add support for Bibliogram redirectsv1.1.4SimonBrazell 2020-01-15Fix embedded video redirectsSimonBrazell 2019-10-30Update screen shots for latest buildSimonBrazell 2019-10-30Add instances to popup menuSimonBrazell