1
0
mirror of https://github.com/hrfee/jfa-go.git synced 2024-09-18 18:30:10 +00:00

Compare commits

..

No commits in common. "93180302ae62698a36e907f9da14324ada1dccf6" and "6e3d5dac19d929d296f2ad673885759509a791af" have entirely different histories.

11 changed files with 286 additions and 343 deletions

1
.gitignore vendored
View File

@ -13,4 +13,3 @@ jfa-go
build/
pkg/
old/
version.go

View File

@ -16,7 +16,6 @@ before:
- python3 scss/get_node_deps.py
- python3 scss/compile.py -y
- python3 mail/generate.py -y
- python3 version.py {{.Version}} version.go
builds:
- dir: ./
env:

View File

@ -28,9 +28,6 @@ mail:
echo "Generating email html"
python3 mail/generate.py
version:
python3 version.py git version.go
compile:
echo "Downloading deps"
go mod download
@ -45,8 +42,8 @@ copy:
install:
cp -r build $(DESTDIR)/jfa-go
all: configuration sass mail version compile copy
headless: configuration sass-headless mail-headless version compile copy
all: configuration sass mail compile copy
headless: configuration sass-headless mail-headless copy

View File

@ -1,4 +1,4 @@
# ![jfa-go](data/static/banner.svg)
# ![jfa-go](images/jfa-go-banner-wide.svg)
jfa-go is a user management app for [Jellyfin](https://github.com/jellyfin/jellyfin) that provides invite-based account creation as well as other features that make one's instance much easier to manage.

View File

@ -100,7 +100,6 @@ var userDefaultsModal = createModal('userDefaults');
var usersModal = createModal('users');
var restartModal = createModal('restartModal');
var refreshModal = createModal('refreshModal');
var aboutModal = createModal('aboutModal');
// Parsed invite: [<code>, <expires in _>, <1: Empty invite (no delete/link), 0: Actual invite>, <email address>, <remaining uses>, [<used-by>], <date created>, <notify on expiry>, <notify on creation>]
function parseInvite(invite, empty = false) {
@ -607,11 +606,6 @@ document.getElementById('loginForm').onsubmit = function() {
return false;
};
document.getElementById('openAbout').onclick = function() {
settingsModal.hide();
aboutModal.show();
};
document.getElementById('openDefaultsWizard').onclick = function() {
this.disabled = true
this.innerHTML =

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 58 KiB

View File

@ -168,9 +168,6 @@
<div class="modal-body">
<ul class="list-group list-group-flush">
<p>Note: <sup class="text-danger">*</sup> Indicates required field, <sup class="text-danger">R</sup> Indicates changes require a restart.</p>
<button type="button" class="list-group-item list-group-item-action" id="openAbout">
About <i class="fa fa-info-circle"></i>
</button>
<button type="button" class="list-group-item list-group-item-action" id="openUsers">
Users <i class="fa fa-user"></i>
</button>
@ -259,25 +256,6 @@
</div>
</div>
</div>
<div class="modal fade" id="aboutModal" role="dialog" aria-labelledby="About jfa-go" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">About</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<img src="banner.svg" alt="jfa-go banner">
<p><a href="https://github.com/hrfee/jfa-go"><i class="fa fa-github"></i> jfa-go</a></p>
<p>Version <i>{{ .version }}</i></p>
<p>Commit <i>{{ .commit }}</i></p>
<p><a href="https://github.com/hrfee/jfa-go/blob/main/LICENSE">Available under the MIT License.</a></p>
</div>
</div>
</div>
</div>
<div class="pageContainer">
<h1>
Accounts admin

View File

@ -1 +0,0 @@
../data/static/banner.svg

Before

Width:  |  Height:  |  Size: 25 B

After

Width:  |  Height:  |  Size: 58 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 25 B

After

Width:  |  Height:  |  Size: 58 KiB

View File

@ -95,7 +95,6 @@ func setGinLogger(router *gin.Engine, debugMode bool) {
}
func main() {
fmt.Printf("jfa-go version: %s (%s)\n", VERSION, COMMIT)
// app encompasses essentially all useful functions.
app := new(appContext)

View File

@ -1,20 +0,0 @@
import subprocess
import sys
import os
try:
version = sys.argv[1].replace('v', '')
except IndexError:
version = "git"
commit = subprocess.check_output("git rev-parse --short HEAD".split()).decode("utf-8").rstrip()
file = f'package main; const VERSION = "{version}"; const COMMIT = "{commit}";'
try:
writeto = sys.argv[2]
except IndexError:
writeto = "version.go"
with open(writeto, 'w') as f:
f.write(file)

View File

@ -16,8 +16,6 @@ func (app *appContext) AdminPage(gc *gin.Context) {
"contactMessage": "",
"email_enabled": emailEnabled,
"notifications": notificationsEnabled,
"version": VERSION,
"commit": COMMIT,
})
}