summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-05-08 00:05:39 +0300
committerPaul Buetow <paul@buetow.org>2026-05-08 00:05:39 +0300
commit3e4bacb7b939b1de98a2fb07115f638750637357 (patch)
tree0897a6854d1c3ca3b1d0252657e992abbba061ba /go.mod
parent665b150727ee7259e398d38d1f6bc51b4c2d4a1c (diff)
Rewrite as Flutter app and rename to Quicklogmain
Drop the Go/Fyne implementation and replace it with a native Flutter app targeting Android (primary) and Linux desktop (development). Rename quicklogger -> quicklog throughout (project, applicationId, MethodChannel, cache filename, AppBar title, Linux binary). Storage on Android moves to /Android/data/org.buetow.quicklog/files/ so MANAGE_EXTERNAL_STORAGE is no longer required. Share-intent receive is preserved via a Kotlin ShareActivity that writes shared text to the app cache, which Dart reads through a MethodChannel on app resume; MainActivity also accepts SEND directly so launchers that prefer the main target work. New since the Fyne version: an entry browser screen with read-only viewer and long-press delete. Cross-compiling to Android ARM from amd64 Linux no longer needs Docker / fyne-cross / NDK -- flutter build apk emits ARM binaries directly. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod38
1 files changed, 0 insertions, 38 deletions
diff --git a/go.mod b/go.mod
deleted file mode 100644
index d5214e4..0000000
--- a/go.mod
+++ /dev/null
@@ -1,38 +0,0 @@
-module codeberg.org/snonux/quicklogger
-
-go 1.21.6
-
-require (
- fyne.io/fyne/v2 v2.4.3
- github.com/magefile/mage v1.15.0
-)
-
-require (
- fyne.io/systray v1.10.1-0.20231115130155-104f5ef7839e // indirect
- github.com/davecgh/go-spew v1.1.1 // indirect
- github.com/fredbi/uri v1.0.0 // indirect
- github.com/fsnotify/fsnotify v1.6.0 // indirect
- github.com/fyne-io/gl-js v0.0.0-20220119005834-d2da28d9ccfe // indirect
- github.com/fyne-io/glfw-js v0.0.0-20220120001248-ee7290d23504 // indirect
- github.com/fyne-io/image v0.0.0-20220602074514-4956b0afb3d2 // indirect
- github.com/go-gl/gl v0.0.0-20211210172815-726fda9656d6 // indirect
- github.com/go-gl/glfw/v3.3/glfw v0.0.0-20221017161538-93cebf72946b // indirect
- github.com/go-text/render v0.0.0-20230619120952-35bccb6164b8 // indirect
- github.com/go-text/typesetting v0.0.0-20230616162802-9c17dd34aa4a // indirect
- github.com/godbus/dbus/v5 v5.1.0 // indirect
- github.com/gopherjs/gopherjs v1.17.2 // indirect
- github.com/jsummers/gobmp v0.0.0-20151104160322-e2ba15ffa76e // indirect
- github.com/pmezard/go-difflib v1.0.0 // indirect
- github.com/srwiley/oksvg v0.0.0-20221011165216-be6e8873101c // indirect
- github.com/srwiley/rasterx v0.0.0-20220730225603-2ab79fcdd4ef // indirect
- github.com/stretchr/testify v1.8.4 // indirect
- github.com/tevino/abool v1.2.0 // indirect
- github.com/yuin/goldmark v1.5.5 // indirect
- golang.org/x/image v0.11.0 // indirect
- golang.org/x/mobile v0.0.0-20230531173138-3c911d8e3eda // indirect
- golang.org/x/net v0.17.0 // indirect
- golang.org/x/sys v0.13.0 // indirect
- golang.org/x/text v0.13.0 // indirect
- gopkg.in/yaml.v3 v3.0.1 // indirect
- honnef.co/go/js/dom v0.0.0-20210725211120-f030747120f2 // indirect
-)