Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f4684673e7 | |||
| 0dc5c2878f | |||
| efdb188aba | |||
| 54e21f2b2d | |||
| dd166cf0e9 | |||
| 92b1c4daa5 | |||
| ea4135888d | |||
| 8e999f5ddb |
@@ -5,6 +5,7 @@ mode:regex
|
|||||||
^clientpack/
|
^clientpack/
|
||||||
|
|
||||||
^_dist/
|
^_dist/
|
||||||
|
^node_modules/
|
||||||
^vendor/
|
^vendor/
|
||||||
|
|
||||||
^nmdc-webfrontend$
|
^nmdc-webfrontend$
|
||||||
|
|||||||
1
.hgtags
1
.hgtags
@@ -8,3 +8,4 @@ d14041daa7bbbd37ea2ff47aa978b9595af67ca3 v1.1.1
|
|||||||
76c178b8f27ec894e79b8f73649fcb3e45a73729 v1.1.4
|
76c178b8f27ec894e79b8f73649fcb3e45a73729 v1.1.4
|
||||||
0eeab5594ba4d683e6a268ef971675c73b226bd0 v1.2.0
|
0eeab5594ba4d683e6a268ef971675c73b226bd0 v1.2.0
|
||||||
c8cd84947e4516215e50639914adfaecf350fe91 v1.2.1
|
c8cd84947e4516215e50639914adfaecf350fe91 v1.2.1
|
||||||
|
0c6b957de43252f89688ba73c4857f6d912b2912 v1.2.2
|
||||||
|
|||||||
6
Gopkg.lock
generated
6
Gopkg.lock
generated
@@ -4,8 +4,8 @@
|
|||||||
[[projects]]
|
[[projects]]
|
||||||
name = "code.ivysaur.me/libnmdc"
|
name = "code.ivysaur.me/libnmdc"
|
||||||
packages = ["."]
|
packages = ["."]
|
||||||
revision = "21847db9fdc1b983285de44e789cd9e921bdf1bb"
|
revision = "4ea6cbb6f1a2d91a1e64c4b028b1c0ffe1bdd88d"
|
||||||
version = "v0.14.0"
|
version = "v0.15.0"
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
branch = "master"
|
branch = "master"
|
||||||
@@ -28,6 +28,6 @@
|
|||||||
[solve-meta]
|
[solve-meta]
|
||||||
analyzer-name = "dep"
|
analyzer-name = "dep"
|
||||||
analyzer-version = 1
|
analyzer-version = 1
|
||||||
inputs-digest = "928468c40a3a664870459e1d5a1fa97fcbc45802fdd498ebf89bcffe0b44ec6e"
|
inputs-digest = "383f1855bfd5d5845dcfa88d2dab2599d9fdee6ddd849d9cb1e1a5ae35fd41ac"
|
||||||
solver-name = "gps-cdcl"
|
solver-name = "gps-cdcl"
|
||||||
solver-version = 1
|
solver-version = 1
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
[[constraint]]
|
[[constraint]]
|
||||||
name = "code.ivysaur.me/libnmdc"
|
name = "code.ivysaur.me/libnmdc"
|
||||||
version = "0.14.0"
|
version = "0.15.0"
|
||||||
|
|
||||||
[[constraint]]
|
[[constraint]]
|
||||||
branch = "master"
|
branch = "master"
|
||||||
|
|||||||
4
Makefile
4
Makefile
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
BINNAME=nmdc-webfrontend
|
BINNAME=nmdc-webfrontend
|
||||||
|
|
||||||
VERSION=1.2.2
|
VERSION=1.2.3
|
||||||
|
|
||||||
GOFLAGS=-a \
|
GOFLAGS=-a \
|
||||||
-ldflags "-s -w -X main.VERSION=$(BINNAME)/$(VERSION)" \
|
-ldflags "-s -w -X main.VERSION=$(BINNAME)/$(VERSION)" \
|
||||||
@@ -54,7 +54,7 @@ $(BINNAME)-$(VERSION)-win32.7z: $(BINNAME).exe nmdc-webfrontend.conf.SAMPLE
|
|||||||
7z a -mx9 "$(BINNAME)-$(VERSION)-win32.7z" $(BINNAME).exe nmdc-webfrontend.conf.SAMPLE
|
7z a -mx9 "$(BINNAME)-$(VERSION)-win32.7z" $(BINNAME).exe nmdc-webfrontend.conf.SAMPLE
|
||||||
|
|
||||||
$(BINNAME)-$(VERSION)-linux64.tar.xz: $(BINNAME) nmdc-webfrontend.conf.SAMPLE
|
$(BINNAME)-$(VERSION)-linux64.tar.xz: $(BINNAME) nmdc-webfrontend.conf.SAMPLE
|
||||||
XZ_OPT='-9' tar caf "$(BINNAME)-$(VERSION)-linux64.tar.xz" $(BINNAME) nmdc-webfrontend.conf.SAMPLE
|
XZ_OPT='-9' tar caf "$(BINNAME)-$(VERSION)-linux64.tar.xz" $(BINNAME) nmdc-webfrontend.conf.SAMPLE --owner=0 --group=0
|
||||||
|
|
||||||
$(BINNAME)-$(VERSION)-src.tar.xz: $(SOURCES)
|
$(BINNAME)-$(VERSION)-src.tar.xz: $(SOURCES)
|
||||||
XZ_OPT='-9' tar caf "$(BINNAME)-$(VERSION)-src.tar.xz" $(SOURCES) --owner=0 --group=0
|
XZ_OPT='-9' tar caf "$(BINNAME)-$(VERSION)-src.tar.xz" $(SOURCES) --owner=0 --group=0
|
||||||
|
|||||||
@@ -6,6 +6,8 @@ Written in Golang
|
|||||||
|
|
||||||
Tags: nmdc
|
Tags: nmdc
|
||||||
|
|
||||||
|
This project supercedes [entry=dcwebui]dcwebui[/entry], [entry=flexdc]flexdc[/entry], and [entry=dcwebui2]dcwebui2[/entry].
|
||||||
|
|
||||||
=UPGRADING FROM DCWEBUI2=
|
=UPGRADING FROM DCWEBUI2=
|
||||||
|
|
||||||
- The configuration file content is identical between nmdc-webfrontend 1.0.0 and dcwebui2 1.3.0, but please now ensure it's valid JSON instead of arbitrary javascript. This means no assignment, use double-quoted strings, and no comments.
|
- The configuration file content is identical between nmdc-webfrontend 1.0.0 and dcwebui2 1.3.0, but please now ensure it's valid JSON instead of arbitrary javascript. This means no assignment, use double-quoted strings, and no comments.
|
||||||
@@ -14,18 +16,22 @@ Tags: nmdc
|
|||||||
=DEVELOPING=
|
=DEVELOPING=
|
||||||
|
|
||||||
[go-get]code.ivysaur.me/nmdc-webfrontend git https://git.ivysaur.me/code.ivysaur.me/nmdc-webfrontend.git[/go-get]
|
[go-get]code.ivysaur.me/nmdc-webfrontend git https://git.ivysaur.me/code.ivysaur.me/nmdc-webfrontend.git[/go-get]
|
||||||
|
|
||||||
1. Install Go, Node.js, NPM, and 7-Zip (`p7zip-full` on Debian)
|
1. Install Go, Node.js, NPM, and 7-Zip (`p7zip-full` on Debian)
|
||||||
2. Set up your `$GOPATH`
|
2. Set up your `$GOPATH`
|
||||||
3. Download the source code
|
3. Download the source code
|
||||||
- `https://git.ivysaur.me/code.ivysaur.me/nmdc-webfrontend.git` ; or
|
- `git clone https://git.ivysaur.me/code.ivysaur.me/nmdc-webfrontend.git `; or
|
||||||
- `go get code.ivysaur.me/nmdc-webfrontend` ; or
|
- `go get code.ivysaur.me/nmdc-webfrontend` ; or
|
||||||
- download and extract a source archive
|
- download and extract a source archive
|
||||||
4. Install dependencies: `sudo make deps`
|
4. Install dependencies: `sudo make deps`
|
||||||
5. Build: `make`
|
5. Build: `make`
|
||||||
6. Optional: Set `web.external_webroot: true` in the config file for unminified development
|
6. Optional: Set `web.external_webroot: true` in the config file for unminified development
|
||||||
|
|
||||||
=CHANGELOG=
|
=CHANGELOG=
|
||||||
|
|
||||||
|
2017-11-14 1.2.3
|
||||||
|
- Update libnmdc to 0.15
|
||||||
|
|
||||||
2017-10-28 1.2.2
|
2017-10-28 1.2.2
|
||||||
- Enhancement: Simplify build process
|
- Enhancement: Simplify build process
|
||||||
- Fix an issue with closing PM tabs
|
- Fix an issue with closing PM tabs
|
||||||
|
|||||||
Reference in New Issue
Block a user