Compare commits
19 commits
Author | SHA1 | Date | |
---|---|---|---|
7961d3c568 | |||
cabd84710e | |||
a4851fa6d3 | |||
4753feeab9 | |||
fccd97e498 | |||
89efef2036 | |||
ca162da742 | |||
a9b20ae3f0 | |||
f3e75789aa | |||
901147bf76 | |||
f9ffc9b521 | |||
b2afe8f6f5 | |||
33d6c4667b | |||
82b6316e4a | |||
c5a8d7995a | |||
e51a3eb785 | |||
4bb06f8514 | |||
ddc34acb9a | |||
28dcc001b5 |
41
Makefile
|
@ -1,40 +1,27 @@
|
|||
CC = gcc
|
||||
DESTDIR = /usr/bin
|
||||
SHAREDIR = /usr/share
|
||||
CFLAGS = -Wall -Wextra -g
|
||||
PKG_CONFIG = pkg-config
|
||||
GTK_LIBS = $(shell $(PKG_CONFIG) --libs gtk+-3.0)
|
||||
WEBKIT_LIBS = $(shell $(PKG_CONFIG) --libs webkit2gtk-4.1)
|
||||
LIBS = $(GTK_LIBS) $(WEBKIT_LIBS)
|
||||
INCLUDES = $(shell $(PKG_CONFIG) --cflags gtk+-3.0 webkit2gtk-4.1)
|
||||
|
||||
SRCS = pageburger.c
|
||||
OBJS = $(SRCS:.c=.o)
|
||||
TARGET = pageburger
|
||||
GO = /usr/bin/go
|
||||
|
||||
.PHONY: all clean
|
||||
|
||||
all: pageburger
|
||||
all: burgernotes
|
||||
|
||||
pageburger: $(TARGET)
|
||||
$(TARGET): $(OBJS)
|
||||
$(CC) $(CFLAGS) $(OBJS) -o $(TARGET) $(LIBS)
|
||||
|
||||
%.o: %.c
|
||||
$(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@
|
||||
burgernotes:
|
||||
$(GO) build
|
||||
|
||||
clean:
|
||||
rm -f $(OBJS) $(TARGET)
|
||||
rm -f burgernotes-app
|
||||
|
||||
install: pageburger
|
||||
install: burgernotes
|
||||
mkdir -p $(DESTDIR)
|
||||
mkdir -p $(SHAREDIR)/pageburger
|
||||
cp pageburger $(SHAREDIR)/pageburger/
|
||||
ln -sf $(SHAREDIR)/pageburger/pageburger $(DESTDIR)/pageburger
|
||||
mkdir -p $(SHAREDIR)/burgernotes
|
||||
cp burgernotes-app $(SHAREDIR)/burgernotes/burgernotes
|
||||
ln -sf $(SHAREDIR)/burgernotes/burgernotes $(DESTDIR)/burgernotes
|
||||
mkdir -p $(SHAREDIR)/icons/hicolor/scalable/apps/
|
||||
mkdir -p $(SHAREDIR)/applications/
|
||||
mkdir -p $(SHAREDIR)/metainfo/
|
||||
cp org.hectabit.PageBurger.svg $(SHAREDIR)/icons/hicolor/scalable/apps/
|
||||
cp org.hectabit.PageBurger.desktop $(SHAREDIR)/applications/
|
||||
cp org.hectabit.PageBurger.metainfo.xml $(SHAREDIR)/metainfo/
|
||||
cp -r website $(SHAREDIR)/pageburger/website
|
||||
cp org.hectabit.Burgernotes.svg $(SHAREDIR)/icons/hicolor/scalable/apps/
|
||||
cp org.hectabit.Burgernotes.desktop $(SHAREDIR)/applications/
|
||||
cp org.hectabit.Burgernotes.metainfo.xml $(SHAREDIR)/metainfo/
|
||||
cp -r website $(SHAREDIR)/burgernotes/website
|
||||
cp createwebsite.sh $(SHAREDIR)/burgernotes/
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
# PageBurger-App
|
||||
# Burgernotes-App
|
||||
|
||||
Native desktop app for PageBurger
|
||||
Native desktop app for Burgernotes
|
||||
|
|
|
@ -1,14 +1,8 @@
|
|||
#!/bin/sh
|
||||
cd $(dirname "$(readlink -f "$0")")
|
||||
git clone https://centrifuge.hectabit.org/hectabit/burgernotes --depth=1
|
||||
cd burgernotes
|
||||
mkdir -p ../website/static ../website/app ../website/error ../website/login ../website/logout ../website/privacy ../website/signup
|
||||
cp -r static/* ../website/static
|
||||
cp templates/app.html ../website/app/index.html
|
||||
cp templates/error.html ../website/error/index.html
|
||||
cp templates/login.html ../website/login/index.html
|
||||
cp ../logout.html ../website/logout/index.html
|
||||
cp templates/privacy.html ../website/privacy/index.html
|
||||
cp templates/signup.html ../website/signup/index.html
|
||||
cd ..
|
||||
rm -rf burgernotes
|
||||
rm -rf website/*
|
||||
mkdir -p website
|
||||
rm -rf burgernotes-client-web
|
||||
git clone https://centrifuge.hectabit.org/hectabit/burgernotes-client-web.git --depth=1
|
||||
mv burgernotes-client-web/* website/
|
||||
cp rdir.html website/index.html
|
||||
rm -rf burgernotes-client-web website/README.md website/LICENSE.md
|
||||
|
|
10
go.mod
Normal file
|
@ -0,0 +1,10 @@
|
|||
module hectabit.org/burgernotes-app
|
||||
|
||||
go 1.22.2
|
||||
|
||||
require (
|
||||
github.com/arzumify/webview_go-4.1 v0.0.0-20240425153857-cdb51de8ba32
|
||||
github.com/gotk3/gotk3 v0.6.3
|
||||
)
|
||||
|
||||
replace github.com/arzumify/webview_go-4.1 v0.0.0-20240425153857-cdb51de8ba32 => ./webkit-4.1
|
2
go.sum
Normal file
|
@ -0,0 +1,2 @@
|
|||
github.com/gotk3/gotk3 v0.6.3 h1:+Ke4WkM1TQUNOlM2TZH6szqknqo+zNbX3BZWVXjSHYw=
|
||||
github.com/gotk3/gotk3 v0.6.3/go.mod h1:/hqFpkNa9T3JgNAE2fLvCdov7c5bw//FHNZrZ3Uv9/Q=
|
15
logout.html
|
@ -1,15 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Burgernotes</title>
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<head>
|
||||
Logging out..
|
||||
<script>
|
||||
localStorage.removeItem("DONOTSHARE-secretkey")
|
||||
localStorage.removeItem("DONOTSHARE-password")
|
||||
localStorage.removeItem("CACHE-username")
|
||||
window.location.replace("../login/index.html")
|
||||
</script>
|
160
main.go
Normal file
|
@ -0,0 +1,160 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"path/filepath"
|
||||
"archive/zip"
|
||||
"github.com/arzumify/webview_go-4.1"
|
||||
"net/http"
|
||||
"os"
|
||||
"io"
|
||||
"strconv"
|
||||
)
|
||||
|
||||
func upgrade(path string) {
|
||||
err := os.RemoveAll(filepath.Join(path, "website"))
|
||||
if err != nil {
|
||||
fmt.Println("[ERROR] Failed to delete current version:", err)
|
||||
return
|
||||
}
|
||||
err = os.MkdirAll(filepath.Join(path, "website"), os.ModePerm)
|
||||
if err != nil {
|
||||
fmt.Println("[ERROR] Failed to create website directory:", err)
|
||||
return
|
||||
}
|
||||
resp, err := http.Get("https://centrifuge.hectabit.org/HectaBit/Burgernotes-client-web/archive/main.zip")
|
||||
if err != nil {
|
||||
fmt.Println("[ERROR] Cannot fetch latest version:", err)
|
||||
return
|
||||
}
|
||||
defer resp.Body.Close()
|
||||
tempFile, err := os.CreateTemp("", "upgrade_*.zip")
|
||||
if err != nil {
|
||||
fmt.Println("[ERROR] Failed to create temporary file:", err)
|
||||
return
|
||||
}
|
||||
defer os.Remove(tempFile.Name())
|
||||
_, err = io.Copy(tempFile, resp.Body)
|
||||
if err != nil {
|
||||
fmt.Println("[ERROR] Failed to copy zip content to temporary file:", err)
|
||||
return
|
||||
}
|
||||
zipReader, err := zip.OpenReader(tempFile.Name())
|
||||
if err != nil {
|
||||
fmt.Println("[ERROR] Failed to open zip file:", err)
|
||||
return
|
||||
}
|
||||
defer zipReader.Close()
|
||||
for _, file := range zipReader.File {
|
||||
dstPath := filepath.Join(filepath.Join(path, "website"), file.Name)
|
||||
if file.FileInfo().IsDir() {
|
||||
os.MkdirAll(dstPath, os.ModePerm)
|
||||
continue
|
||||
}
|
||||
fileReader, err := file.Open()
|
||||
if err != nil {
|
||||
fmt.Println("[ERROR] Failed to open file in zip:", err)
|
||||
return
|
||||
}
|
||||
defer fileReader.Close()
|
||||
dstFile, err := os.Create(dstPath)
|
||||
if err != nil {
|
||||
fmt.Println("[ERROR] Failed to create destination file:", err)
|
||||
return
|
||||
}
|
||||
defer dstFile.Close()
|
||||
_, err = io.Copy(dstFile, fileReader)
|
||||
if err != nil {
|
||||
fmt.Println("[ERROR] Failed to copy file contents:", err)
|
||||
return
|
||||
}
|
||||
}
|
||||
src, err := os.Open(filepath.Join(filepath.Join(path, "website"), "burgernotes-client-web"))
|
||||
if err != nil {
|
||||
fmt.Println("[ERROR] Cannot find created folder:", err)
|
||||
return
|
||||
}
|
||||
files, err := src.Readdir(-1)
|
||||
if err != nil {
|
||||
fmt.Println("[ERROR] Failed to read files:", err)
|
||||
return
|
||||
}
|
||||
for _, file := range files {
|
||||
srcPath := filepath.Join(filepath.Join(filepath.Join(path, "website"), "burgernotes-client-web"), file.Name())
|
||||
dstPath := filepath.Join(filepath.Join(path, "website"), file.Name())
|
||||
err := os.Rename(srcPath, dstPath)
|
||||
if err != nil {
|
||||
fmt.Println("[ERROR] Failed to move files:", err)
|
||||
return
|
||||
}
|
||||
}
|
||||
err = os.Remove(filepath.Join(filepath.Join(path, "website"), "burgernotes-client-web"))
|
||||
if err != nil {
|
||||
fmt.Println("[ERROR] Failed to delete source directory:", err)
|
||||
return
|
||||
}
|
||||
file, err := os.OpenFile(filepath.Join(filepath.Join(path, "website"), "index.html"), os.O_WRONLY|os.O_TRUNC|os.O_CREATE, 0644)
|
||||
if err != nil {
|
||||
fmt.Println("[ERROR] Failed to open index.html:", err)
|
||||
return
|
||||
}
|
||||
defer file.Close()
|
||||
filecontent := "<!DOCTYPE html><html><head><title>Burgernotes</title><meta charset=\"UTF-8\" /><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" /><meta http-equiv=\"refresh\" content=\"0; url=/app\"><head>Redirecting...<script>window.location.replace(\"/app\")</script>"
|
||||
_, err = file.WriteString(filecontent)
|
||||
if err != nil {
|
||||
fmt.Println("[ERROR] Failed to replace index.html:", err)
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
func vcheck(path string) {
|
||||
localVersion, err := os.ReadFile(path + "/website/static/version.txt")
|
||||
if err != nil {
|
||||
fmt.Println("[ERROR] Cannot get local version:", err)
|
||||
os.Exit(1)
|
||||
}
|
||||
localVersionNum, err := strconv.Atoi(string(localVersion))
|
||||
if err != nil {
|
||||
fmt.Println("[ERROR] Failed to convert local version to integer:", err)
|
||||
return
|
||||
}
|
||||
resp, err := http.Get("https://notes.hectabit.org/static/version.txt")
|
||||
if err != nil {
|
||||
fmt.Println("[ERROR] Cannot fetch remote version:", err)
|
||||
return
|
||||
}
|
||||
remoteVersion, err := io.ReadAll(resp.Body)
|
||||
if err != nil {
|
||||
fmt.Println("[ERROR] Failed to read remote version:", err)
|
||||
return
|
||||
}
|
||||
defer resp.Body.Close()
|
||||
remoteVersionNum, err := strconv.Atoi(string(remoteVersion))
|
||||
if err != nil {
|
||||
fmt.Println("[ERROR] Failed to convert remote version to integer:", err)
|
||||
return
|
||||
}
|
||||
if localVersionNum < remoteVersionNum {
|
||||
fmt.Println("[INFO] Local version is old. Attempting upgrade...")
|
||||
upgrade(path)
|
||||
} else {
|
||||
fmt.Println("[INFO] Up to date")
|
||||
}
|
||||
}
|
||||
|
||||
func main() {
|
||||
exepath, _ := os.Executable()
|
||||
path, _ := filepath.EvalSymlinks(exepath)
|
||||
go func() {
|
||||
http.Handle("/", http.StripPrefix("/", http.FileServer(http.Dir(filepath.Dir(path) + "/website"))))
|
||||
http.ListenAndServe("localhost:52064", nil)
|
||||
}()
|
||||
vcheck(filepath.Dir(path))
|
||||
|
||||
w := webview.New(false)
|
||||
defer w.Destroy()
|
||||
w.SetTitle("Burgernotes")
|
||||
w.SetSize(800, 800, webview.HintNone)
|
||||
w.Navigate("http://localhost:52064")
|
||||
w.Run()
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=PageBurger
|
||||
Name=Burgernotes
|
||||
Comment=Simple, private noting service
|
||||
Icon=org.hectabit.PageBurger
|
||||
Exec=pageburger
|
||||
Icon=org.hectabit.Burgernotes
|
||||
Exec=burgernotes
|
||||
Categories=Office;WordProcessor
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<component type="desktop-application">
|
||||
<id>org.hectabit.PageBurger</id>
|
||||
<id>org.hectabit.Burgernotes</id>
|
||||
|
||||
<name>Burgernotes</name>
|
||||
<summary>Simple, private notes app</summary>
|
||||
|
@ -17,11 +17,11 @@
|
|||
|
||||
<description>
|
||||
<p>
|
||||
PageBurger is a simple, private-by-default and easy to use notes app. All your notes seamlessly sync across your devices, and are 100% end-to-end encrypted, so no one but you can access them.
|
||||
Burgernotes is a simple, private-by-default and easy to use notes app. All your notes seamlessly sync across your devices, and are 100% end-to-end encrypted, so no one but you can access them.
|
||||
</p>
|
||||
</description>
|
||||
|
||||
<launchable type="desktop-id">org.hectabit.PageBurger.desktop</launchable>
|
||||
<launchable type="desktop-id">org.hectabit.Burgernotes.desktop</launchable>
|
||||
<screenshots>
|
||||
<screenshot type="default">
|
||||
<image>https://www.hectabit.org/assets/img/pscreenshot.png</image>
|
||||
|
@ -40,7 +40,7 @@
|
|||
</categories>
|
||||
|
||||
<provides>
|
||||
<binary>pageburger</binary>
|
||||
<binary>burgernotes</binary>
|
||||
</provides>
|
||||
<content_rating type="oars-1.1" />
|
||||
|
||||
|
@ -50,8 +50,45 @@
|
|||
</branding>
|
||||
|
||||
<releases>
|
||||
<release version="1.3" date="2024-04-22">
|
||||
<url type="details">https://centrifuge.hectabit.org/HectaBit/Burgernotes-App/releases/tag/1.3</url>
|
||||
<description>
|
||||
<p>Release 1.3</p>
|
||||
<ul>
|
||||
<li>Update to latest version of client</li>
|
||||
<li>Updated to a newer golang client</li>
|
||||
</ul>
|
||||
</description>
|
||||
</release>
|
||||
<release version="1.2" date="2024-03-15">
|
||||
<url type="details">https://centrifuge.hectabit.org/HectaBit/Burgernotes-App/releases/tag/1.2</url>
|
||||
<description>
|
||||
<p>Release 1.2</p>
|
||||
<ul>
|
||||
<li>Update to latest website version</li>
|
||||
</ul>
|
||||
</description>
|
||||
</release>
|
||||
<release version="1.1-2" date="2024-02-29">
|
||||
<url type="details">https://centrifuge.hectabit.org/HectaBit/Burgernotes-App/releases/tag/1.1-2</url>
|
||||
<description>
|
||||
<p>Release 1.1-2</p>
|
||||
<ul>
|
||||
<li>Migrate AppID</li>
|
||||
</ul>
|
||||
</description>
|
||||
</release>
|
||||
<release version="1.1-1" date="2024-02-28">
|
||||
<url type="details">https://centrifuge.hectabit.org/HectaBit/Burgernotes-App/releases/tag/1.1-1</url>
|
||||
<description>
|
||||
<p>Release 1.1-1</p>
|
||||
<ul>
|
||||
<li>Updated website</li>
|
||||
</ul>
|
||||
</description>
|
||||
</release>
|
||||
<release version="1.1" date="2024-02-26">
|
||||
<url type="details">https://centrifuge.hectabit.org/HectaBit/PageBurger-App/releases/tag/1.1</url>
|
||||
<url type="details">https://centrifuge.hectabit.org/HectaBit/Burgernotes-App/releases/tag/1.1</url>
|
||||
<description>
|
||||
<p>Release 1.1</p>
|
||||
<ul>
|
||||
|
@ -63,7 +100,7 @@
|
|||
</description>
|
||||
</release>
|
||||
<release version="1.0-3" date="2024-02-26">
|
||||
<url type="details">https://centrifuge.hectabit.org/HectaBit/PageBurger-App/releases/tag/1.0-3</url>
|
||||
<url type="details">https://centrifuge.hectabit.org/HectaBit/Burgernotes-App/releases/tag/1.0-3</url>
|
||||
<description>
|
||||
<p>Release 1.0-3</p>
|
||||
<ul>
|
||||
|
@ -72,7 +109,7 @@
|
|||
</description>
|
||||
</release>
|
||||
<release version="1.0-2" date="2024-02-26">
|
||||
<url type="details">https://centrifuge.hectabit.org/HectaBit/PageBurger-App/releases/tag/1.0-2</url>
|
||||
<url type="details">https://centrifuge.hectabit.org/HectaBit/Burgernotes-App/releases/tag/1.0-2</url>
|
||||
<description>
|
||||
<p>Release 1.0-2</p>
|
||||
<ul>
|
||||
|
@ -81,7 +118,7 @@
|
|||
</description>
|
||||
</release>
|
||||
<release version="1.0-1" date="2024-02-25">
|
||||
<url type="details">https://centrifuge.hectabit.org/HectaBit/PageBurger-App/releases/tag/1.0-1</url>
|
||||
<url type="details">https://centrifuge.hectabit.org/HectaBit/Burgernotes-App/releases/tag/1.0-1</url>
|
||||
<description>
|
||||
<p>Release 1.0-1</p>
|
||||
<ul>
|
||||
|
@ -91,7 +128,7 @@
|
|||
</description>
|
||||
</release>
|
||||
<release version="1.0" date="2024-02-25">
|
||||
<url type="details">https://centrifuge.hectabit.org/HectaBit/PageBurger-App/releases/tag/1.0-1</url>
|
||||
<url type="details">https://centrifuge.hectabit.org/HectaBit/Burgernotes-App/releases/tag/1.0-1</url>
|
||||
<description>
|
||||
<p>Initial Release</p>
|
||||
<ul>
|
191
org.hectabit.Burgernotes.svg
Normal file
|
@ -0,0 +1,191 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="384"
|
||||
height="384"
|
||||
viewBox="0 0 384 384"
|
||||
fill="none"
|
||||
version="1.1"
|
||||
id="svg33"
|
||||
sodipodi:docname="org.hectabit.PageBurger.svg"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
||||
xml:space="preserve"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
||||
id="namedview33"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="124.5"
|
||||
inkscape:cy="279.5"
|
||||
inkscape:window-width="1432"
|
||||
inkscape:window-height="831"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg33" /><defs
|
||||
id="defs33"><linearGradient
|
||||
id="paint0_linear_5_50"
|
||||
x1="213.333"
|
||||
y1="21.3295"
|
||||
x2="213.333"
|
||||
y2="362.667"
|
||||
gradientUnits="userSpaceOnUse"><stop
|
||||
stop-color="#CCD6DD"
|
||||
id="stop21" /><stop
|
||||
offset="1"
|
||||
stop-color="#CCD6DD"
|
||||
stop-opacity="0"
|
||||
id="stop22" /></linearGradient><linearGradient
|
||||
id="paint1_linear_5_50"
|
||||
x1="43.118"
|
||||
y1="309.376"
|
||||
x2="43.118"
|
||||
y2="384"
|
||||
gradientUnits="userSpaceOnUse"><stop
|
||||
stop-color="#66757F"
|
||||
id="stop23" /><stop
|
||||
offset="1"
|
||||
stop-color="#50585C"
|
||||
id="stop24" /><stop
|
||||
offset="1"
|
||||
stop-color="#50585C"
|
||||
id="stop25" /></linearGradient><linearGradient
|
||||
id="paint2_linear_5_50"
|
||||
x1="43.118"
|
||||
y1="224.043"
|
||||
x2="43.118"
|
||||
y2="298.667"
|
||||
gradientUnits="userSpaceOnUse"><stop
|
||||
stop-color="#66757F"
|
||||
id="stop26" /><stop
|
||||
offset="1"
|
||||
stop-color="#50585C"
|
||||
id="stop27" /></linearGradient><linearGradient
|
||||
id="paint3_linear_5_50"
|
||||
x1="43.118"
|
||||
y1="138.709"
|
||||
x2="43.118"
|
||||
y2="213.333"
|
||||
gradientUnits="userSpaceOnUse"><stop
|
||||
stop-color="#66757F"
|
||||
id="stop28" /><stop
|
||||
offset="1"
|
||||
stop-color="#50585C"
|
||||
id="stop29" /></linearGradient><linearGradient
|
||||
id="paint4_linear_5_50"
|
||||
x1="43.118"
|
||||
y1="53.376"
|
||||
x2="43.118"
|
||||
y2="128"
|
||||
gradientUnits="userSpaceOnUse"><stop
|
||||
stop-color="#66757F"
|
||||
id="stop30" /><stop
|
||||
offset="1"
|
||||
stop-color="#50585C"
|
||||
id="stop31" /></linearGradient><linearGradient
|
||||
id="paint5_linear_5_50"
|
||||
x1="186.667"
|
||||
y1="85.3333"
|
||||
x2="186.667"
|
||||
y2="384"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.59873694,0,0,0.59873694,77.220137,77.042507)"><stop
|
||||
stop-color="#55ACEE"
|
||||
id="stop32" /><stop
|
||||
offset="1"
|
||||
stop-color="#55ACEE"
|
||||
stop-opacity="0"
|
||||
id="stop33" /></linearGradient><clipPath
|
||||
id="clip0_5_50"><rect
|
||||
width="384"
|
||||
height="384"
|
||||
fill="white"
|
||||
id="rect33" /></clipPath></defs><g
|
||||
id="g1"
|
||||
transform="matrix(14.587349,0,0,14.587349,-525.96684,-2077.4268)"
|
||||
style="display:inline"><g
|
||||
clip-path="url(#clip0_5_50)"
|
||||
id="g18"
|
||||
transform="matrix(0.04909581,0,0,0.04909581,39.800677,146.14861)"
|
||||
style="display:inline"><path
|
||||
d="M 384,277.333 C 384,300.896 364.896,320 341.333,320 H 85.3333 C 61.7707,320 42.6667,300.896 42.6667,277.333 V 67.3387 C 42.6667,43.776 104.437,0 128,0 H 326.667 C 359.669,0 384,24.6613 384,57.3333 Z"
|
||||
fill="#226699"
|
||||
id="path1" /><path
|
||||
d="m 362.667,320 c 0,23.563 -19.104,42.667 -42.667,42.667 H 106.667 C 83.104,362.667 64,343.563 64,320 V 64 C 64,20.064 63.776,21.3333 117.333,21.3333 H 320 c 23.563,0 42.667,19.104 42.667,42.6667 z"
|
||||
fill="url(#paint0_linear_5_50)"
|
||||
id="path2"
|
||||
style="fill:url(#paint0_linear_5_50)" /><path
|
||||
d="m 341.333,330.667 c 0,17.674 -14.325,32 -32,32 H 74.6667 c -17.6747,0 -32,-14.326 -32,-32 V 74.6667 c 0,-17.6747 14.3253,-32 32,-32 H 309.333 c 17.675,0 32,14.3253 32,32 z"
|
||||
fill="#e1e8ed"
|
||||
id="path3" /><path
|
||||
d="m 91.1147,351.776 c 0,7.488 -7.1147,13.557 -15.8934,13.557 -8.768,0 -15.8826,-6.069 -15.8826,-13.557 0,-7.477 7.1146,-13.557 15.8826,-13.557 8.7787,0 15.8934,6.069 15.8934,13.557 z"
|
||||
fill="#662113"
|
||||
id="path4" /><path
|
||||
d="m 73.536,344.224 c -5.12,0.587 -8.448,4 -10.848,7.776 -3.2747,5.173 -10.7413,10.667 -20.0213,10.667 -11.776,0 -21.3334,-7.158 -21.3334,-16 0,-8.843 9.5574,-16 21.3334,-16 V 309.376 C 19.552,309.6 0.885345,326.176 0.885345,346.667 0.885345,367.296 19.7867,384 43.104,384 62.88,384 78.8053,372.853 84.7147,356.597 87.6693,348.501 79.712,343.541 73.536,344.224 Z"
|
||||
fill="url(#paint1_linear_5_50)"
|
||||
id="path5"
|
||||
style="fill:url(#paint1_linear_5_50)" /><path
|
||||
d="M 91.1147,266.443 C 91.1147,273.931 84,280 75.2213,280 c -8.768,0 -15.8826,-6.069 -15.8826,-13.557 0,-7.478 7.1146,-13.558 15.8826,-13.558 8.7787,0 15.8934,6.07 15.8934,13.558 z"
|
||||
fill="#662113"
|
||||
id="path6" /><path
|
||||
d="m 73.536,258.891 c -5.12,0.586 -8.448,4 -10.848,7.776 -3.2747,5.173 -10.7413,10.666 -20.0213,10.666 -11.776,0 -21.3334,-7.157 -21.3334,-16 0,-8.842 9.5574,-16 21.3334,-16 v -21.29 c -23.1147,0.224 -41.781355,16.8 -41.781355,37.29 0,20.63 18.901355,37.334 42.218655,37.334 19.776,0 35.7013,-11.147 41.6107,-27.403 2.9546,-8.096 -5.0027,-13.056 -11.1787,-12.373 z"
|
||||
fill="url(#paint2_linear_5_50)"
|
||||
id="path7"
|
||||
style="fill:url(#paint2_linear_5_50)" /><path
|
||||
d="m 91.1147,181.109 c 0,7.488 -7.1147,13.558 -15.8934,13.558 -8.768,0 -15.8826,-6.07 -15.8826,-13.558 0,-7.477 7.1146,-13.557 15.8826,-13.557 8.7787,0 15.8934,6.069 15.8934,13.557 z"
|
||||
fill="#662113"
|
||||
id="path8" /><path
|
||||
d="m 73.536,173.557 c -5.12,0.587 -8.448,4 -10.848,7.776 C 59.4133,186.507 51.9467,192 42.6667,192 c -11.776,0 -21.3334,-7.157 -21.3334,-16 0,-8.843 9.5574,-16 21.3334,-16 V 138.709 C 19.552,138.933 0.885345,155.509 0.885345,176 c 0,20.629 18.901355,37.333 42.218655,37.333 19.776,0 35.7013,-11.146 41.6107,-27.402 2.9546,-8.096 -5.0027,-13.056 -11.1787,-12.374 z"
|
||||
fill="url(#paint3_linear_5_50)"
|
||||
id="path9"
|
||||
style="fill:url(#paint3_linear_5_50)" /><path
|
||||
d="m 91.1147,95.776 c 0,7.488 -7.1147,13.557 -15.8934,13.557 -8.768,0 -15.8826,-6.069 -15.8826,-13.557 0,-7.4773 7.1146,-13.5573 15.8826,-13.5573 8.7787,0 15.8934,6.0693 15.8934,13.5573 z"
|
||||
fill="#662113"
|
||||
id="path10" /><path
|
||||
d="m 73.536,88.224 c -5.12,0.5867 -8.448,4 -10.848,7.776 -3.2747,5.173 -10.7413,10.667 -20.0213,10.667 -11.776,0 -21.3334,-7.1577 -21.3334,-16.0003 0,-8.8427 9.5574,-16 21.3334,-16 V 53.376 C 19.5627,53.5893 0.885345,70.176 0.885345,90.6667 0.885345,111.296 19.7867,128 43.104,128 62.88,128 78.8053,116.853 84.7147,100.597 87.6693,92.5013 79.712,87.5413 73.536,88.224 Z"
|
||||
fill="url(#paint4_linear_5_50)"
|
||||
id="path11"
|
||||
style="fill:url(#paint4_linear_5_50)" /><path
|
||||
d="m 214,225.771 c -88.504,0 -160.2439,-2.125 -160.2439,60.699 0,62.796 71.7399,77.086 160.2439,77.086 88.504,0 160.244,-14.29 160.244,-77.086 0,-62.815 -71.74,-60.699 -160.244,-60.699 z"
|
||||
fill="#d99e82"
|
||||
id="path12" /><path
|
||||
d="m 369.55,230.54 c 0,0 -77.624,-9.293 -155.55,-9.69 -77.926,0.397 -155.55,9.69 -155.55,9.69 -7.6783,61.143 56.072,86.332 155.55,86.332 99.478,0 163.228,-25.189 155.55,-86.332 z"
|
||||
fill="#662113"
|
||||
id="path13" /><path
|
||||
d="m 364.034,206.098 -300.8523,6.101 c -10.3889,0 -19.0873,21.052 -8.0656,26.558 82.2419,25.575 148.3529,51.453 148.3529,51.453 9.086,5.024 12.155,5.043 21.25,0.028 0,0 91.29,-36.531 149.931,-51.878 8.321,-2.172 -0.236,-32.262 -10.616,-32.262 z"
|
||||
fill="#ffcc4d"
|
||||
id="path14" /><path
|
||||
d="m 371.958,206.891 c -17.944,-16.537 -16.905,-7.735 -30.656,-11.617 -5.223,-1.473 -42.595,-49.781 -127.774,-49.781 h -0.189 c -85.18,0 -122.5512,48.308 -127.774,49.781 -13.7511,3.882 -12.7122,-4.92 -30.6567,11.617 -8.2355,7.593 -10.4644,11.541 -1.7755,13.506 13.09,2.956 11.9,10.88 21.2783,13.637 11.3522,3.334 16.0178,-2.757 34.3209,-0.264 15.612,2.125 16.632,22.374 32.385,22.374 15.754,0 15.754,-7.556 31.497,-7.556 15.744,0 25.057,20.268 40.81,20.268 15.753,0 25.056,-20.268 40.809,-20.268 15.754,0 15.754,7.556 31.498,7.556 15.753,0 16.773,-20.249 32.385,-22.374 18.303,-2.484 22.978,3.598 34.321,0.264 9.378,-2.757 8.188,-10.672 21.278,-13.637 8.708,-1.955 6.488,-5.913 -1.757,-13.506 z"
|
||||
fill="#77b255"
|
||||
id="path15" /><path
|
||||
d="m 365.838,189.022 c 0,28.182 -67.981,41.49 -151.838,41.49 -83.857,0 -151.8383,-13.308 -151.8383,-41.49 0,-51.028 9.1233,-51.028 151.8383,-51.028 142.715,0 151.838,0.009 151.838,51.028 z"
|
||||
fill="#dd2e44"
|
||||
id="path16" /><path
|
||||
d="m 214,37.9489 c -88.504,0 -160.2439,41.4705 -160.2439,104.2851 0,57.848 71.7399,60.209 160.2439,60.209 88.504,0 160.244,-2.361 160.244,-60.209 C 374.244,79.41 302.504,37.9489 214,37.9489 Z"
|
||||
fill="#d99e82"
|
||||
id="path17" /><path
|
||||
d="m 145.849,67.8972 c -4.703,-3.0128 -10.946,-1.6339 -13.95,3.0695 -3.003,4.7033 -1.633,10.9555 3.07,13.9494 4.703,3.0128 16.622,5.2606 19.635,0.5572 3.003,-4.7033 -4.052,-14.5727 -8.755,-17.5761 z m 91.932,-9.775 c -5.308,1.7189 -14.629,9.5011 -12.901,14.8089 1.728,5.3078 13.827,6.12 19.134,4.4011 5.308,-1.7189 8.208,-7.4233 6.479,-12.7311 -1.719,-5.2983 -7.423,-8.2072 -12.712,-6.4789 z m 103.03,66.4418 c -4.269,-3.589 -14.97,2.125 -18.568,6.394 -3.589,4.278 -3.032,10.644 1.237,14.233 4.269,3.588 10.644,3.031 14.233,-1.238 3.598,-4.278 7.376,-15.8 3.098,-19.389 z M 306.404,77.3417 c -4.703,-3.0034 -10.946,-1.6245 -13.958,3.0789 -3.004,4.7033 -1.625,10.9461 3.078,13.9494 4.704,3.0128 16.623,5.2606 19.626,0.5572 3.013,-4.7128 -4.042,-14.5822 -8.746,-17.5855 z M 164.738,143.453 c -4.704,-3.004 -10.946,-1.625 -13.959,3.079 -3.003,4.694 -1.625,10.946 3.079,13.94 4.703,3.012 16.622,5.27 19.625,0.557 3.013,-4.703 -4.042,-14.573 -8.745,-17.576 z m 28.768,-45.4091 c -3.174,4.5901 -5.856,16.4241 -1.257,19.5971 4.59,3.173 14.705,-3.532 17.879,-8.122 3.173,-4.59 2.011,-10.8801 -2.579,-14.0534 -4.58,-3.1734 -10.88,-2.0117 -14.043,2.5783 z m 75.121,45.4091 c -4.704,-3.004 -10.946,-1.625 -13.959,3.079 -3.004,4.694 -1.625,10.955 3.079,13.94 4.703,3.012 16.622,5.27 19.625,0.557 3.013,-4.703 -4.042,-14.573 -8.745,-17.576 z M 90.7311,106.742 c -3.7211,4.165 -7.8672,15.565 -3.7022,19.286 4.1461,3.721 15.0261,-1.644 18.7471,-5.809 3.731,-4.155 3.372,-10.54 -0.784,-14.27 -4.146,-3.721 -10.5398,-3.362 -14.2609,0.793 z"
|
||||
fill="#ffe8b6"
|
||||
id="path18" /></g><path
|
||||
d="m 281.58883,281.41119 c 0,14.10803 -11.43829,25.5463 -25.54573,25.5463 H 134.69889 c -14.10786,0 -25.54614,-11.43827 -25.54614,-25.5463 V 140.90797 c 0,-14.10803 11.43828,-25.54629 25.54614,-25.54629 H 256.0431 c 14.10744,0 25.54573,11.43826 25.54573,25.54629 z"
|
||||
fill="#3b88c3"
|
||||
id="path19"
|
||||
style="display:inline;stroke-width:0.598737"
|
||||
transform="matrix(0.08199896,0,0,0.08199896,33.468706,139.8312)" /><path
|
||||
d="m 268.81596,281.41119 c 0,14.10803 -11.43829,25.5463 -25.54631,25.5463 H 134.69889 c -14.10786,0 -25.54614,-11.43827 -25.54614,-25.5463 V 153.68084 c 0,-14.10804 11.43828,-25.54614 25.54614,-25.54614 h 110.71064 c 14.10743,0 23.40643,9.29881 23.40643,23.40686 z"
|
||||
fill="url(#paint5_linear_5_50)"
|
||||
id="path20"
|
||||
style="display:inline;fill:url(#paint5_linear_5_50);stroke-width:0.598737"
|
||||
transform="matrix(0.08199896,0,0,0.08199896,33.468706,139.8312)" /><path
|
||||
d="m 134.69889,115.36168 c -10.78045,0 -11.05509,-12.27489 -6.38649,-17.562938 5.31356,-6.009763 13.57133,-7.9832 28.34335,-7.9832 h 9.97556 V 77.042507 h -17.36456 c -25.34831,0 -46.50048,15.96634 -46.50048,34.327563 v 170.04112 c 0,14.10803 11.43827,25.5463 25.54613,25.5463 h 12.77321 V 115.36168 Z"
|
||||
fill="#226699"
|
||||
id="path21"
|
||||
style="display:inline;stroke-width:0.598737"
|
||||
transform="matrix(0.08199896,0,0,0.08199896,33.468706,139.8312)" /></g></svg>
|
After Width: | Height: | Size: 12 KiB |
|
@ -1,238 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="384"
|
||||
height="384"
|
||||
viewBox="0 0 384 384"
|
||||
fill="none"
|
||||
version="1.1"
|
||||
id="svg33"
|
||||
sodipodi:docname="org.hectabit.PageBurger.svg"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview33"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="0.61458333"
|
||||
inkscape:cx="191.18644"
|
||||
inkscape:cy="191.18644"
|
||||
inkscape:window-width="1432"
|
||||
inkscape:window-height="831"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg33" />
|
||||
<g
|
||||
clip-path="url(#clip0_5_50)"
|
||||
id="g18"
|
||||
transform="matrix(0.59873694,0,0,0.59873695,77.220137,77.042507)">
|
||||
<path
|
||||
d="M 384,277.333 C 384,300.896 364.896,320 341.333,320 H 85.3333 C 61.7707,320 42.6667,300.896 42.6667,277.333 V 67.3387 C 42.6667,43.776 104.437,0 128,0 H 326.667 C 359.669,0 384,24.6613 384,57.3333 Z"
|
||||
fill="#226699"
|
||||
id="path1" />
|
||||
<path
|
||||
d="m 362.667,320 c 0,23.563 -19.104,42.667 -42.667,42.667 H 106.667 C 83.104,362.667 64,343.563 64,320 V 64 C 64,20.064 63.776,21.3333 117.333,21.3333 H 320 c 23.563,0 42.667,19.104 42.667,42.6667 z"
|
||||
fill="url(#paint0_linear_5_50)"
|
||||
id="path2"
|
||||
style="fill:url(#paint0_linear_5_50)" />
|
||||
<path
|
||||
d="m 341.333,330.667 c 0,17.674 -14.325,32 -32,32 H 74.6667 c -17.6747,0 -32,-14.326 -32,-32 V 74.6667 c 0,-17.6747 14.3253,-32 32,-32 H 309.333 c 17.675,0 32,14.3253 32,32 z"
|
||||
fill="#e1e8ed"
|
||||
id="path3" />
|
||||
<path
|
||||
d="m 91.1147,351.776 c 0,7.488 -7.1147,13.557 -15.8934,13.557 -8.768,0 -15.8826,-6.069 -15.8826,-13.557 0,-7.477 7.1146,-13.557 15.8826,-13.557 8.7787,0 15.8934,6.069 15.8934,13.557 z"
|
||||
fill="#662113"
|
||||
id="path4" />
|
||||
<path
|
||||
d="m 73.536,344.224 c -5.12,0.587 -8.448,4 -10.848,7.776 -3.2747,5.173 -10.7413,10.667 -20.0213,10.667 -11.776,0 -21.3334,-7.158 -21.3334,-16 0,-8.843 9.5574,-16 21.3334,-16 V 309.376 C 19.552,309.6 0.885345,326.176 0.885345,346.667 0.885345,367.296 19.7867,384 43.104,384 62.88,384 78.8053,372.853 84.7147,356.597 87.6693,348.501 79.712,343.541 73.536,344.224 Z"
|
||||
fill="url(#paint1_linear_5_50)"
|
||||
id="path5"
|
||||
style="fill:url(#paint1_linear_5_50)" />
|
||||
<path
|
||||
d="M 91.1147,266.443 C 91.1147,273.931 84,280 75.2213,280 c -8.768,0 -15.8826,-6.069 -15.8826,-13.557 0,-7.478 7.1146,-13.558 15.8826,-13.558 8.7787,0 15.8934,6.07 15.8934,13.558 z"
|
||||
fill="#662113"
|
||||
id="path6" />
|
||||
<path
|
||||
d="m 73.536,258.891 c -5.12,0.586 -8.448,4 -10.848,7.776 -3.2747,5.173 -10.7413,10.666 -20.0213,10.666 -11.776,0 -21.3334,-7.157 -21.3334,-16 0,-8.842 9.5574,-16 21.3334,-16 v -21.29 c -23.1147,0.224 -41.781355,16.8 -41.781355,37.29 0,20.63 18.901355,37.334 42.218655,37.334 19.776,0 35.7013,-11.147 41.6107,-27.403 2.9546,-8.096 -5.0027,-13.056 -11.1787,-12.373 z"
|
||||
fill="url(#paint2_linear_5_50)"
|
||||
id="path7"
|
||||
style="fill:url(#paint2_linear_5_50)" />
|
||||
<path
|
||||
d="m 91.1147,181.109 c 0,7.488 -7.1147,13.558 -15.8934,13.558 -8.768,0 -15.8826,-6.07 -15.8826,-13.558 0,-7.477 7.1146,-13.557 15.8826,-13.557 8.7787,0 15.8934,6.069 15.8934,13.557 z"
|
||||
fill="#662113"
|
||||
id="path8" />
|
||||
<path
|
||||
d="m 73.536,173.557 c -5.12,0.587 -8.448,4 -10.848,7.776 C 59.4133,186.507 51.9467,192 42.6667,192 c -11.776,0 -21.3334,-7.157 -21.3334,-16 0,-8.843 9.5574,-16 21.3334,-16 V 138.709 C 19.552,138.933 0.885345,155.509 0.885345,176 c 0,20.629 18.901355,37.333 42.218655,37.333 19.776,0 35.7013,-11.146 41.6107,-27.402 2.9546,-8.096 -5.0027,-13.056 -11.1787,-12.374 z"
|
||||
fill="url(#paint3_linear_5_50)"
|
||||
id="path9"
|
||||
style="fill:url(#paint3_linear_5_50)" />
|
||||
<path
|
||||
d="m 91.1147,95.776 c 0,7.488 -7.1147,13.557 -15.8934,13.557 -8.768,0 -15.8826,-6.069 -15.8826,-13.557 0,-7.4773 7.1146,-13.5573 15.8826,-13.5573 8.7787,0 15.8934,6.0693 15.8934,13.5573 z"
|
||||
fill="#662113"
|
||||
id="path10" />
|
||||
<path
|
||||
d="m 73.536,88.224 c -5.12,0.5867 -8.448,4 -10.848,7.776 -3.2747,5.173 -10.7413,10.667 -20.0213,10.667 -11.776,0 -21.3334,-7.1577 -21.3334,-16.0003 0,-8.8427 9.5574,-16 21.3334,-16 V 53.376 C 19.5627,53.5893 0.885345,70.176 0.885345,90.6667 0.885345,111.296 19.7867,128 43.104,128 62.88,128 78.8053,116.853 84.7147,100.597 87.6693,92.5013 79.712,87.5413 73.536,88.224 Z"
|
||||
fill="url(#paint4_linear_5_50)"
|
||||
id="path11"
|
||||
style="fill:url(#paint4_linear_5_50)" />
|
||||
<path
|
||||
d="m 214,225.771 c -88.504,0 -160.2439,-2.125 -160.2439,60.699 0,62.796 71.7399,77.086 160.2439,77.086 88.504,0 160.244,-14.29 160.244,-77.086 0,-62.815 -71.74,-60.699 -160.244,-60.699 z"
|
||||
fill="#d99e82"
|
||||
id="path12" />
|
||||
<path
|
||||
d="m 369.55,230.54 c 0,0 -77.624,-9.293 -155.55,-9.69 -77.926,0.397 -155.55,9.69 -155.55,9.69 -7.6783,61.143 56.072,86.332 155.55,86.332 99.478,0 163.228,-25.189 155.55,-86.332 z"
|
||||
fill="#662113"
|
||||
id="path13" />
|
||||
<path
|
||||
d="m 364.034,206.098 -300.8523,6.101 c -10.3889,0 -19.0873,21.052 -8.0656,26.558 82.2419,25.575 148.3529,51.453 148.3529,51.453 9.086,5.024 12.155,5.043 21.25,0.028 0,0 91.29,-36.531 149.931,-51.878 8.321,-2.172 -0.236,-32.262 -10.616,-32.262 z"
|
||||
fill="#ffcc4d"
|
||||
id="path14" />
|
||||
<path
|
||||
d="m 371.958,206.891 c -17.944,-16.537 -16.905,-7.735 -30.656,-11.617 -5.223,-1.473 -42.595,-49.781 -127.774,-49.781 h -0.189 c -85.18,0 -122.5512,48.308 -127.774,49.781 -13.7511,3.882 -12.7122,-4.92 -30.6567,11.617 -8.2355,7.593 -10.4644,11.541 -1.7755,13.506 13.09,2.956 11.9,10.88 21.2783,13.637 11.3522,3.334 16.0178,-2.757 34.3209,-0.264 15.612,2.125 16.632,22.374 32.385,22.374 15.754,0 15.754,-7.556 31.497,-7.556 15.744,0 25.057,20.268 40.81,20.268 15.753,0 25.056,-20.268 40.809,-20.268 15.754,0 15.754,7.556 31.498,7.556 15.753,0 16.773,-20.249 32.385,-22.374 18.303,-2.484 22.978,3.598 34.321,0.264 9.378,-2.757 8.188,-10.672 21.278,-13.637 8.708,-1.955 6.488,-5.913 -1.757,-13.506 z"
|
||||
fill="#77b255"
|
||||
id="path15" />
|
||||
<path
|
||||
d="m 365.838,189.022 c 0,28.182 -67.981,41.49 -151.838,41.49 -83.857,0 -151.8383,-13.308 -151.8383,-41.49 0,-51.028 9.1233,-51.028 151.8383,-51.028 142.715,0 151.838,0.009 151.838,51.028 z"
|
||||
fill="#dd2e44"
|
||||
id="path16" />
|
||||
<path
|
||||
d="m 214,37.9489 c -88.504,0 -160.2439,41.4705 -160.2439,104.2851 0,57.848 71.7399,60.209 160.2439,60.209 88.504,0 160.244,-2.361 160.244,-60.209 C 374.244,79.41 302.504,37.9489 214,37.9489 Z"
|
||||
fill="#d99e82"
|
||||
id="path17" />
|
||||
<path
|
||||
d="m 145.849,67.8972 c -4.703,-3.0128 -10.946,-1.6339 -13.95,3.0695 -3.003,4.7033 -1.633,10.9555 3.07,13.9494 4.703,3.0128 16.622,5.2606 19.635,0.5572 3.003,-4.7033 -4.052,-14.5727 -8.755,-17.5761 z m 91.932,-9.775 c -5.308,1.7189 -14.629,9.5011 -12.901,14.8089 1.728,5.3078 13.827,6.12 19.134,4.4011 5.308,-1.7189 8.208,-7.4233 6.479,-12.7311 -1.719,-5.2983 -7.423,-8.2072 -12.712,-6.4789 z m 103.03,66.4418 c -4.269,-3.589 -14.97,2.125 -18.568,6.394 -3.589,4.278 -3.032,10.644 1.237,14.233 4.269,3.588 10.644,3.031 14.233,-1.238 3.598,-4.278 7.376,-15.8 3.098,-19.389 z M 306.404,77.3417 c -4.703,-3.0034 -10.946,-1.6245 -13.958,3.0789 -3.004,4.7033 -1.625,10.9461 3.078,13.9494 4.704,3.0128 16.623,5.2606 19.626,0.5572 3.013,-4.7128 -4.042,-14.5822 -8.746,-17.5855 z M 164.738,143.453 c -4.704,-3.004 -10.946,-1.625 -13.959,3.079 -3.003,4.694 -1.625,10.946 3.079,13.94 4.703,3.012 16.622,5.27 19.625,0.557 3.013,-4.703 -4.042,-14.573 -8.745,-17.576 z m 28.768,-45.4091 c -3.174,4.5901 -5.856,16.4241 -1.257,19.5971 4.59,3.173 14.705,-3.532 17.879,-8.122 3.173,-4.59 2.011,-10.8801 -2.579,-14.0534 -4.58,-3.1734 -10.88,-2.0117 -14.043,2.5783 z m 75.121,45.4091 c -4.704,-3.004 -10.946,-1.625 -13.959,3.079 -3.004,4.694 -1.625,10.955 3.079,13.94 4.703,3.012 16.622,5.27 19.625,0.557 3.013,-4.703 -4.042,-14.573 -8.745,-17.576 z M 90.7311,106.742 c -3.7211,4.165 -7.8672,15.565 -3.7022,19.286 4.1461,3.721 15.0261,-1.644 18.7471,-5.809 3.731,-4.155 3.372,-10.54 -0.784,-14.27 -4.146,-3.721 -10.5398,-3.362 -14.2609,0.793 z"
|
||||
fill="#ffe8b6"
|
||||
id="path18" />
|
||||
</g>
|
||||
<path
|
||||
d="m 281.58883,281.41119 c 0,14.10803 -11.43829,25.5463 -25.54573,25.5463 H 134.69889 c -14.10786,0 -25.54614,-11.43827 -25.54614,-25.5463 V 140.90797 c 0,-14.10803 11.43828,-25.54629 25.54614,-25.54629 H 256.0431 c 14.10744,0 25.54573,11.43826 25.54573,25.54629 z"
|
||||
fill="#3b88c3"
|
||||
id="path19"
|
||||
style="stroke-width:0.598737" />
|
||||
<path
|
||||
d="m 268.81596,281.41119 c 0,14.10803 -11.43829,25.5463 -25.54631,25.5463 H 134.69889 c -14.10786,0 -25.54614,-11.43827 -25.54614,-25.5463 V 153.68084 c 0,-14.10804 11.43828,-25.54614 25.54614,-25.54614 h 110.71064 c 14.10743,0 23.40643,9.29881 23.40643,23.40686 z"
|
||||
fill="url(#paint5_linear_5_50)"
|
||||
id="path20"
|
||||
style="fill:url(#paint5_linear_5_50);stroke-width:0.598737" />
|
||||
<path
|
||||
d="m 134.69889,115.36168 c -10.78045,0 -11.05509,-12.27489 -6.38649,-17.562938 5.31356,-6.009763 13.57133,-7.9832 28.34335,-7.9832 h 9.97556 V 77.042507 h -17.36456 c -25.34831,0 -46.50048,15.96634 -46.50048,34.327563 v 170.04112 c 0,14.10803 11.43827,25.5463 25.54613,25.5463 h 12.77321 V 115.36168 Z"
|
||||
fill="#226699"
|
||||
id="path21"
|
||||
style="stroke-width:0.598737" />
|
||||
<defs
|
||||
id="defs33">
|
||||
<linearGradient
|
||||
id="paint0_linear_5_50"
|
||||
x1="213.333"
|
||||
y1="21.3295"
|
||||
x2="213.333"
|
||||
y2="362.667"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
stop-color="#CCD6DD"
|
||||
id="stop21" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#CCD6DD"
|
||||
stop-opacity="0"
|
||||
id="stop22" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="paint1_linear_5_50"
|
||||
x1="43.118"
|
||||
y1="309.376"
|
||||
x2="43.118"
|
||||
y2="384"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
stop-color="#66757F"
|
||||
id="stop23" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#50585C"
|
||||
id="stop24" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#50585C"
|
||||
id="stop25" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="paint2_linear_5_50"
|
||||
x1="43.118"
|
||||
y1="224.043"
|
||||
x2="43.118"
|
||||
y2="298.667"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
stop-color="#66757F"
|
||||
id="stop26" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#50585C"
|
||||
id="stop27" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="paint3_linear_5_50"
|
||||
x1="43.118"
|
||||
y1="138.709"
|
||||
x2="43.118"
|
||||
y2="213.333"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
stop-color="#66757F"
|
||||
id="stop28" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#50585C"
|
||||
id="stop29" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="paint4_linear_5_50"
|
||||
x1="43.118"
|
||||
y1="53.376"
|
||||
x2="43.118"
|
||||
y2="128"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
stop-color="#66757F"
|
||||
id="stop30" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#50585C"
|
||||
id="stop31" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="paint5_linear_5_50"
|
||||
x1="186.667"
|
||||
y1="85.3333"
|
||||
x2="186.667"
|
||||
y2="384"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.59873694,0,0,0.59873694,77.220137,77.042507)">
|
||||
<stop
|
||||
stop-color="#55ACEE"
|
||||
id="stop32" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#55ACEE"
|
||||
stop-opacity="0"
|
||||
id="stop33" />
|
||||
</linearGradient>
|
||||
<clipPath
|
||||
id="clip0_5_50">
|
||||
<rect
|
||||
width="384"
|
||||
height="384"
|
||||
fill="white"
|
||||
id="rect33" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 12 KiB |
56
pageburger.c
|
@ -1,56 +0,0 @@
|
|||
#include <webkit2/webkit2.h>
|
||||
#include <gtk/gtk.h>
|
||||
#include <unistd.h>
|
||||
#include <libgen.h>
|
||||
|
||||
static void cookie_changed_cb(WebKitCookieManager *cookie_manager, GParamSpec *pspec, gpointer user_data) {
|
||||
// Handle cookie changes here
|
||||
g_print("Cookie changed\n");
|
||||
}
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
gtk_init(&argc, &argv);
|
||||
|
||||
// Create a new window
|
||||
GtkWidget *window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
|
||||
gtk_window_set_title(GTK_WINDOW(window), "PageBurger");
|
||||
gtk_window_set_default_size(GTK_WINDOW(window), 1000, 600);
|
||||
g_signal_connect(window, "destroy", G_CALLBACK(gtk_main_quit), NULL);
|
||||
|
||||
// Create a web view widget
|
||||
WebKitWebView *webview = WEBKIT_WEB_VIEW(webkit_web_view_new());
|
||||
|
||||
// Get the path of the executable
|
||||
char exe_path[1024];
|
||||
ssize_t len = readlink("/proc/self/exe", exe_path, sizeof(exe_path)-1);
|
||||
if (len == -1) {
|
||||
perror("readlink");
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
exe_path[len] = '\0';
|
||||
|
||||
// Get the directory containing the executable
|
||||
char *exe_dir = dirname(exe_path);
|
||||
|
||||
// Construct the path to the website directory
|
||||
char website_path[1024];
|
||||
snprintf(website_path, sizeof(website_path), "file:/\/%s/website/app/index.html", exe_dir);
|
||||
|
||||
// Load the URI
|
||||
webkit_web_view_load_uri(webview, website_path);
|
||||
|
||||
// Add the web view to the window
|
||||
gtk_container_add(GTK_CONTAINER(window), GTK_WIDGET(webview));
|
||||
|
||||
// Show all widgets
|
||||
gtk_widget_show_all(window);
|
||||
|
||||
// Connect signals for handling cookies
|
||||
WebKitCookieManager *cookie_manager = webkit_web_context_get_cookie_manager(webkit_web_view_get_context(webview));
|
||||
g_signal_connect(cookie_manager, "notify::cookie-accept-policy", G_CALLBACK(cookie_changed_cb), NULL);
|
||||
|
||||
// Run the main GTK event loop
|
||||
gtk_main();
|
||||
|
||||
return 0;
|
||||
}
|
15
webkit-4.1/.gitignore
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
# Binaries for programs and plugins
|
||||
*.exe
|
||||
*.exe~
|
||||
*.dll
|
||||
*.so
|
||||
*.dylib
|
||||
|
||||
# Test binary, built with `go test -c`
|
||||
*.test
|
||||
|
||||
# Output of the go coverage tool, specifically when used with LiteIDE
|
||||
*.out
|
||||
|
||||
# Dependency directories (remove the comment below to include it)
|
||||
# vendor/
|
15
webkit-4.1/CHANGELOG.md
Normal file
|
@ -0,0 +1,15 @@
|
|||
# Changelog
|
||||
|
||||
### Migrating from v0.1.1 to v0.10.0
|
||||
|
||||
1. `Webview.Open()` has been removed. Use other webview APIs to create a window, open a link and run main UI loop.
|
||||
2. `Webview.Debug()` and `webview.Debugf()` have been removed. Use your favorite logging library to debug webview apps.
|
||||
3. `Webview.Settings` struct has been removed. Title, URL and size are controlled via other API setters and can be updated at any time, not only when webview is created.
|
||||
4. `Webview.Loop()` has been removed. Use `Run()` instead.
|
||||
5. `WebView.Run()`, `WebView.Terminate()`, `WebView.SetTitle()`, `WebView.Dispatch()` stayed the same.
|
||||
6. `WebView.Exit()` has been renamed to `WebView.Destroy()`
|
||||
7. `WebView.SetColor()` and `WebView.SetFullScreen()` have been removed. Use `Window()` to get native window handle and probably write some Cgo code to adjust native window to your taste.
|
||||
8. `Webview.Dialog` has been removed. But it is likely to be brought back as a standalone module.
|
||||
9. `WebView.Eval()` remained the same.
|
||||
10. `WebView.InjectCSS()` has been removed. Use eval to inject style tag with CSS inside.
|
||||
11. `WebView.Bind()` kept the name, but changed the semantics. Only functions can be bound. Not the structs, like in Lorca.
|
22
webkit-4.1/LICENSE
Normal file
|
@ -0,0 +1,22 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2017 Serge Zaitsev
|
||||
Copyright (c) 2020 webview
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
51
webkit-4.1/README.md
Normal file
|
@ -0,0 +1,51 @@
|
|||
# webview_go-4.1
|
||||
|
||||
[](https://godoc.org/github.com/arzumify/webview_go-4.1)
|
||||
[](https://goreportcard.com/report/github.com/webview/webview_go)
|
||||
|
||||
Go language binding for the [webview library][webview], for webkitgtk-4.1.
|
||||
This is entirely backwards compatible with webview_go 4.0, and needs only a dependency replacement.
|
||||
|
||||
> [!NOTE]
|
||||
> Versions <= 0.1.1 are available in the [old repository][webview].
|
||||
|
||||
### Getting Started
|
||||
|
||||
See [Go package documentation][go-docs] for the Go API documentation, or simply read the source code.
|
||||
|
||||
Start with creating a new directory structure for your project.
|
||||
|
||||
```sh
|
||||
mkdir my-project && cd my-project
|
||||
```
|
||||
|
||||
Create a new Go module.
|
||||
|
||||
```sh
|
||||
go mod init example.com/app
|
||||
```
|
||||
|
||||
Save one of the example programs into your project directory.
|
||||
|
||||
```sh
|
||||
curl -sSLo main.go "https://raw.githubusercontent.com/arzumify/webview_go-4.1/master/examples/basic/main.go"
|
||||
```
|
||||
|
||||
Install dependencies.
|
||||
|
||||
```sh
|
||||
go get github.com/webview/webview_go
|
||||
```
|
||||
|
||||
Build the example. On Windows, add `-ldflags="-H windowsgui"` to the command line.
|
||||
|
||||
```sh
|
||||
go build
|
||||
```
|
||||
|
||||
### Notes
|
||||
|
||||
Calling `Eval()` or `Dispatch()` before `Run()` does not work because the webview instance has only been configured and not yet started.
|
||||
|
||||
[go-docs]: https://pkg.go.dev/github.com/arzumify/webview_go-4.1
|
||||
[webview]: https://github.com/webview/webview
|
12
webkit-4.1/examples/basic/main.go
Normal file
|
@ -0,0 +1,12 @@
|
|||
package main
|
||||
|
||||
import webview "github.com/webview/webview_go"
|
||||
|
||||
func main() {
|
||||
w := webview.New(false)
|
||||
defer w.Destroy()
|
||||
w.SetTitle("Basic Example")
|
||||
w.SetSize(480, 320, webview.HintNone)
|
||||
w.SetHtml("Thanks for using webview!")
|
||||
w.Run()
|
||||
}
|
38
webkit-4.1/examples/bind/main.go
Normal file
|
@ -0,0 +1,38 @@
|
|||
package main
|
||||
|
||||
import webview "github.com/webview/webview_go"
|
||||
|
||||
const html = `<button id="increment">Tap me</button>
|
||||
<div>You tapped <span id="count">0</span> time(s).</div>
|
||||
<script>
|
||||
const [incrementElement, countElement] =
|
||||
document.querySelectorAll("#increment, #count");
|
||||
document.addEventListener("DOMContentLoaded", () => {
|
||||
incrementElement.addEventListener("click", () => {
|
||||
window.increment().then(result => {
|
||||
countElement.textContent = result.count;
|
||||
});
|
||||
});
|
||||
});
|
||||
</script>`
|
||||
|
||||
type IncrementResult struct {
|
||||
Count uint `json:"count"`
|
||||
}
|
||||
|
||||
func main() {
|
||||
var count uint = 0
|
||||
w := webview.New(false)
|
||||
defer w.Destroy()
|
||||
w.SetTitle("Bind Example")
|
||||
w.SetSize(480, 320, webview.HintNone)
|
||||
|
||||
// A binding that increments a value and immediately returns the new value.
|
||||
w.Bind("increment", func() IncrementResult {
|
||||
count++
|
||||
return IncrementResult{Count: count}
|
||||
})
|
||||
|
||||
w.SetHtml(html)
|
||||
w.Run()
|
||||
}
|
36
webkit-4.1/glue.c
Normal file
|
@ -0,0 +1,36 @@
|
|||
#include "webview.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdint.h>
|
||||
|
||||
struct binding_context {
|
||||
webview_t w;
|
||||
uintptr_t index;
|
||||
};
|
||||
|
||||
void _webviewDispatchGoCallback(void *);
|
||||
void _webviewBindingGoCallback(webview_t, char *, char *, uintptr_t);
|
||||
|
||||
static void _webview_dispatch_cb(webview_t w, void *arg) {
|
||||
_webviewDispatchGoCallback(arg);
|
||||
}
|
||||
|
||||
static void _webview_binding_cb(const char *id, const char *req, void *arg) {
|
||||
struct binding_context *ctx = (struct binding_context *) arg;
|
||||
_webviewBindingGoCallback(ctx->w, (char *)id, (char *)req, ctx->index);
|
||||
}
|
||||
|
||||
void CgoWebViewDispatch(webview_t w, uintptr_t arg) {
|
||||
webview_dispatch(w, _webview_dispatch_cb, (void *)arg);
|
||||
}
|
||||
|
||||
void CgoWebViewBind(webview_t w, const char *name, uintptr_t index) {
|
||||
struct binding_context *ctx = calloc(1, sizeof(struct binding_context));
|
||||
ctx->w = w;
|
||||
ctx->index = index;
|
||||
webview_bind(w, name, _webview_binding_cb, (void *)ctx);
|
||||
}
|
||||
|
||||
void CgoWebViewUnbind(webview_t w, const char *name) {
|
||||
webview_unbind(w, name);
|
||||
}
|
3
webkit-4.1/go.mod
Normal file
|
@ -0,0 +1,3 @@
|
|||
module github.com/arzumify/webview_go-4.1
|
||||
|
||||
go 1.13
|
0
webkit-4.1/go.sum
Normal file
27
webkit-4.1/libs/mswebview2/LICENSE
Normal file
|
@ -0,0 +1,27 @@
|
|||
Copyright (C) Microsoft Corporation. All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are
|
||||
met:
|
||||
|
||||
* Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
* Redistributions in binary form must reproduce the above
|
||||
copyright notice, this list of conditions and the following disclaimer
|
||||
in the documentation and/or other materials provided with the
|
||||
distribution.
|
||||
* The name of Microsoft Corporation, or the names of its contributors
|
||||
may not be used to endorse or promote products derived from this
|
||||
software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
23568
webkit-4.1/libs/mswebview2/include/WebView2.h
Normal file
1
webkit-4.1/libs/mswebview2/version.txt
Normal file
|
@ -0,0 +1 @@
|
|||
1.0.1150.38
|
22
webkit-4.1/libs/webview/LICENSE
Normal file
|
@ -0,0 +1,22 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2017 Serge Zaitsev
|
||||
Copyright (c) 2022 Steffen André Langnes
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
3597
webkit-4.1/libs/webview/include/webview.h
Normal file
1
webkit-4.1/libs/webview/version.txt
Normal file
|
@ -0,0 +1 @@
|
|||
fb6b17d826041411e6346cd9a785a5ceba7987c4
|
1
webkit-4.1/webview.cc
Normal file
|
@ -0,0 +1 @@
|
|||
#include "webview.h"
|
327
webkit-4.1/webview.go
Normal file
|
@ -0,0 +1,327 @@
|
|||
package webview
|
||||
|
||||
/*
|
||||
#cgo CFLAGS: -I${SRCDIR}/libs/webview/include
|
||||
#cgo CXXFLAGS: -I${SRCDIR}/libs/webview/include -DWEBVIEW_STATIC
|
||||
|
||||
#cgo linux openbsd freebsd netbsd CXXFLAGS: -DWEBVIEW_GTK -std=c++11
|
||||
#cgo linux openbsd freebsd netbsd LDFLAGS: -ldl
|
||||
#cgo linux openbsd freebsd netbsd pkg-config: gtk+-3.0 webkit2gtk-4.1
|
||||
|
||||
#cgo darwin CXXFLAGS: -DWEBVIEW_COCOA -std=c++11
|
||||
#cgo darwin LDFLAGS: -framework WebKit -ldl
|
||||
|
||||
#cgo windows CXXFLAGS: -DWEBVIEW_EDGE -std=c++14 -I${SRCDIR}/libs/mswebview2/include
|
||||
#cgo windows LDFLAGS: -static -ladvapi32 -lole32 -lshell32 -lshlwapi -luser32 -lversion
|
||||
|
||||
#include "webview.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdint.h>
|
||||
|
||||
void CgoWebViewDispatch(webview_t w, uintptr_t arg);
|
||||
void CgoWebViewBind(webview_t w, const char *name, uintptr_t index);
|
||||
void CgoWebViewUnbind(webview_t w, const char *name);
|
||||
*/
|
||||
import "C"
|
||||
import (
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"reflect"
|
||||
"runtime"
|
||||
"sync"
|
||||
"unsafe"
|
||||
)
|
||||
|
||||
func init() {
|
||||
// Ensure that main.main is called from the main thread
|
||||
runtime.LockOSThread()
|
||||
}
|
||||
|
||||
// Hints are used to configure window sizing and resizing
|
||||
type Hint int
|
||||
|
||||
const (
|
||||
// Width and height are default size
|
||||
HintNone = C.WEBVIEW_HINT_NONE
|
||||
|
||||
// Window size can not be changed by a user
|
||||
HintFixed = C.WEBVIEW_HINT_FIXED
|
||||
|
||||
// Width and height are minimum bounds
|
||||
HintMin = C.WEBVIEW_HINT_MIN
|
||||
|
||||
// Width and height are maximum bounds
|
||||
HintMax = C.WEBVIEW_HINT_MAX
|
||||
)
|
||||
|
||||
type WebView interface {
|
||||
|
||||
// Run runs the main loop until it's terminated. After this function exits -
|
||||
// you must destroy the webview.
|
||||
Run()
|
||||
|
||||
// Terminate stops the main loop. It is safe to call this function from
|
||||
// a background thread.
|
||||
Terminate()
|
||||
|
||||
// Dispatch posts a function to be executed on the main thread. You normally
|
||||
// do not need to call this function, unless you want to tweak the native
|
||||
// window.
|
||||
Dispatch(f func())
|
||||
|
||||
// Destroy destroys a webview and closes the native window.
|
||||
Destroy()
|
||||
|
||||
// Window returns a native window handle pointer. When using GTK backend the
|
||||
// pointer is GtkWindow pointer, when using Cocoa backend the pointer is
|
||||
// NSWindow pointer, when using Win32 backend the pointer is HWND pointer.
|
||||
Window() unsafe.Pointer
|
||||
|
||||
// SetTitle updates the title of the native window. Must be called from the UI
|
||||
// thread.
|
||||
SetTitle(title string)
|
||||
|
||||
// SetSize updates native window size. See Hint constants.
|
||||
SetSize(w int, h int, hint Hint)
|
||||
|
||||
// Navigate navigates webview to the given URL. URL may be a properly encoded data.
|
||||
// URI. Examples:
|
||||
// w.Navigate("https://github.com/webview/webview")
|
||||
// w.Navigate("data:text/html,%3Ch1%3EHello%3C%2Fh1%3E")
|
||||
// w.Navigate("data:text/html;base64,PGgxPkhlbGxvPC9oMT4=")
|
||||
Navigate(url string)
|
||||
|
||||
// SetHtml sets the webview HTML directly.
|
||||
// Example: w.SetHtml(w, "<h1>Hello</h1>");
|
||||
SetHtml(html string)
|
||||
|
||||
// Init injects JavaScript code at the initialization of the new page. Every
|
||||
// time the webview will open a the new page - this initialization code will
|
||||
// be executed. It is guaranteed that code is executed before window.onload.
|
||||
Init(js string)
|
||||
|
||||
// Eval evaluates arbitrary JavaScript code. Evaluation happens asynchronously,
|
||||
// also the result of the expression is ignored. Use RPC bindings if you want
|
||||
// to receive notifications about the results of the evaluation.
|
||||
Eval(js string)
|
||||
|
||||
// Bind binds a callback function so that it will appear under the given name
|
||||
// as a global JavaScript function. Internally it uses webview_init().
|
||||
// Callback receives a request string and a user-provided argument pointer.
|
||||
// Request string is a JSON array of all the arguments passed to the
|
||||
// JavaScript function.
|
||||
//
|
||||
// f must be a function
|
||||
// f must return either value and error or just error
|
||||
Bind(name string, f interface{}) error
|
||||
|
||||
// Removes a callback that was previously set by Bind.
|
||||
Unbind(name string) error
|
||||
}
|
||||
|
||||
type webview struct {
|
||||
w C.webview_t
|
||||
}
|
||||
|
||||
var (
|
||||
m sync.Mutex
|
||||
index uintptr
|
||||
dispatch = map[uintptr]func(){}
|
||||
bindings = map[uintptr]func(id, req string) (interface{}, error){}
|
||||
)
|
||||
|
||||
func boolToInt(b bool) C.int {
|
||||
if b {
|
||||
return 1
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
// New calls NewWindow to create a new window and a new webview instance. If debug
|
||||
// is non-zero - developer tools will be enabled (if the platform supports them).
|
||||
func New(debug bool) WebView { return NewWindow(debug, nil) }
|
||||
|
||||
// NewWindow creates a new webview instance. If debug is non-zero - developer
|
||||
// tools will be enabled (if the platform supports them). Window parameter can be
|
||||
// a pointer to the native window handle. If it's non-null - then child WebView is
|
||||
// embedded into the given parent window. Otherwise a new window is created.
|
||||
// Depending on the platform, a GtkWindow, NSWindow or HWND pointer can be passed
|
||||
// here.
|
||||
func NewWindow(debug bool, window unsafe.Pointer) WebView {
|
||||
w := &webview{}
|
||||
w.w = C.webview_create(boolToInt(debug), window)
|
||||
return w
|
||||
}
|
||||
|
||||
func (w *webview) Destroy() {
|
||||
C.webview_destroy(w.w)
|
||||
}
|
||||
|
||||
func (w *webview) Run() {
|
||||
C.webview_run(w.w)
|
||||
}
|
||||
|
||||
func (w *webview) Terminate() {
|
||||
C.webview_terminate(w.w)
|
||||
}
|
||||
|
||||
func (w *webview) Window() unsafe.Pointer {
|
||||
return C.webview_get_window(w.w)
|
||||
}
|
||||
|
||||
func (w *webview) Navigate(url string) {
|
||||
s := C.CString(url)
|
||||
defer C.free(unsafe.Pointer(s))
|
||||
C.webview_navigate(w.w, s)
|
||||
}
|
||||
|
||||
func (w *webview) SetHtml(html string) {
|
||||
s := C.CString(html)
|
||||
defer C.free(unsafe.Pointer(s))
|
||||
C.webview_set_html(w.w, s)
|
||||
}
|
||||
|
||||
func (w *webview) SetTitle(title string) {
|
||||
s := C.CString(title)
|
||||
defer C.free(unsafe.Pointer(s))
|
||||
C.webview_set_title(w.w, s)
|
||||
}
|
||||
|
||||
func (w *webview) SetSize(width int, height int, hint Hint) {
|
||||
C.webview_set_size(w.w, C.int(width), C.int(height), C.webview_hint_t(hint))
|
||||
}
|
||||
|
||||
func (w *webview) Init(js string) {
|
||||
s := C.CString(js)
|
||||
defer C.free(unsafe.Pointer(s))
|
||||
C.webview_init(w.w, s)
|
||||
}
|
||||
|
||||
func (w *webview) Eval(js string) {
|
||||
s := C.CString(js)
|
||||
defer C.free(unsafe.Pointer(s))
|
||||
C.webview_eval(w.w, s)
|
||||
}
|
||||
|
||||
func (w *webview) Dispatch(f func()) {
|
||||
m.Lock()
|
||||
for ; dispatch[index] != nil; index++ {
|
||||
}
|
||||
dispatch[index] = f
|
||||
m.Unlock()
|
||||
C.CgoWebViewDispatch(w.w, C.uintptr_t(index))
|
||||
}
|
||||
|
||||
//export _webviewDispatchGoCallback
|
||||
func _webviewDispatchGoCallback(index unsafe.Pointer) {
|
||||
m.Lock()
|
||||
f := dispatch[uintptr(index)]
|
||||
delete(dispatch, uintptr(index))
|
||||
m.Unlock()
|
||||
f()
|
||||
}
|
||||
|
||||
//export _webviewBindingGoCallback
|
||||
func _webviewBindingGoCallback(w C.webview_t, id *C.char, req *C.char, index uintptr) {
|
||||
m.Lock()
|
||||
f := bindings[uintptr(index)]
|
||||
m.Unlock()
|
||||
jsString := func(v interface{}) string { b, _ := json.Marshal(v); return string(b) }
|
||||
status, result := 0, ""
|
||||
if res, err := f(C.GoString(id), C.GoString(req)); err != nil {
|
||||
status = -1
|
||||
result = jsString(err.Error())
|
||||
} else if b, err := json.Marshal(res); err != nil {
|
||||
status = -1
|
||||
result = jsString(err.Error())
|
||||
} else {
|
||||
status = 0
|
||||
result = string(b)
|
||||
}
|
||||
s := C.CString(result)
|
||||
defer C.free(unsafe.Pointer(s))
|
||||
C.webview_return(w, id, C.int(status), s)
|
||||
}
|
||||
|
||||
func (w *webview) Bind(name string, f interface{}) error {
|
||||
v := reflect.ValueOf(f)
|
||||
// f must be a function
|
||||
if v.Kind() != reflect.Func {
|
||||
return errors.New("only functions can be bound")
|
||||
}
|
||||
// f must return either value and error or just error
|
||||
if n := v.Type().NumOut(); n > 2 {
|
||||
return errors.New("function may only return a value or a value+error")
|
||||
}
|
||||
|
||||
binding := func(id, req string) (interface{}, error) {
|
||||
raw := []json.RawMessage{}
|
||||
if err := json.Unmarshal([]byte(req), &raw); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
isVariadic := v.Type().IsVariadic()
|
||||
numIn := v.Type().NumIn()
|
||||
if (isVariadic && len(raw) < numIn-1) || (!isVariadic && len(raw) != numIn) {
|
||||
return nil, errors.New("function arguments mismatch")
|
||||
}
|
||||
args := []reflect.Value{}
|
||||
for i := range raw {
|
||||
var arg reflect.Value
|
||||
if isVariadic && i >= numIn-1 {
|
||||
arg = reflect.New(v.Type().In(numIn - 1).Elem())
|
||||
} else {
|
||||
arg = reflect.New(v.Type().In(i))
|
||||
}
|
||||
if err := json.Unmarshal(raw[i], arg.Interface()); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
args = append(args, arg.Elem())
|
||||
}
|
||||
errorType := reflect.TypeOf((*error)(nil)).Elem()
|
||||
res := v.Call(args)
|
||||
switch len(res) {
|
||||
case 0:
|
||||
// No results from the function, just return nil
|
||||
return nil, nil
|
||||
case 1:
|
||||
// One result may be a value, or an error
|
||||
if res[0].Type().Implements(errorType) {
|
||||
if res[0].Interface() != nil {
|
||||
return nil, res[0].Interface().(error)
|
||||
}
|
||||
return nil, nil
|
||||
}
|
||||
return res[0].Interface(), nil
|
||||
case 2:
|
||||
// Two results: first one is value, second is error
|
||||
if !res[1].Type().Implements(errorType) {
|
||||
return nil, errors.New("second return value must be an error")
|
||||
}
|
||||
if res[1].Interface() == nil {
|
||||
return res[0].Interface(), nil
|
||||
}
|
||||
return res[0].Interface(), res[1].Interface().(error)
|
||||
default:
|
||||
return nil, errors.New("unexpected number of return values")
|
||||
}
|
||||
}
|
||||
|
||||
m.Lock()
|
||||
for ; bindings[index] != nil; index++ {
|
||||
}
|
||||
bindings[index] = binding
|
||||
m.Unlock()
|
||||
cname := C.CString(name)
|
||||
defer C.free(unsafe.Pointer(cname))
|
||||
C.CgoWebViewBind(w.w, cname, C.uintptr_t(index))
|
||||
return nil
|
||||
}
|
||||
|
||||
func (w *webview) Unbind(name string) error {
|
||||
cname := C.CString(name)
|
||||
defer C.free(unsafe.Pointer(cname))
|
||||
C.CgoWebViewUnbind(w.w, cname)
|
||||
return nil
|
||||
}
|
50
webkit-4.1/webview_test.go
Normal file
|
@ -0,0 +1,50 @@
|
|||
package webview
|
||||
|
||||
import (
|
||||
"flag"
|
||||
"log"
|
||||
"os"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func Example() {
|
||||
w := New(true)
|
||||
defer w.Destroy()
|
||||
w.SetTitle("Hello")
|
||||
w.Bind("noop", func() string {
|
||||
log.Println("hello")
|
||||
return "hello"
|
||||
})
|
||||
w.Bind("add", func(a, b int) int {
|
||||
return a + b
|
||||
})
|
||||
w.Bind("quit", func() {
|
||||
w.Terminate()
|
||||
})
|
||||
w.SetHtml(`<!doctype html>
|
||||
<html>
|
||||
<body>hello</body>
|
||||
<script>
|
||||
window.onload = function() {
|
||||
document.body.innerText = ` + "`hello, ${navigator.userAgent}`" + `;
|
||||
noop().then(function(res) {
|
||||
console.log('noop res', res);
|
||||
add(1, 2).then(function(res) {
|
||||
console.log('add res', res);
|
||||
quit();
|
||||
});
|
||||
});
|
||||
};
|
||||
</script>
|
||||
</html>
|
||||
)`)
|
||||
w.Run()
|
||||
}
|
||||
|
||||
func TestMain(m *testing.M) {
|
||||
flag.Parse()
|
||||
if testing.Verbose() {
|
||||
Example()
|
||||
}
|
||||
os.Exit(m.Run())
|
||||
}
|
|
@ -1,13 +1,15 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>Burgernotes</title>
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
<link rel="stylesheet" type="text/css" href="../static/css/style.css" />
|
||||
<script type="text/javascript" src="../static/js/crypto-js.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/static/css/style.css" />
|
||||
<script type="text/javascript" src="/static/js/crypto-js.js"></script>
|
||||
<script type="text/javascript" src="/static/js/marked.js"></script>
|
||||
<link rel="icon" href="/static/svg/favicon.svg">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -19,6 +21,7 @@
|
|||
<div class="bottomBar">
|
||||
<button id="removeBox" class="removeButton"></button>
|
||||
<button id="wordCountBox">0 words</button>
|
||||
<button onclick="toggleMarkdown()">Toggle Markdown</button>
|
||||
<div class="textManipulator">
|
||||
<button id="textMinusBox">-</button>
|
||||
<button id="textSizeBox">16px</button>
|
||||
|
@ -28,7 +31,7 @@
|
|||
|
||||
<div id="notesBar" class="notesBar">
|
||||
<button id="newNote" class="newNote"><img id="newNoteImage" draggable="false" alt=""
|
||||
src="../static/svg/add.svg">New note</button>
|
||||
src="/static/svg/add.svg">New note</button>
|
||||
<div id="notesDiv" class="notesDiv">
|
||||
<button class="loadingStuff" id="loadingStuff"></button>
|
||||
</div>
|
||||
|
@ -46,10 +49,10 @@
|
|||
<p id="storageThing"></p>
|
||||
<div class="section"></div>
|
||||
<p>Account managment</p>
|
||||
<button id="deleteMyAccountButton"><img src="../static/svg/delete_forever.svg">Delete my account</button>
|
||||
<button id="exportNotesButton"><img src="../static/svg/download.svg">Export notes</button>
|
||||
<button id="sessionManagerButton"><img src="../static/svg/list.svg">Session manager</button>
|
||||
<button class="lastButton" id="logOutButton"><img src="../static/svg/logout.svg">Log out</button>
|
||||
<button id="deleteMyAccountButton"><img src="/static/svg/delete_forever.svg" alt="">Delete my account</button>
|
||||
<button id="exportNotesButton"><img src="/static/svg/download.svg" alt="">Export notes</button>
|
||||
<button id="sessionManagerButton"><img src="/static/svg/list.svg" alt="">Session manager</button>
|
||||
<button class="lastButton" id="logOutButton"><img src="/static/svg/logout.svg" alt="">Log out</button>
|
||||
</div>
|
||||
<div id="sessionManagerDiv" class="optionsDiv hidden">
|
||||
<button class="exit" id="exitSessionsThing">X</button>
|
||||
|
@ -59,18 +62,20 @@
|
|||
<div class="sessionDiv" id="sessionDiv">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="errorDiv" class="optionsDiv hidden">
|
||||
<p id="errorMessageThing"></p>
|
||||
<input class="hidden" id="errorInput" type="text" placeholder=""><br></input>
|
||||
<input class="hidden" id="errorInput" type="text" placeholder=""><br>
|
||||
<button class="normalButton" id="closeErrorButton">Ok</button>
|
||||
<button class="normalButton hidden" id="cancelErrorButton">Cancel</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<textarea id="noteBox" class="noteBox"></textarea>
|
||||
<div class="noteBox">
|
||||
<textarea id="noteBox" class="noteBoxText"></textarea>
|
||||
<iframe id="markdown" style="display: none;" sandbox="allow-scripts"></iframe>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript" src="../static/js/main.js"></script>
|
||||
<script type="text/javascript" src="/static/js/main.js"></script>
|
||||
<script>
|
||||
for (let i = 0; i < 40; i++) {
|
||||
notesDiv.appendChild(loadingStuff.cloneNode())
|
||||
|
|
|
@ -1,23 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Burgernotes</title>
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
<link rel="stylesheet" type="text/css" href="../static/css/style.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h2 class="w300">{{ errorMessage }}</h2>
|
||||
{{ errorCode }} | {{ errorMessage }}
|
||||
</body>
|
||||
|
||||
<style>
|
||||
body {
|
||||
margin-left: 15px;
|
||||
}
|
||||
</style>
|
||||
|
||||
</html>
|
30
website/homeserver/index.html
Normal file
|
@ -0,0 +1,30 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>Signup - Burgernotes</title>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
<link rel="stylesheet" type="text/css" href="../static/css/style.css">
|
||||
<link rel="icon" href="/static/svg/favicon.svg">
|
||||
<script src="/static/js/hash-wasm.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<p class="credit">Image by perga (@pergagreen on discord)</p>
|
||||
<img src="/static/img/background.jpg" class="background" alt="">
|
||||
<div class="inoutdiv">
|
||||
<h2 class="w300">Homeserver</h2>
|
||||
<p>Change your Burgernotes homeserver</p>
|
||||
<p id="statusBox"></p>
|
||||
|
||||
<input type="text" value="https://" id="homeserverBox"><br>
|
||||
<button id="changeButton">Change</button><br><br>
|
||||
<p>Please put in the URL in standard format; https://, http://, etc.</p>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript" src="/static/js/homeserver.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
1
website/index.html
Normal file
|
@ -0,0 +1 @@
|
|||
<!DOCTYPE html><html><head><title>Burgernotes</title><meta charset="UTF-8" /><meta http-equiv="X-UA-Compatible" content="IE=edge" /><meta http-equiv="refresh" content="0; url=/app"><head>Redirecting...<script>window.location.replace("/app")</script>
|
|
@ -1,26 +1,32 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>Login - Burgernotes</title>
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
<link rel="stylesheet" type="text/css" href="../static/css/style.css" />
|
||||
<script src="../static/js/hash-wasm.js"></script>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/static/css/style.css" />
|
||||
<script src="/static/js/hash-wasm.js"></script>
|
||||
<link rel="icon" href="/static/svg/favicon.svg">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<p class="credit">Image by perga (@pergagreen on discord)</p>
|
||||
<img src="/static/img/background.jpg" class="background" alt="">
|
||||
<div class="inoutdiv">
|
||||
<h2 class="w300">Login</h2>
|
||||
<p id="statusBox"></p>
|
||||
<span id="inputNameBox" style="margin-right: 10px;color: var(--text-color);"></span><input id="usernameBox" class="hidden" type="text" placeholder="Enter your username">
|
||||
<span id="inputNameBox" style="margin-right: 10px;color: var(--text-color);"></span>
|
||||
<input id="usernameBox" class="hidden" type="text" placeholder="Enter your username">
|
||||
<input id="passwordBox" class="hidden" type="password" placeholder="Enter your password">
|
||||
<button id="signupButton">Next</button>
|
||||
<button id="backButton" class="hidden">Back</button><br><br>
|
||||
<p>Don't have an account? If so, <a href="../signup/index.html">Create one here!</a></p>
|
||||
<a href="../privacy/index.html">Privacy & Terms</a>
|
||||
<button id="backButton" class="hidden">Back</button>
|
||||
<br>
|
||||
<br>
|
||||
<p>Don't have an account? If so, <a href="/signup/">Create one here!</a></p>
|
||||
<div style="display: flex;"><p id="homeserver">Your homeserver is loading... </p><div style="display: flex;flex-direction: column;justify-content: center;"><a href="/homeserver">Change</a></div></div>
|
||||
<a href="/privacy/">Privacy & Terms</a>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript" src="../static/js/login.js"></script>
|
||||
|
|
|
@ -1,15 +1,16 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>Burgernotes</title>
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<head>
|
||||
Logging out..
|
||||
<link rel="icon" href="/static/svg/favicon.svg">
|
||||
</head>
|
||||
<p>Logging out...</p>
|
||||
<script>
|
||||
localStorage.removeItem("DONOTSHARE-secretkey")
|
||||
localStorage.removeItem("DONOTSHARE-password")
|
||||
localStorage.removeItem("CACHE-username")
|
||||
window.location.replace("../login/index.html")
|
||||
window.location.replace("/login")
|
||||
</script>
|
||||
|
|
|
@ -1,12 +1,13 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>Burgernotes Privacy & Terms</title>
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
<link rel="stylesheet" type="text/css" href="../static/css/style.css" />
|
||||
<link rel="stylesheet" type="text/css" href="/static/css/style.css" />
|
||||
<link rel="icon" href="/static/svg/favicon.svg">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -29,21 +30,21 @@
|
|||
<li>Web browser "User agent"</li>
|
||||
</ul>
|
||||
<h2 class="w300">Information we collect while using our services</h2>
|
||||
<p>When you create an note, we collect and use this information:</p>
|
||||
<p>When you create a note, we collect and use this information:</p>
|
||||
<ul>
|
||||
<li>Encrypted note content and title</li>
|
||||
<li>Note creator</li>
|
||||
<li>Note creation date</li>
|
||||
<li>Note last edited date</li>
|
||||
</ul>
|
||||
<p>When you edit an note, we collect and use this information:</p>
|
||||
<p>When you edit a note, we collect and use this information:</p>
|
||||
<ul>
|
||||
<li>Encrypted note content and title</li>
|
||||
<li>Note last edited date</li>
|
||||
</ul>
|
||||
<h2 class="w300">How we use your data</h2>
|
||||
<p>We use your data to make our services work. We don't share your information with third-parties.</p>
|
||||
<h2 class="w300">We can't see notes you create's content and title</h2>
|
||||
<h2 class="w300">We can't see the content and title of the notes you create</h2>
|
||||
<p>Your notes are <a href="https://en.wikipedia.org/wiki/End-to-end_encryption">encrypted end-to-end</a> using AES
|
||||
(Advanced Encryption Standard) 256-bit encryption.</p>
|
||||
<p>We can only see:</p>
|
||||
|
@ -69,7 +70,7 @@
|
|||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.</p>
|
||||
<br>
|
||||
<button onclick="history.back()" style="cursor: pointer; padding: 15px 20px;margin-right: auto;color: white;text-decoration: none;background-color: var(--theme-color);border-radius: 8px;border: medium;font-size: 15px;">Take me back where I was!</button>
|
||||
<button onclick="if(document.referrer!==' '){if(document.referrer!==''){window.location.href=document.referrer;}else{window.location.href='/';}window.location.href=document.referrer; }else{window.location.href='../index.html';}" style="cursor: pointer; padding: 15px 20px;margin-right: auto;color: white;text-decoration: none;background-color: var(--theme-color);border-radius: 8px;border: medium;font-size: 15px;">Take me back where I was!</button>
|
||||
<br><br>
|
||||
</body>
|
||||
|
||||
|
|
|
@ -1,17 +1,19 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>Signup - Burgernotes</title>
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
<link rel="stylesheet" type="text/css" href="../static/css/style.css" />
|
||||
<script src="../static/js/hash-wasm.js"></script>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/static/css/style.css" />
|
||||
<script src="/static/js/hash-wasm.js"></script>
|
||||
<link rel="icon" href="/static/svg/favicon.svg">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<p class="credit">Image by perga (@pergagreen on discord)</p>
|
||||
<img src="/static/img/background.jpg" class="background" alt="">
|
||||
<div class="inoutdiv">
|
||||
<h2 class="w300">Signup</h2>
|
||||
<p>Signup for a Burgernotes account</p>
|
||||
|
@ -19,10 +21,10 @@
|
|||
<input id="usernameBox" type="text" placeholder="Username">
|
||||
<input id="passwordBox" type="password" placeholder="Password"><br>
|
||||
<button id="signupButton">Signup</button><br><br>
|
||||
<p>Already have an account? If so, <a href="/login/">Login</a> instead!</p>
|
||||
<p>Please note that it's impossible to reset your password, do not forget it!</p>
|
||||
By signing up, you agree to our <a href="../privacy/index.html">Privacy & Terms</a>.<br><br>
|
||||
<p>Already have an account? If so, <a href="../login/index.html">Login</a> instead!</p><br>
|
||||
<div style="display: flex;"><p id="homeserver">Your homeserver is loading... </p><div style="display: flex;flex-direction: column;justify-content: center;"><a href="/homeserver">Change</a></div></div>
|
||||
<a href="/privacy/">Privacy & Terms</a>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript" src="../static/js/signup.js"></script>
|
||||
<script type="text/javascript" src="/static/js/signup.js"></script>
|
||||
</body>
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
@import url("../fonts/inter.css");
|
||||
|
||||
:root {
|
||||
--contrast: #eee;
|
||||
--contrast2: #fff;
|
||||
--invertdm: 0%;
|
||||
--bar: #f4f4f4;
|
||||
--editor: #ffffff;
|
||||
|
@ -23,6 +25,8 @@
|
|||
@media (prefers-color-scheme: dark) {
|
||||
:root {
|
||||
--invertdm: 100%;
|
||||
--contrast: #2d2f21;
|
||||
--contrast2: #2d2f21;
|
||||
--bar: #2d2f31;
|
||||
--editor: #202124;
|
||||
--text-color: #ffffff;
|
||||
|
@ -52,7 +56,7 @@
|
|||
}
|
||||
|
||||
.newNote img {
|
||||
filter: invert(100%)
|
||||
filter: invert(100%);
|
||||
}
|
||||
|
||||
#errorDiv p {
|
||||
|
@ -64,7 +68,7 @@
|
|||
}
|
||||
|
||||
.burgerSession img {
|
||||
filter: invert(100%) !important
|
||||
filter: invert(100%) !important;
|
||||
}
|
||||
|
||||
.links a {
|
||||
|
@ -81,16 +85,16 @@
|
|||
|
||||
.inoutdiv input {
|
||||
color: white;
|
||||
background-color: #202124;
|
||||
background-color: var(--editor);
|
||||
}
|
||||
|
||||
.flathubLogo {
|
||||
filter: invert(100%)
|
||||
filter: invert(100%);
|
||||
}
|
||||
|
||||
.feature {
|
||||
background-color: rgba(0, 0, 0, 0) !important;
|
||||
color: var(--text-color)
|
||||
color: var(--text-color);
|
||||
}
|
||||
.mainDiv .yellow {
|
||||
border-color: #e9e98d !important;
|
||||
|
@ -127,6 +131,14 @@ body {
|
|||
font-family: "Inter", sans-serif;
|
||||
}
|
||||
|
||||
.hiddenButton {
|
||||
right: 0px;
|
||||
position: fixed;
|
||||
background-color: var(--editor);
|
||||
color: var(--editor);
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
/* Web app */
|
||||
.topBar {
|
||||
position: fixed;
|
||||
|
@ -198,7 +210,6 @@ body {
|
|||
|
||||
background-color: var(--bar);
|
||||
|
||||
|
||||
border: solid;
|
||||
border-color: var(--border-color);
|
||||
border-width: 1px;
|
||||
|
@ -210,19 +221,15 @@ body {
|
|||
width: calc(100% - 14px - 4px - 7px);
|
||||
color: var(--text-color);
|
||||
background-color: #ffffff;
|
||||
|
||||
height: 35px;
|
||||
line-height: 35px;
|
||||
margin: 7px;
|
||||
padding-left: 7px;
|
||||
|
||||
border: solid;
|
||||
border-color: var(--border-color);
|
||||
border-width: 1px;
|
||||
border-radius: 8px;
|
||||
|
||||
font-size: 15px;
|
||||
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
@ -248,7 +255,6 @@ body {
|
|||
height: calc(100% - 50px - 30px - 1px);
|
||||
|
||||
background-color: var(--bar);
|
||||
|
||||
border: solid;
|
||||
border-color: var(--border-color);
|
||||
border-width: 0px;
|
||||
|
@ -270,27 +276,26 @@ body {
|
|||
margin-bottom: 0;
|
||||
background-color: var(--note-button);
|
||||
color: var(--unselected-note-button-text-color);
|
||||
border: none;
|
||||
border-radius: 8px;
|
||||
|
||||
border: solid;
|
||||
border-color: var(--border-color);
|
||||
border-width: 1px;
|
||||
|
||||
font-size: 15px;
|
||||
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
white-space: nowrap;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.notesBar .loadingStuff {
|
||||
border: none;
|
||||
|
||||
background:
|
||||
linear-gradient(0.25turn, transparent, #fff, transparent),
|
||||
linear-gradient(#eee, #eee),
|
||||
radial-gradient(38px circle at 19px 19px, #eee 50%, transparent 51%),
|
||||
linear-gradient(#eee, #eee);
|
||||
linear-gradient(0.25turn, transparent, var(--contrast2), transparent),
|
||||
linear-gradient(var(--contrast), var(--contrast)),
|
||||
radial-gradient(38px circle at 19px 19px, #eee 50%, transparent 51%),
|
||||
linear-gradient(var(--contrast), var(--contrast));
|
||||
background-repeat: no-repeat;
|
||||
background-size: 315px 250px, 315px 180px, 100px 100px, 225px 30px;
|
||||
background-position: -315px 0, 0 0, 0px 190px, 50px 195px;
|
||||
|
@ -317,7 +322,6 @@ body {
|
|||
background-color: rgba(0, 0, 0, 0);
|
||||
border: none;
|
||||
font-size: 16px;
|
||||
|
||||
margin-bottom: 5px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
@ -341,10 +345,25 @@ body {
|
|||
width: calc(100% - 180px - 7px - 6px);
|
||||
height: calc(100% - 50px - 6px - 8px - 30px);
|
||||
font-family: "Inter", sans-serif;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.noteBoxText {
|
||||
background-color: var(--editor);
|
||||
color: var(--text-color);
|
||||
border: none;
|
||||
width: 100%;
|
||||
font-family: "Inter", sans-serif;
|
||||
}
|
||||
|
||||
iframe#markdown {
|
||||
width: 100%;
|
||||
border: none;
|
||||
border-left: solid var(--bar) 1px;
|
||||
}
|
||||
|
||||
.noteBox:focus {
|
||||
outline: none
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.optionsCoverDiv {
|
||||
|
@ -360,14 +379,14 @@ body {
|
|||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
width: 300px;
|
||||
position: fixed;
|
||||
background-color: var(--option-background);
|
||||
padding: 10px;
|
||||
color: var(--text-color);
|
||||
border-radius: 8px;
|
||||
min-width: 338.5px;
|
||||
min-width: 300px;
|
||||
z-index: 3;
|
||||
|
||||
}
|
||||
|
||||
.optionsDiv button {
|
||||
|
@ -384,6 +403,7 @@ body {
|
|||
background-color: var(--theme-color);
|
||||
border-radius: 8px;
|
||||
cursor: pointer;
|
||||
|
||||
}
|
||||
|
||||
.optionsDiv .normalButton {
|
||||
|
@ -398,7 +418,7 @@ body {
|
|||
.optionsDiv input {
|
||||
width: calc(100% - 12px);
|
||||
height: 25px;
|
||||
background-color: ffffff;
|
||||
background-color: #ffffff;
|
||||
padding-left: 5px;
|
||||
padding-right: 5px;
|
||||
margin-bottom: 7px;
|
||||
|
@ -511,8 +531,11 @@ body {
|
|||
/* Sign up/log in div */
|
||||
|
||||
.inoutdiv {
|
||||
border-radius: 8px;
|
||||
margin: 10%;
|
||||
padding: 15px;
|
||||
padding: 30px;
|
||||
border: solid 1px var(--border-color);
|
||||
background-color: var(--bar);
|
||||
}
|
||||
|
||||
.inoutdiv input {
|
||||
|
@ -526,6 +549,7 @@ body {
|
|||
border-color: var(--border-color);
|
||||
border-width: 1px;
|
||||
border-radius: 8px;
|
||||
|
||||
}
|
||||
|
||||
.inoutdiv button {
|
||||
|
@ -540,6 +564,7 @@ body {
|
|||
border-radius: 8px;
|
||||
|
||||
font-size: 14px;
|
||||
|
||||
}
|
||||
|
||||
.inoutdiv a {
|
||||
|
@ -547,6 +572,23 @@ body {
|
|||
text-align: center;
|
||||
}
|
||||
|
||||
.background {
|
||||
position: fixed;
|
||||
z-index: -2;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
.credit {
|
||||
position: fixed;
|
||||
left: 5px;
|
||||
color: white;
|
||||
z-index: -1;
|
||||
margin: 0;
|
||||
bottom: 5px;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
display: none !important;
|
||||
}
|
||||
|
@ -661,6 +703,24 @@ body {
|
|||
.links a {
|
||||
margin-left: 5px;
|
||||
text-decoration: none;
|
||||
background-color: var(--bar);
|
||||
color: var(--text-color);
|
||||
padding: 10px;
|
||||
padding-top: 2.5px;
|
||||
margin-bottom: 10px;
|
||||
border-radius: 10px;
|
||||
transition: background-color .2s;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.links a:hover {
|
||||
background-color: var(--editor);
|
||||
}
|
||||
|
||||
.links a img {
|
||||
transform: translateY(5px);
|
||||
padding-right: 10px;
|
||||
filter: invert(var(--invertdm));
|
||||
}
|
||||
|
||||
.links a:hover {
|
||||
|
|
BIN
website/static/img/background.jpg
Normal file
After Width: | Height: | Size: 1.4 MiB |
54
website/static/js/homeserver.js
Normal file
|
@ -0,0 +1,54 @@
|
|||
let homeserverBox = document.getElementById("homeserverBox")
|
||||
let statusBox = document.getElementById("statusBox")
|
||||
let changeButton = document.getElementById("changeButton")
|
||||
|
||||
function showElements(yesorno) {
|
||||
if (!yesorno) {
|
||||
homeserverBox.classList.add("hidden")
|
||||
changeButton.classList.add("hidden")
|
||||
}
|
||||
else {
|
||||
homeserverBox.classList.remove("hidden")
|
||||
changeButton.classList.remove("hidden")
|
||||
}
|
||||
}
|
||||
|
||||
changeButton.addEventListener("click", (event) => {
|
||||
async function doStuff() {
|
||||
let remote = homeserverBox.value
|
||||
|
||||
if (remote == "") {
|
||||
statusBox.innerText = "A homeserver is required!"
|
||||
return
|
||||
}
|
||||
|
||||
showElements(false)
|
||||
statusBox.innerText = "Connecting to homeserver..."
|
||||
|
||||
fetch(remote + "/api/version")
|
||||
.then((response) => response)
|
||||
.then((response) => {
|
||||
async function doStuff() {
|
||||
if (response.status == 200) {
|
||||
localStorage.setItem("homeserverURL", remote)
|
||||
|
||||
if (document.referrer !== "") {
|
||||
window.location.href = document.referrer;
|
||||
}
|
||||
else {
|
||||
window.location.href = "https://notes.hectabit.org/login";
|
||||
}
|
||||
}
|
||||
else if (response.status == 404) {
|
||||
statusBox.innerText = "Not a valid homeserver!"
|
||||
}
|
||||
else {
|
||||
statusBox.innerText = "Something went wrong!"
|
||||
showElements(true)
|
||||
}
|
||||
}
|
||||
doStuff()
|
||||
});
|
||||
}
|
||||
doStuff()
|
||||
});
|
|
@ -1,14 +1,20 @@
|
|||
if (localStorage.getItem("DONOTSHARE-secretkey") !== null) {
|
||||
window.location.replace("../app/index.html")
|
||||
window.location.replace("/app/")
|
||||
document.body.innerHTML = "Redirecting..."
|
||||
throw new Error();
|
||||
}
|
||||
if (localStorage.getItem("DONOTSHARE-password") !== null) {
|
||||
window.location.replace("../app/index.html")
|
||||
window.location.replace("/app/")
|
||||
document.body.innerHTML = "Redirecting..."
|
||||
throw new Error();
|
||||
}
|
||||
|
||||
let remote = localStorage.getItem("homeserverURL")
|
||||
if (remote == null) {
|
||||
localStorage.setItem("homeserverURL", "https://notes.hectabit.org")
|
||||
remote = "https://notes.hectabit.org"
|
||||
}
|
||||
|
||||
let usernameBox = document.getElementById("usernameBox")
|
||||
let passwordBox = document.getElementById("passwordBox")
|
||||
let statusBox = document.getElementById("statusBox")
|
||||
|
@ -22,20 +28,20 @@ inputNameBox.innerText = "Username:"
|
|||
let currentInputType = 0
|
||||
|
||||
function showInput(inputType) {
|
||||
if (inputType == 0) {
|
||||
if (inputType === 0) {
|
||||
usernameBox.classList.remove("hidden")
|
||||
passwordBox.classList.add("hidden")
|
||||
backButton.classList.add("hidden")
|
||||
inputNameBox.innerText = "Username:"
|
||||
statusBox.innerText = "Login to your Burgernotes account!"
|
||||
currentInputType = 0
|
||||
} else if (inputType == 1) {
|
||||
} else if (inputType === 1) {
|
||||
usernameBox.classList.add("hidden")
|
||||
passwordBox.classList.remove("hidden")
|
||||
backButton.classList.remove("hidden")
|
||||
inputNameBox.innerText = "Password:"
|
||||
currentInputType = 1
|
||||
} else if (inputType == 2) {
|
||||
} else if (inputType === 2) {
|
||||
usernameBox.classList.add("hidden")
|
||||
passwordBox.classList.add("hidden")
|
||||
signupButton.classList.add("hidden")
|
||||
|
@ -65,9 +71,13 @@ function showElements(yesorno) {
|
|||
}
|
||||
}
|
||||
|
||||
signupButton.addEventListener("click", (event) => {
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
document.getElementById("homeserver").innerText = "Your homeserver is: " + remote + ". "
|
||||
});
|
||||
|
||||
signupButton.addEventListener("click", () => {
|
||||
if (passwordBox.classList.contains("hidden")) {
|
||||
if (usernameBox.value == "") {
|
||||
if (usernameBox.value === "") {
|
||||
statusBox.innerText = "A username is required!"
|
||||
return
|
||||
} else {
|
||||
|
@ -79,7 +89,7 @@ signupButton.addEventListener("click", (event) => {
|
|||
let username = usernameBox.value
|
||||
let password = passwordBox.value
|
||||
|
||||
if (password == "") {
|
||||
if (password === "") {
|
||||
statusBox.innerText = "A password is required!"
|
||||
return
|
||||
}
|
||||
|
@ -89,7 +99,7 @@ signupButton.addEventListener("click", (event) => {
|
|||
statusBox.innerText = "Signing in..."
|
||||
|
||||
async function hashpassold(pass) {
|
||||
const key = await hashwasm.argon2id({
|
||||
return await hashwasm.argon2id({
|
||||
password: pass,
|
||||
salt: await hashwasm.sha512(pass),
|
||||
parallelism: 1,
|
||||
|
@ -97,9 +107,8 @@ signupButton.addEventListener("click", (event) => {
|
|||
memorySize: 512,
|
||||
hashLength: 32,
|
||||
outputType: "encoded"
|
||||
});
|
||||
return key
|
||||
};
|
||||
})
|
||||
}
|
||||
|
||||
async function hashpass(pass) {
|
||||
let key = pass
|
||||
|
@ -107,9 +116,9 @@ signupButton.addEventListener("click", (event) => {
|
|||
key = await hashwasm.sha3(key)
|
||||
}
|
||||
return key
|
||||
};
|
||||
}
|
||||
|
||||
fetch("https://notes.hectabit.org/api/login", {
|
||||
fetch(remote + "/api/login", {
|
||||
method: "POST",
|
||||
body: JSON.stringify({
|
||||
username: username,
|
||||
|
@ -125,15 +134,15 @@ signupButton.addEventListener("click", (event) => {
|
|||
.then((response) => {
|
||||
async function doStuff() {
|
||||
let responseData = await response.json()
|
||||
if (response.status == 200) {
|
||||
if (response.status === 200) {
|
||||
localStorage.setItem("DONOTSHARE-secretkey", responseData["key"])
|
||||
localStorage.setItem("DONOTSHARE-password", await hashwasm.sha512(password))
|
||||
|
||||
window.location.href = "../app/index.html"
|
||||
window.location.href = "/app/"
|
||||
}
|
||||
else if (response.status == 401) {
|
||||
else if (response.status === 401) {
|
||||
console.log("Trying oldhash")
|
||||
fetch("https://notes.hectabit.org/api/login", {
|
||||
fetch(remote + "/api/login", {
|
||||
method: "POST",
|
||||
body: JSON.stringify({
|
||||
username: username,
|
||||
|
@ -149,13 +158,13 @@ signupButton.addEventListener("click", (event) => {
|
|||
.then((response) => {
|
||||
async function doStuff2() {
|
||||
let responseData = await response.json()
|
||||
if (response.status == 200) {
|
||||
if (response.status === 200) {
|
||||
localStorage.setItem("DONOTSHARE-secretkey", responseData["key"])
|
||||
localStorage.setItem("DONOTSHARE-password", await hashwasm.sha512(password))
|
||||
|
||||
window.location.href = "../app/index.html"
|
||||
window.location.href = "/app/"
|
||||
}
|
||||
else if (response.status == 401) {
|
||||
else if (response.status === 401) {
|
||||
statusBox.innerText = "Wrong username or password..."
|
||||
showInput(1)
|
||||
showElements(true)
|
||||
|
@ -182,7 +191,7 @@ signupButton.addEventListener("click", (event) => {
|
|||
}
|
||||
});
|
||||
|
||||
backButton.addEventListener("click", (event) => {
|
||||
backButton.addEventListener("click", () => {
|
||||
showInput(0)
|
||||
});
|
||||
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
if (localStorage.getItem("DONOTSHARE-secretkey") === null) {
|
||||
window.location.replace("../login/index.html")
|
||||
window.location.replace("/login")
|
||||
document.body.innerHTML = "Redirecting..."
|
||||
throw new Error();
|
||||
}
|
||||
if (localStorage.getItem("DONOTSHARE-password") === null) {
|
||||
window.location.replace("../login/index.html")
|
||||
window.location.replace("/login")
|
||||
document.body.innerHTML = "Redirecting..."
|
||||
throw new Error();
|
||||
}
|
||||
|
@ -13,18 +13,18 @@ if (localStorage.getItem("CACHE-username") !== null) {
|
|||
document.getElementById("usernameBox").innerText = localStorage.getItem("CACHE-username")
|
||||
}
|
||||
|
||||
function formatBytes(a, b = 2) { if (!+a) return "0 Bytes"; const c = 0 > b ? 0 : b, d = Math.floor(Math.log(a) / Math.log(1000)); return `${parseFloat((a / Math.pow(1000, d)).toFixed(c))} ${["Bytes", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"][d]}` }
|
||||
|
||||
function truncateString(str, num) {
|
||||
if (str.length > num) {
|
||||
return str.slice(0, num) + "...";
|
||||
} else {
|
||||
return str;
|
||||
}
|
||||
let remote = localStorage.getItem("homeserverURL")
|
||||
if (remote == null) {
|
||||
localStorage.setItem("homeserverURL", "https://notes.hectabit.org")
|
||||
remote = "https://notes.hectabit.org"
|
||||
}
|
||||
|
||||
function formatBytes(a, b = 2) { if (!+a) return "0 Bytes"; const c = 0 > b ? 0 : b, d = Math.floor(Math.log(a) / Math.log(1000)); return `${parseFloat((a / Math.pow(1000, d)).toFixed(c))} ${["Bytes", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"][d]}` }
|
||||
|
||||
let secretkey = localStorage.getItem("DONOTSHARE-secretkey")
|
||||
let password = localStorage.getItem("DONOTSHARE-password")
|
||||
let currentFontSize = 16
|
||||
let markdowntoggle = false
|
||||
|
||||
let usernameBox = document.getElementById("usernameBox")
|
||||
let optionsCoverDiv = document.getElementById("optionsCoverDiv")
|
||||
|
@ -39,7 +39,6 @@ let exitSessionsThing = document.getElementById("exitSessionsThing")
|
|||
let sessionManagerButton = document.getElementById("sessionManagerButton")
|
||||
let sessionManagerDiv = document.getElementById("sessionManagerDiv")
|
||||
let sessionDiv = document.getElementById("sessionDiv")
|
||||
let mfaDiv = document.getElementById("mfaDiv")
|
||||
let deleteMyAccountButton = document.getElementById("deleteMyAccountButton")
|
||||
let storageThing = document.getElementById("storageThing")
|
||||
let storageProgressThing = document.getElementById("storageProgressThing")
|
||||
|
@ -50,8 +49,13 @@ let notesDiv = document.getElementById("notesDiv")
|
|||
let newNote = document.getElementById("newNote")
|
||||
let noteBox = document.getElementById("noteBox")
|
||||
let loadingStuff = document.getElementById("loadingStuff")
|
||||
let burgerButton = document.getElementById("burgerButton")
|
||||
let exportNotesButton = document.getElementById("exportNotesButton")
|
||||
let markdown = document.getElementById('markdown');
|
||||
let textSizeBox = document.getElementById('textSizeBox');
|
||||
let textPlusBox = document.getElementById('textPlusBox');
|
||||
let textMinusBox = document.getElementById('textMinusBox');
|
||||
let wordCountBox = document.getElementById('wordCountBox');
|
||||
let removeBox = document.getElementById("removeBox")
|
||||
|
||||
let selectedNote = 0
|
||||
let timer
|
||||
|
@ -64,6 +68,8 @@ if (/Android|iPhone|iPod/i.test(navigator.userAgent)) {
|
|||
noteBox.style.fontSize = "18px"
|
||||
noteBox.classList.add("hidden")
|
||||
|
||||
let touchstartX, touchstartY, touchendX, touchendY
|
||||
|
||||
notesBar.addEventListener("touchstart", function (event) {
|
||||
touchstartX = event.changedTouches[0].screenX;
|
||||
touchstartY = event.changedTouches[0].screenY;
|
||||
|
@ -90,7 +96,7 @@ if (/Android|iPhone|iPod/i.test(navigator.userAgent)) {
|
|||
if (touchendX > touchstartX + 75) {
|
||||
notesBar.style.width = "calc(100% - 10px)";
|
||||
noteBox.style.width = "10px"
|
||||
if (selectedNote != 0) {
|
||||
if (selectedNote !== 0) {
|
||||
noteBox.readOnly = true
|
||||
}
|
||||
notesDiv.classList.remove("hidden")
|
||||
|
@ -101,7 +107,7 @@ if (/Android|iPhone|iPod/i.test(navigator.userAgent)) {
|
|||
if (touchendX < touchstartX - 75) {
|
||||
noteBox.style.width = "calc(100% - 30px)";
|
||||
notesBar.style.width = "10px"
|
||||
if (selectedNote != 0) {
|
||||
if (selectedNote !== 0) {
|
||||
noteBox.readOnly = false
|
||||
}
|
||||
notesDiv.classList.add("hidden")
|
||||
|
@ -123,50 +129,11 @@ function displayError(message) {
|
|||
errorMessageThing.innerHTML = message
|
||||
}
|
||||
|
||||
closeErrorButton.addEventListener("click", (event) => {
|
||||
closeErrorButton.addEventListener("click", () => {
|
||||
errorDiv.classList.add("hidden")
|
||||
optionsCoverDiv.classList.add("hidden")
|
||||
});
|
||||
|
||||
function displayPrompt(message, placeholdertext, callback) {
|
||||
errorMessageThing.innerText = message
|
||||
errorInput.value = ""
|
||||
errorInput.placeholder = placeholdertext
|
||||
|
||||
closeErrorButton.addEventListener("click", (event) => {
|
||||
if (callback) {
|
||||
callback(errorInput.value)
|
||||
callback = undefined
|
||||
}
|
||||
});
|
||||
errorInput.addEventListener("keyup", (event) => {
|
||||
if (event.key == "Enter") {
|
||||
callback(errorInput.value)
|
||||
callback = undefined
|
||||
|
||||
errorDiv.classList.add("hidden")
|
||||
optionsCoverDiv.classList.add("hidden")
|
||||
errorInput.classList.add("hidden")
|
||||
cancelErrorButton.classList.add("hidden")
|
||||
}
|
||||
});
|
||||
cancelErrorButton.addEventListener("click", (event) => {
|
||||
callback = undefined
|
||||
errorDiv.classList.add("hidden")
|
||||
optionsCoverDiv.classList.add("hidden")
|
||||
errorInput.classList.add("hidden")
|
||||
cancelErrorButton.classList.add("hidden")
|
||||
});
|
||||
|
||||
errorDiv.classList.remove("hidden")
|
||||
optionsCoverDiv.classList.remove("hidden")
|
||||
errorInput.classList.remove("hidden")
|
||||
cancelErrorButton.classList.remove("hidden")
|
||||
|
||||
errorInput.focus()
|
||||
}
|
||||
|
||||
closeErrorButton.addEventListener("click", (event) => {
|
||||
closeErrorButton.addEventListener("click", () => {
|
||||
errorDiv.classList.add("hidden")
|
||||
optionsCoverDiv.classList.add("hidden")
|
||||
errorInput.classList.add("hidden")
|
||||
|
@ -174,9 +141,37 @@ closeErrorButton.addEventListener("click", (event) => {
|
|||
});
|
||||
|
||||
function updateFont() {
|
||||
let currentFontSize = localStorage.getItem("SETTING-fontsize")
|
||||
currentFontSize = localStorage.getItem("SETTING-fontsize")
|
||||
noteBox.style.fontSize = currentFontSize + "px"
|
||||
textSizeBox.innerText = currentFontSize + "px"
|
||||
if (markdowntoggle) {
|
||||
markdown.srcdoc = "<!DOCTYPE html><html lang='en'><style>html { height: 100% } body { font-family: 'Inter', sans-serif; height: 100%; color: " + getComputedStyle(document.documentElement).getPropertyValue('--text-color') + "; font-size: " + currentFontSize + "px; }</style>" + marked.parse(noteBox.value) + "</html>";
|
||||
}
|
||||
}
|
||||
|
||||
async function waitforedit() {
|
||||
while(true) {
|
||||
await fetch(remote + "/api/waitforedit", {
|
||||
method: "POST",
|
||||
body: JSON.stringify({
|
||||
"secretKey": localStorage.getItem("DONOTSHARE-secretkey")
|
||||
}),
|
||||
headers: {
|
||||
"Content-Type": "application/json; charset=UTF-8"
|
||||
}
|
||||
})
|
||||
.then(async (response) => {
|
||||
async function doStuff() {
|
||||
const data = await response.json();
|
||||
// Access the "note" field from the response
|
||||
const note = data["note"];
|
||||
if (note === selectedNote) {
|
||||
selectNote(selectedNote)
|
||||
}
|
||||
}
|
||||
doStuff()
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
if (localStorage.getItem("SETTING-fontsize") === null) {
|
||||
|
@ -186,18 +181,27 @@ if (localStorage.getItem("SETTING-fontsize") === null) {
|
|||
updateFont()
|
||||
}
|
||||
|
||||
textPlusBox.addEventListener("click", (event) => {
|
||||
textPlusBox.addEventListener("click", () => {
|
||||
localStorage.setItem("SETTING-fontsize", String(Number(localStorage.getItem("SETTING-fontsize")) + Number(1)))
|
||||
updateFont()
|
||||
});
|
||||
textMinusBox.addEventListener("click", (event) => {
|
||||
textMinusBox.addEventListener("click", () => {
|
||||
localStorage.setItem("SETTING-fontsize", String(Number(localStorage.getItem("SETTING-fontsize")) - Number(1)))
|
||||
updateFont()
|
||||
});
|
||||
|
||||
|
||||
function truncateString(str, num) {
|
||||
if (str.length > num) {
|
||||
return str.slice(0, num) + "..";
|
||||
} else {
|
||||
return str;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function updateUserInfo() {
|
||||
fetch("https://notes.hectabit.org/api/userinfo", {
|
||||
fetch(remote + "/api/userinfo", {
|
||||
method: "POST",
|
||||
body: JSON.stringify({
|
||||
secretKey: secretkey
|
||||
|
@ -206,19 +210,19 @@ function updateUserInfo() {
|
|||
"Content-Type": "application/json; charset=UTF-8"
|
||||
}
|
||||
})
|
||||
.catch((error) => {
|
||||
.catch(() => {
|
||||
noteBox.readOnly = true
|
||||
noteBox.value = ""
|
||||
noteBox.placeholder = "Failed to connect to the server.\nPlease check your internet connection."
|
||||
})
|
||||
.then((response) => {
|
||||
async function doStuff() {
|
||||
if (response.status == 500) {
|
||||
if (response.status === 500) {
|
||||
displayError("Something went wrong! Signing you out..")
|
||||
closeErrorButton.classList.add("hidden")
|
||||
usernameBox.innerText = ""
|
||||
setTimeout(function () {
|
||||
window.location.replace("../logout/index.html")
|
||||
window.location.replace("/logout")
|
||||
}, 2500);
|
||||
} else {
|
||||
let responseData = await response.json()
|
||||
|
@ -234,21 +238,21 @@ function updateUserInfo() {
|
|||
doStuff()
|
||||
});
|
||||
}
|
||||
usernameBox.addEventListener("click", (event) => {
|
||||
usernameBox.addEventListener("click", () => {
|
||||
optionsCoverDiv.classList.remove("hidden")
|
||||
optionsDiv.classList.remove("hidden")
|
||||
updateUserInfo()
|
||||
});
|
||||
logOutButton.addEventListener("click", (event) => {
|
||||
window.location.replace("../logout/index.html")
|
||||
logOutButton.addEventListener("click", () => {
|
||||
window.location.replace("/logout")
|
||||
});
|
||||
exitThing.addEventListener("click", (event) => {
|
||||
exitThing.addEventListener("click", () => {
|
||||
optionsDiv.classList.add("hidden")
|
||||
optionsCoverDiv.classList.add("hidden")
|
||||
});
|
||||
deleteMyAccountButton.addEventListener("click", (event) => {
|
||||
if (confirm("Are you REALLY sure that you want to delete your account? There's no going back!") == true) {
|
||||
fetch("https://notes.hectabit.org/api/deleteaccount", {
|
||||
deleteMyAccountButton.addEventListener("click", () => {
|
||||
if (confirm("Are you REALLY sure that you want to delete your account? There's no going back!") === true) {
|
||||
fetch(remote + "/api/deleteaccount", {
|
||||
method: "POST",
|
||||
body: JSON.stringify({
|
||||
secretKey: secretkey
|
||||
|
@ -257,21 +261,20 @@ deleteMyAccountButton.addEventListener("click", (event) => {
|
|||
"Content-Type": "application/json; charset=UTF-8"
|
||||
}
|
||||
})
|
||||
.then((response) => response)
|
||||
.then((response) => {
|
||||
if (response.status == 200) {
|
||||
window.location.href = "../logout/index.html"
|
||||
if (response.status === 200) {
|
||||
window.location.href = "/logout"
|
||||
} else {
|
||||
displayError("Failed to delete account (HTTP error code " + response.status + ")")
|
||||
}
|
||||
})
|
||||
}
|
||||
});
|
||||
sessionManagerButton.addEventListener("click", (event) => {
|
||||
sessionManagerButton.addEventListener("click", () => {
|
||||
optionsDiv.classList.add("hidden")
|
||||
sessionManagerDiv.classList.remove("hidden")
|
||||
|
||||
fetch("https://notes.hectabit.org/api/sessions/list", {
|
||||
fetch(remote + "/api/sessions/list", {
|
||||
method: "POST",
|
||||
body: JSON.stringify({
|
||||
secretKey: secretkey
|
||||
|
@ -280,21 +283,21 @@ sessionManagerButton.addEventListener("click", (event) => {
|
|||
"Content-Type": "application/json; charset=UTF-8"
|
||||
}
|
||||
})
|
||||
.then((response) => response)
|
||||
.then((response) => {
|
||||
async function doStuff() {
|
||||
let responseData = await response.json()
|
||||
document.querySelectorAll(".burgerSession").forEach((el) => el.remove());
|
||||
let ua;
|
||||
for (let i in responseData) {
|
||||
let sessionElement = document.createElement("div")
|
||||
let sessionText = document.createElement("p")
|
||||
let sessionImage = document.createElement("img")
|
||||
let sessionRemoveButton = document.createElement("button")
|
||||
sessionText.classList.add("w300")
|
||||
if (responseData[i]["thisSession"] == true) {
|
||||
sessionText.innerText = "(current) " + truncateString(responseData[i]["device"], 18)
|
||||
if (responseData[i]["thisSession"] === true) {
|
||||
sessionText.innerText = "(current) " + responseData[i]["device"]
|
||||
} else {
|
||||
sessionText.innerText = truncateString(responseData[i]["device"], 27)
|
||||
sessionText.innerText = responseData[i]["device"]
|
||||
}
|
||||
sessionText.title = responseData[i]["device"]
|
||||
sessionRemoveButton.innerText = "x"
|
||||
|
@ -306,12 +309,12 @@ sessionManagerButton.addEventListener("click", (event) => {
|
|||
if (ua.includes("NT") || ua.includes("Linux")) {
|
||||
sessionImage.src = "/static/svg/device_computer.svg"
|
||||
}
|
||||
if (ua.includes("iPhone" || ua.includes("Android") || ua.include("iPod"))) {
|
||||
if (ua.includes("iPhone" || ua.includes("Android") || ua.includes("iPod"))) {
|
||||
sessionImage.src = "/static/svg/device_smartphone.svg"
|
||||
}
|
||||
|
||||
sessionRemoveButton.addEventListener("click", (event) => {
|
||||
fetch("https://notes.hectabit.org/api/sessions/remove", {
|
||||
sessionRemoveButton.addEventListener("click", () => {
|
||||
fetch(remote + "/api/sessions/remove", {
|
||||
method: "POST",
|
||||
body: JSON.stringify({
|
||||
secretKey: secretkey,
|
||||
|
@ -321,10 +324,9 @@ sessionManagerButton.addEventListener("click", (event) => {
|
|||
"Content-Type": "application/json; charset=UTF-8"
|
||||
}
|
||||
})
|
||||
.then((response) => response)
|
||||
.then((response) => {
|
||||
if (responseData[i]["thisSession"] == true) {
|
||||
window.location.replace("../logout/index.html")
|
||||
.then(() => {
|
||||
if (responseData[i]["thisSession"] === true) {
|
||||
window.location.replace("/logout")
|
||||
}
|
||||
});
|
||||
sessionElement.remove()
|
||||
|
@ -342,7 +344,7 @@ sessionManagerButton.addEventListener("click", (event) => {
|
|||
doStuff()
|
||||
});
|
||||
});
|
||||
exitSessionsThing.addEventListener("click", (event) => {
|
||||
exitSessionsThing.addEventListener("click", () => {
|
||||
optionsDiv.classList.remove("hidden")
|
||||
sessionManagerDiv.classList.add("hidden")
|
||||
});
|
||||
|
@ -351,18 +353,24 @@ updateUserInfo()
|
|||
|
||||
function updateWordCount() {
|
||||
let wordCount = noteBox.value.split(" ").length
|
||||
if (wordCount == 1) {
|
||||
if (wordCount === 1) {
|
||||
wordCount = 0
|
||||
}
|
||||
wordCountBox.innerText = wordCount + " words"
|
||||
}
|
||||
|
||||
function renderMarkDown() {
|
||||
if (markdowntoggle) {
|
||||
markdown.srcdoc = "<!DOCTYPE html><html lang='en'><style>html { height: 100% } body { font-family: 'Inter', sans-serif; height: 100%; color: " + getComputedStyle(document.documentElement).getPropertyValue('--text-color') + "; font-size: " + currentFontSize + "px; }</style>" + marked.parse(noteBox.value) + "</html>"
|
||||
}
|
||||
}
|
||||
|
||||
function selectNote(nameithink) {
|
||||
document.querySelectorAll(".noteButton").forEach((el) => el.classList.remove("selected"));
|
||||
let thingArray = Array.from(document.querySelectorAll(".noteButton")).find(el => el.id == nameithink);
|
||||
let thingArray = Array.from(document.querySelectorAll(".noteButton")).find(el => String(nameithink) === String(el.id));
|
||||
thingArray.classList.add("selected")
|
||||
|
||||
fetch("https://notes.hectabit.org/api/readnote", {
|
||||
fetch(remote + "/api/readnote", {
|
||||
method: "POST",
|
||||
body: JSON.stringify({
|
||||
secretKey: secretkey,
|
||||
|
@ -372,13 +380,12 @@ function selectNote(nameithink) {
|
|||
"Content-Type": "application/json; charset=UTF-8"
|
||||
}
|
||||
})
|
||||
.catch((error) => {
|
||||
.catch(() => {
|
||||
noteBox.readOnly = true
|
||||
noteBox.value = ""
|
||||
noteBox.placeholder = ""
|
||||
displayError("Something went wrong... Please try again later!")
|
||||
})
|
||||
.then((response) => response)
|
||||
.then((response) => {
|
||||
selectedNote = nameithink
|
||||
noteBox.readOnly = false
|
||||
|
@ -388,36 +395,43 @@ function selectNote(nameithink) {
|
|||
let responseData = await response.json()
|
||||
|
||||
let bytes = CryptoJS.AES.decrypt(responseData["content"], password);
|
||||
let originalText = bytes.toString(CryptoJS.enc.Utf8);
|
||||
|
||||
noteBox.value = originalText
|
||||
noteBox.value = bytes.toString(CryptoJS.enc.Utf8)
|
||||
updateWordCount()
|
||||
renderMarkDown()
|
||||
|
||||
noteBox.addEventListener("input", (event) => {
|
||||
noteBox.addEventListener("input", () => {
|
||||
updateWordCount()
|
||||
renderMarkDown()
|
||||
clearTimeout(timer);
|
||||
timer = setTimeout(() => {
|
||||
let encryptedTitle = "New note"
|
||||
if (noteBox.value.substring(0, noteBox.value.indexOf("\n")) !== "") {
|
||||
let firstTitle = noteBox.value.substring(0, noteBox.value.indexOf("\n"));
|
||||
|
||||
document.getElementById(nameithink).innerText = firstTitle
|
||||
encryptedTitle = CryptoJS.AES.encrypt(firstTitle, password).toString();
|
||||
}
|
||||
let encryptedText = CryptoJS.AES.encrypt(noteBox.value, password).toString();
|
||||
|
||||
if (selectedNote == nameithink) {
|
||||
fetch("https://notes.hectabit.org/api/editnote", {
|
||||
if (selectedNote === nameithink) {
|
||||
fetch(remote + "/api/editnote", {
|
||||
method: "POST",
|
||||
body: JSON.stringify({
|
||||
secretKey: secretkey,
|
||||
noteId: nameithink,
|
||||
content: encryptedText,
|
||||
title: encryptedTitle
|
||||
}),
|
||||
headers: {
|
||||
"Content-Type": "application/json; charset=UTF-8"
|
||||
}
|
||||
})
|
||||
.then((response) => response)
|
||||
.then((response) => {
|
||||
if (response.status == 418) {
|
||||
if (response.status === 418) {
|
||||
displayError("You've ran out of storage... Changes will not be saved until you free up storage!")
|
||||
}
|
||||
})
|
||||
.catch((error) => {
|
||||
.catch(() => {
|
||||
displayError("Failed to save changes, please try again later...")
|
||||
})
|
||||
}
|
||||
|
@ -429,7 +443,7 @@ function selectNote(nameithink) {
|
|||
}
|
||||
|
||||
function updateNotes() {
|
||||
fetch("https://notes.hectabit.org/api/listnotes", {
|
||||
fetch(remote + "/api/listnotes", {
|
||||
method: "POST",
|
||||
body: JSON.stringify({
|
||||
secretKey: secretkey
|
||||
|
@ -438,7 +452,6 @@ function updateNotes() {
|
|||
"Content-Type": "application/json; charset=UTF-8"
|
||||
}
|
||||
})
|
||||
.then((response) => response)
|
||||
.then((response) => {
|
||||
async function doStuff() {
|
||||
document.querySelectorAll(".noteButton").forEach((el) => el.remove());
|
||||
|
@ -448,6 +461,7 @@ function updateNotes() {
|
|||
noteBox.value = ""
|
||||
clearTimeout(timer)
|
||||
updateWordCount()
|
||||
renderMarkDown()
|
||||
|
||||
let responseData = await response.json()
|
||||
for (let i in responseData) {
|
||||
|
@ -459,11 +473,11 @@ function updateNotes() {
|
|||
let originalTitle = bytes.toString(CryptoJS.enc.Utf8);
|
||||
|
||||
noteButton.id = responseData[i]["id"]
|
||||
noteButton.innerText = originalTitle
|
||||
noteButton.innerText = truncateString(originalTitle, 15)
|
||||
|
||||
noteButton.addEventListener("click", (event) => {
|
||||
if (event.ctrlKey) {
|
||||
fetch("https://notes.hectabit.org/api/removenote", {
|
||||
fetch(remote + "/api/removenote", {
|
||||
method: "POST",
|
||||
body: JSON.stringify({
|
||||
secretKey: secretkey,
|
||||
|
@ -473,11 +487,10 @@ function updateNotes() {
|
|||
"Content-Type": "application/json; charset=UTF-8"
|
||||
}
|
||||
})
|
||||
.then((response) => response)
|
||||
.then((response) => {
|
||||
.then(() => {
|
||||
updateNotes()
|
||||
})
|
||||
.catch((error) => {
|
||||
.catch(() => {
|
||||
displayError("Something went wrong! Please try again later...")
|
||||
})
|
||||
} else {
|
||||
|
@ -493,43 +506,34 @@ function updateNotes() {
|
|||
|
||||
updateNotes()
|
||||
|
||||
newNote.addEventListener("click", (event) => {
|
||||
let noteName = displayPrompt("Note name?", "E.G Shopping list", burgerFunction)
|
||||
function burgerFunction(noteName) {
|
||||
if (noteName != null) {
|
||||
if (noteName.length > 21) {
|
||||
displayError("Invalid note name: Too long (max 21 characters)");
|
||||
return;
|
||||
}
|
||||
|
||||
let encryptedName = CryptoJS.AES.encrypt(noteName, password).toString();
|
||||
fetch("https://notes.hectabit.org/api/newnote", {
|
||||
method: "POST",
|
||||
body: JSON.stringify({
|
||||
secretKey: secretkey,
|
||||
noteName: encryptedName,
|
||||
}),
|
||||
headers: {
|
||||
"Content-Type": "application/json; charset=UTF-8"
|
||||
}
|
||||
})
|
||||
.catch((error) => {
|
||||
displayError("Failed to create new note, please try again later...")
|
||||
})
|
||||
.then((response) => {
|
||||
if (response.status !== 200) {
|
||||
updateNotes()
|
||||
displayError("Failed to create new note (HTTP error code " + response.status + ")")
|
||||
} else {
|
||||
updateNotes()
|
||||
}
|
||||
});
|
||||
newNote.addEventListener("click", () => {
|
||||
let noteName = "New note"
|
||||
let encryptedName = CryptoJS.AES.encrypt(noteName, password).toString(CryptoJS.enc.Utf8);
|
||||
fetch(remote + "/api/newnote", {
|
||||
method: "POST",
|
||||
body: JSON.stringify({
|
||||
secretKey: secretkey,
|
||||
noteName: encryptedName,
|
||||
}),
|
||||
headers: {
|
||||
"Content-Type": "application/json; charset=UTF-8"
|
||||
}
|
||||
}
|
||||
})
|
||||
.catch(() => {
|
||||
displayError("Failed to create new note, please try again later...")
|
||||
})
|
||||
.then((response) => {
|
||||
if (response.status !== 200) {
|
||||
updateNotes()
|
||||
displayError("Failed to create new note (HTTP error code " + response.status + ")")
|
||||
} else {
|
||||
updateNotes()
|
||||
}
|
||||
});
|
||||
});
|
||||
function downloadObjectAsJson(exportObj, exportName) {
|
||||
var dataStr = "data:text/json;charset=utf-8," + encodeURIComponent(JSON.stringify(exportObj));
|
||||
var downloadAnchorNode = document.createElement("a");
|
||||
let dataStr = "data:text/json;charset=utf-8," + encodeURIComponent(JSON.stringify(exportObj));
|
||||
let downloadAnchorNode = document.createElement("a");
|
||||
downloadAnchorNode.setAttribute("href", dataStr);
|
||||
downloadAnchorNode.setAttribute("download", exportName + ".json");
|
||||
document.body.appendChild(downloadAnchorNode);
|
||||
|
@ -538,8 +542,7 @@ function downloadObjectAsJson(exportObj, exportName) {
|
|||
}
|
||||
|
||||
function exportNotes() {
|
||||
let noteExport = []
|
||||
fetch("https://notes.hectabit.org/api/exportnotes", {
|
||||
fetch(remote + "/api/exportnotes", {
|
||||
method: "POST",
|
||||
body: JSON.stringify({
|
||||
secretKey: secretkey
|
||||
|
@ -548,7 +551,6 @@ function exportNotes() {
|
|||
"Content-Type": "application/json; charset=UTF-8"
|
||||
}
|
||||
})
|
||||
.then((response) => response)
|
||||
.then((response) => {
|
||||
async function doStuff() {
|
||||
let responseData = await response.json()
|
||||
|
@ -556,14 +558,10 @@ function exportNotes() {
|
|||
exportNotes.innerText = "Decrypting " + i + "/" + noteCount
|
||||
|
||||
let bytes = CryptoJS.AES.decrypt(responseData[i]["title"], password);
|
||||
let originalTitle = bytes.toString(CryptoJS.enc.Utf8);
|
||||
|
||||
responseData[i]["title"] = originalTitle
|
||||
responseData[i]["title"] = bytes.toString(CryptoJS.enc.Utf8)
|
||||
|
||||
let bytesd = CryptoJS.AES.decrypt(responseData[i]["content"], password);
|
||||
let originalContent = bytesd.toString(CryptoJS.enc.Utf8);
|
||||
|
||||
responseData[i]["content"] = originalContent
|
||||
responseData[i]["content"] = bytesd.toString(CryptoJS.enc.Utf8)
|
||||
}
|
||||
let jsonString = JSON.parse(JSON.stringify(responseData))
|
||||
|
||||
|
@ -578,27 +576,45 @@ function exportNotes() {
|
|||
}
|
||||
|
||||
function isFirstTimeVisitor() {
|
||||
if (document.cookie.indexOf("visited=true") !== -1) {
|
||||
if (localStorage.getItem("FIRSTVISIT") === null) {
|
||||
localStorage.setItem("FIRSTVISIT", "1")
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
function firstNewVersion() {
|
||||
if (localStorage.getItem("NEWVERSION") === "1.2") {
|
||||
return false;
|
||||
} else {
|
||||
var expirationDate = new Date();
|
||||
expirationDate.setFullYear(expirationDate.getFullYear() + 1);
|
||||
document.cookie = "visited=true; expires=" + expirationDate.toUTCString() + "; path=/; SameSite=strict";
|
||||
localStorage.setItem("NEWVERSION", "1.2")
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
function toggleMarkdown() {
|
||||
if (markdown.style.display === 'none') {
|
||||
markdown.style.display = 'inherit';
|
||||
markdowntoggle = true
|
||||
renderMarkDown()
|
||||
} else {
|
||||
markdown.style.display = 'none';
|
||||
markdowntoggle = false
|
||||
markdown.srcdoc = ""
|
||||
}
|
||||
}
|
||||
|
||||
exportNotesButton.addEventListener("click", (event) => {
|
||||
exportNotesButton.addEventListener("click", () => {
|
||||
exportNotesButton.innerText = "Downloading..."
|
||||
exportNotes()
|
||||
});
|
||||
|
||||
removeBox.addEventListener("click", (event) => {
|
||||
if (selectedNote == 0) {
|
||||
removeBox.addEventListener("click", () => {
|
||||
if (selectedNote === 0) {
|
||||
displayError("You need to select a note first!")
|
||||
} else {
|
||||
fetch("https://notes.hectabit.org/api/removenote", {
|
||||
fetch(remote + "/api/removenote", {
|
||||
method: "POST",
|
||||
body: JSON.stringify({
|
||||
secretKey: secretkey,
|
||||
|
@ -608,16 +624,25 @@ removeBox.addEventListener("click", (event) => {
|
|||
"Content-Type": "application/json; charset=UTF-8"
|
||||
}
|
||||
})
|
||||
.then((response) => response)
|
||||
.then((response) => {
|
||||
.then(() => {
|
||||
updateNotes()
|
||||
})
|
||||
.catch((error) => {
|
||||
.catch(() => {
|
||||
displayError("Something went wrong! Please try again later...")
|
||||
})
|
||||
}
|
||||
});
|
||||
|
||||
document.addEventListener("DOMContentLoaded", function() {
|
||||
markdown.srcdoc = "<!DOCTYPE html><html lang='en'><style>html { height: 100% } body { font-family: 'Inter', sans-serif; height: 100%; color: " + getComputedStyle(document.documentElement).getPropertyValue('--text-color') + "; font-size: " + currentFontSize + "px; }</style>" + marked.parse(noteBox.value) + "</html>"
|
||||
});
|
||||
|
||||
if (isFirstTimeVisitor() && /Android|iPhone|iPod/i.test(navigator.userAgent)) {
|
||||
displayError("To use Burgernotes:\n Swipe Right on a note to open it\n Swipe left in the text boxes to return to notes\n Click on a note to highlight it")
|
||||
}
|
||||
|
||||
if (firstNewVersion()) {
|
||||
displayError("What's new in Burgernotes 1.2-1?\nNotes now support live editing\nFixed various bugs and issues in the client")
|
||||
}
|
||||
|
||||
waitforedit()
|
||||
|
|
1297
website/static/js/marked.js
Normal file
|
@ -1,14 +1,20 @@
|
|||
if (localStorage.getItem("DONOTSHARE-secretkey") !== null) {
|
||||
window.location.replace("../app/index.html")
|
||||
window.location.replace("/app/")
|
||||
document.body.innerHTML = "Redirecting..."
|
||||
throw new Error();
|
||||
}
|
||||
if (localStorage.getItem("DONOTSHARE-password") !== null) {
|
||||
window.location.replace("../app/index.html")
|
||||
window.location.replace("/app/")
|
||||
document.body.innerHTML = "Redirecting..."
|
||||
throw new Error();
|
||||
}
|
||||
|
||||
let remote = localStorage.getItem("homeserverURL")
|
||||
if (remote == null) {
|
||||
localStorage.setItem("homeserverURL", "https://notes.hectabit.org")
|
||||
remote = "https://notes.hectabit.org"
|
||||
}
|
||||
|
||||
let usernameBox = document.getElementById("usernameBox")
|
||||
let passwordBox = document.getElementById("passwordBox")
|
||||
let statusBox = document.getElementById("statusBox")
|
||||
|
@ -27,12 +33,16 @@ function showElements(yesorno) {
|
|||
}
|
||||
}
|
||||
|
||||
signupButton.addEventListener("click", (event) => {
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
document.getElementById("homeserver").innerText = "Your homeserver is: " + remote + ". "
|
||||
});
|
||||
|
||||
signupButton.addEventListener("click", () => {
|
||||
async function doStuff() {
|
||||
let username = usernameBox.value
|
||||
let password = passwordBox.value
|
||||
|
||||
if (username == "") {
|
||||
if (username === "") {
|
||||
statusBox.innerText = "A username is required!"
|
||||
return
|
||||
}
|
||||
|
@ -40,7 +50,7 @@ signupButton.addEventListener("click", (event) => {
|
|||
statusBox.innerText = "Username cannot be more than 20 characters!"
|
||||
return
|
||||
}
|
||||
if (password == "") {
|
||||
if (password === "") {
|
||||
statusBox.innerText = "A password is required!"
|
||||
return
|
||||
}
|
||||
|
@ -58,10 +68,10 @@ signupButton.addEventListener("click", (event) => {
|
|||
key = await hashwasm.sha3(key)
|
||||
}
|
||||
return key
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
fetch("https://notes.hectabit.org/api/signup", {
|
||||
fetch(remote + "/api/signup", {
|
||||
method: "POST",
|
||||
body: JSON.stringify({
|
||||
username: username,
|
||||
|
@ -76,14 +86,14 @@ signupButton.addEventListener("click", (event) => {
|
|||
async function doStuff() {
|
||||
let responseData = await response.json()
|
||||
|
||||
if (response.status == 200) {
|
||||
statusBox.innerText == "redirecting.."
|
||||
if (response.status === 200) {
|
||||
statusBox.innerText = "Redirecting...."
|
||||
localStorage.setItem("DONOTSHARE-secretkey", responseData["key"])
|
||||
localStorage.setItem("DONOTSHARE-password", await hashwasm.sha512(password))
|
||||
|
||||
window.location.href = "../app/index.html"
|
||||
window.location.href = "/app/"
|
||||
}
|
||||
else if (response.status == 409) {
|
||||
else if (response.status === 409) {
|
||||
statusBox.innerText = "Username already taken!"
|
||||
showElements(true)
|
||||
}
|
||||
|
|
1
website/static/svg/code.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M320-240 80-480l240-240 57 57-184 184 183 183-56 56Zm320 0-57-57 184-184-183-183 56-56 240 240-240 240Z"/></svg>
|
After Width: | Height: | Size: 209 B |
55
website/static/svg/favicon.svg
Normal file
|
@ -0,0 +1,55 @@
|
|||
<svg width="527" height="533" viewBox="0 0 527 533" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_6_27)">
|
||||
<path d="M451 352.333C451 375.896 431.896 395 408.333 395H152.333C128.771 395 109.667 375.896 109.667 352.333V142.339C109.667 118.776 171.437 75 195 75H393.667C426.669 75 451 99.6613 451 132.333V352.333Z" fill="#226699"/>
|
||||
<path d="M429.667 395C429.667 418.563 410.563 437.667 387 437.667H173.667C150.104 437.667 131 418.563 131 395V139C131 95.064 130.776 96.3333 184.333 96.3333H387C410.563 96.3333 429.667 115.437 429.667 139V395Z" fill="url(#paint0_linear_6_27)"/>
|
||||
<path d="M408.333 405.667C408.333 423.341 394.008 437.667 376.333 437.667H141.667C123.992 437.667 109.667 423.341 109.667 405.667V149.667C109.667 131.992 123.992 117.667 141.667 117.667H376.333C394.008 117.667 408.333 131.992 408.333 149.667V405.667Z" fill="#E1E8ED"/>
|
||||
<path d="M158.115 426.776C158.115 434.264 151 440.333 142.221 440.333C133.453 440.333 126.339 434.264 126.339 426.776C126.339 419.299 133.453 413.219 142.221 413.219C151 413.219 158.115 419.288 158.115 426.776Z" fill="#662113"/>
|
||||
<path d="M140.536 419.224C135.416 419.811 132.088 423.224 129.688 427C126.413 432.173 118.947 437.667 109.667 437.667C97.8906 437.667 88.3333 430.509 88.3333 421.667C88.3333 412.824 97.8906 405.667 109.667 405.667V384.376C86.552 384.6 67.8853 401.176 67.8853 421.667C67.8853 442.296 86.7866 459 110.104 459C129.88 459 145.805 447.853 151.715 431.597C154.669 423.501 146.712 418.541 140.536 419.224Z" fill="url(#paint1_linear_6_27)"/>
|
||||
<path d="M158.115 341.443C158.115 348.931 151 355 142.221 355C133.453 355 126.339 348.931 126.339 341.443C126.339 333.965 133.453 327.885 142.221 327.885C151 327.885 158.115 333.955 158.115 341.443Z" fill="#662113"/>
|
||||
<path d="M140.536 333.891C135.416 334.477 132.088 337.891 129.688 341.667C126.413 346.84 118.947 352.333 109.667 352.333C97.8906 352.333 88.3333 345.176 88.3333 336.333C88.3333 327.491 97.8906 320.333 109.667 320.333V299.043C86.552 299.267 67.8853 315.843 67.8853 336.333C67.8853 356.963 86.7866 373.667 110.104 373.667C129.88 373.667 145.805 362.52 151.715 346.264C154.669 338.168 146.712 333.208 140.536 333.891Z" fill="url(#paint2_linear_6_27)"/>
|
||||
<path d="M158.115 256.109C158.115 263.597 151 269.667 142.221 269.667C133.453 269.667 126.339 263.597 126.339 256.109C126.339 248.632 133.453 242.552 142.221 242.552C151 242.552 158.115 248.621 158.115 256.109Z" fill="#662113"/>
|
||||
<path d="M140.536 248.557C135.416 249.144 132.088 252.557 129.688 256.333C126.413 261.507 118.947 267 109.667 267C97.8906 267 88.3333 259.843 88.3333 251C88.3333 242.157 97.8906 235 109.667 235V213.709C86.552 213.933 67.8853 230.509 67.8853 251C67.8853 271.629 86.7866 288.333 110.104 288.333C129.88 288.333 145.805 277.187 151.715 260.931C154.669 252.835 146.712 247.875 140.536 248.557Z" fill="url(#paint3_linear_6_27)"/>
|
||||
<path d="M158.115 170.776C158.115 178.264 151 184.333 142.221 184.333C133.453 184.333 126.339 178.264 126.339 170.776C126.339 163.299 133.453 157.219 142.221 157.219C151 157.219 158.115 163.288 158.115 170.776Z" fill="#662113"/>
|
||||
<path d="M140.536 163.224C135.416 163.811 132.088 167.224 129.688 171C126.413 176.173 118.947 181.667 109.667 181.667C97.8906 181.667 88.3333 174.509 88.3333 165.667C88.3333 156.824 97.8906 149.667 109.667 149.667V128.376C86.5626 128.589 67.8853 145.176 67.8853 165.667C67.8853 186.296 86.7866 203 110.104 203C129.88 203 145.805 191.853 151.715 175.597C154.669 167.501 146.712 162.541 140.536 163.224Z" fill="url(#paint4_linear_6_27)"/>
|
||||
<path d="M281 300.771C192.496 300.771 120.756 298.646 120.756 361.47C120.756 424.266 192.496 438.556 281 438.556C369.504 438.556 441.244 424.266 441.244 361.47C441.244 298.655 369.504 300.771 281 300.771Z" fill="#D99E82"/>
|
||||
<path d="M436.55 305.54C436.55 305.54 358.926 296.247 281 295.85C203.074 296.247 125.45 305.54 125.45 305.54C117.772 366.683 181.522 391.872 281 391.872C380.478 391.872 444.228 366.683 436.55 305.54Z" fill="#662113"/>
|
||||
<path d="M431.035 281.098L130.182 287.199C119.793 287.199 111.095 308.251 122.116 313.757C204.358 339.332 270.47 365.21 270.47 365.21C279.555 370.234 282.625 370.253 291.72 365.238C291.72 365.238 383.009 328.707 441.65 313.36C449.971 311.188 441.414 281.098 431.035 281.098Z" fill="#FFCC4D"/>
|
||||
<path d="M438.958 281.891C421.014 265.354 422.053 274.156 408.302 270.274C403.079 268.801 365.707 220.493 280.528 220.493H280.339C195.159 220.493 157.788 268.801 152.565 270.274C138.814 274.156 139.853 265.354 121.908 281.891C113.673 289.484 111.444 293.432 120.133 295.397C133.223 298.353 132.033 306.277 141.411 309.034C152.763 312.368 157.429 306.277 175.732 308.77C191.344 310.895 192.364 331.144 208.117 331.144C223.871 331.144 223.871 323.588 239.614 323.588C255.358 323.588 264.671 343.856 280.424 343.856C296.177 343.856 305.48 323.588 321.233 323.588C336.987 323.588 336.987 331.144 352.731 331.144C368.484 331.144 369.504 310.895 385.116 308.77C403.419 306.286 408.094 312.368 419.437 309.034C428.815 306.277 427.625 298.362 440.715 295.397C449.423 293.442 447.203 289.484 438.958 281.891Z" fill="#77B255"/>
|
||||
<path d="M432.838 264.022C432.838 292.204 364.857 305.512 281 305.512C197.143 305.512 129.162 292.204 129.162 264.022C129.162 212.994 138.285 212.994 281 212.994C423.715 212.994 432.838 213.003 432.838 264.022Z" fill="#DD2E44"/>
|
||||
<path d="M281 112.949C192.496 112.949 120.756 154.419 120.756 217.234C120.756 275.082 192.496 277.443 281 277.443C369.504 277.443 441.244 275.082 441.244 217.234C441.244 154.41 369.504 112.949 281 112.949Z" fill="#D99E82"/>
|
||||
<path d="M212.849 142.897C208.146 139.884 201.903 141.263 198.899 145.967C195.896 150.67 197.266 156.922 201.969 159.916C206.672 162.929 218.591 165.177 221.604 160.473C224.607 155.77 217.552 145.901 212.849 142.897ZM304.781 133.122C299.473 134.841 290.152 142.623 291.88 147.931C293.608 153.239 305.707 154.051 311.014 152.332C316.322 150.613 319.222 144.909 317.493 139.601C315.774 134.303 310.07 131.394 304.781 133.122ZM407.811 199.564C403.542 195.975 392.841 201.689 389.243 205.958C385.654 210.236 386.211 216.602 390.48 220.191C394.749 223.779 401.124 223.222 404.713 218.953C408.311 214.675 412.089 203.153 407.811 199.564ZM373.404 152.342C368.701 149.338 362.458 150.717 359.446 155.421C356.442 160.124 357.821 166.367 362.524 169.37C367.228 172.383 379.147 174.631 382.15 169.927C385.163 165.214 378.108 155.345 373.404 152.342ZM231.738 218.453C227.034 215.449 220.792 216.828 217.779 221.532C214.776 226.226 216.154 232.478 220.858 235.472C225.561 238.484 237.48 240.742 240.483 236.029C243.496 231.326 236.441 221.456 231.738 218.453ZM260.506 173.044C257.332 177.634 254.65 189.468 259.249 192.641C263.839 195.814 273.954 189.109 277.128 184.519C280.301 179.929 279.139 173.639 274.549 170.466C269.969 167.292 263.669 168.454 260.506 173.044ZM335.627 218.453C330.923 215.449 324.681 216.828 321.668 221.532C318.664 226.226 320.043 232.487 324.747 235.472C329.45 238.484 341.369 240.742 344.372 236.029C347.385 231.326 340.33 221.456 335.627 218.453ZM157.731 181.742C154.01 185.907 149.864 197.307 154.029 201.028C158.175 204.749 169.055 199.384 172.776 195.219C176.507 191.064 176.148 184.679 171.992 180.949C167.846 177.228 161.452 177.587 157.731 181.742Z" fill="#FFE8B6"/>
|
||||
</g>
|
||||
<path d="M408.333 416.333C408.333 439.896 389.229 459 365.667 459H163C139.437 459 120.333 439.896 120.333 416.333V181.667C120.333 158.104 139.437 139 163 139H365.667C389.229 139 408.333 158.104 408.333 181.667V416.333Z" fill="#3B88C3"/>
|
||||
<path d="M387 416.333C387 439.896 367.896 459 344.333 459H163C139.437 459 120.333 439.896 120.333 416.333V203C120.333 179.437 139.437 160.333 163 160.333H347.907C371.469 160.333 387 175.864 387 199.427V416.333Z" fill="url(#paint5_linear_6_27)"/>
|
||||
<path d="M163 139C144.995 139 144.536 118.499 152.333 109.667C161.208 99.6293 175 96.3333 199.672 96.3333H216.333V75H187.331C144.995 75 109.667 101.667 109.667 132.333V416.333C109.667 439.896 128.771 459 152.333 459H173.667V139H163Z" fill="#226699"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_6_27" x1="280.333" y1="96.3295" x2="280.333" y2="437.667" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#CCD6DD"/>
|
||||
<stop offset="1" stop-color="#CCD6DD" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_6_27" x1="110.118" y1="384.376" x2="110.118" y2="459" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#66757F"/>
|
||||
<stop offset="1" stop-color="#50585C"/>
|
||||
<stop offset="1" stop-color="#50585C"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_6_27" x1="110.118" y1="299.043" x2="110.118" y2="373.667" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#66757F"/>
|
||||
<stop offset="1" stop-color="#50585C"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_6_27" x1="110.118" y1="213.709" x2="110.118" y2="288.333" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#66757F"/>
|
||||
<stop offset="1" stop-color="#50585C"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_6_27" x1="110.118" y1="128.376" x2="110.118" y2="203" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#66757F"/>
|
||||
<stop offset="1" stop-color="#50585C"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_6_27" x1="253.667" y1="160.333" x2="253.667" y2="459" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#55ACEE"/>
|
||||
<stop offset="1" stop-color="#55ACEE" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_6_27">
|
||||
<rect width="384" height="384" fill="white" transform="translate(67 75)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 9.2 KiB |
1
website/static/svg/forum.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M280-240q-17 0-28.5-11.5T240-280v-80h520v-360h80q17 0 28.5 11.5T880-680v600L720-240H280ZM80-280v-560q0-17 11.5-28.5T120-880h520q17 0 28.5 11.5T680-840v360q0 17-11.5 28.5T640-440H240L80-280Zm520-240v-280H160v280h440Zm-440 0v-280 280Z"/></svg>
|
After Width: | Height: | Size: 338 B |
3535
website/static/svg/grid.svg
Normal file
After Width: | Height: | Size: 244 KiB |
1
website/static/svg/info.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M440-280h80v-240h-80v240Zm40-320q17 0 28.5-11.5T520-640q0-17-11.5-28.5T480-680q-17 0-28.5 11.5T440-640q0 17 11.5 28.5T480-600Zm0 520q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z"/></svg>
|
After Width: | Height: | Size: 516 B |
1
website/static/version.txt
Normal file
|
@ -0,0 +1 @@
|
|||
121
|