Skip to content

Commit

Permalink
Release fmcsadmin 2.1.0 (#31)
Browse files Browse the repository at this point in the history
* Update the version string

* Fix spelling in help messages

* Update README.md

* Remove FUNDING.yml

* Add "-i" option to specify a private key file for FileMaker Admin API PKI Authentication

* Update go.yml and release.yml for GitHub Actions to build with Go 1.19

* Update behavior of "GET CWPCONFIG" command and "SET CWPCONFIG" command on Linux

* Drop support for Claris FileMaker Server 19.2

* Release fmcsadmin 2.1.0
  • Loading branch information
matsuo authored May 17, 2023
1 parent bbbcc41 commit d89714b
Show file tree
Hide file tree
Showing 11 changed files with 615 additions and 363 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
go: ['1.18']
go: ['1.19']
steps:

- uses: actions/setup-go@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
go: ['1.18']
go: ['1.19']
steps:

- uses: actions/setup-go@v2
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
NAME=fmcsadmin
VERSION=2.0.0
VERSION=2.1.0

GOCMD=go
GOBUILD=$(GOCMD) build
Expand All @@ -18,6 +18,7 @@ DIST_WINDOWS_DIR=$(NAME)-$(VERSION)-$(WINDOWS_DIR)
all: test build

deps:
$(GOGET) github.com/golang-jwt/jwt/v4
$(GOINSTALL) github.com/mattn/go-scan
$(GOINSTALL) github.com/olekukonko/tablewriter
$(GOINSTALL) golang.org/x/term
Expand Down
13 changes: 12 additions & 1 deletion NOTICE.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
fmcsadmin
Copyright 2017-2022 Emic Corporation, https://www.emic.co.jp/
Copyright 2017-2023 Emic Corporation, https://www.emic.co.jp/

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -34,3 +34,14 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
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.

---

Copyright (c) 2012 Dave Grijalva
Copyright (c) 2021 golang-jwt maintainers

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.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,11 @@ Features
- View and change the setting for sharing streaming URLs (for FileMaker Server 19.3.2 or later)
- Cancel the currently running backup (for FileMaker Server 19.5.1 or later)
- View and change the setting for parallel backup (for FileMaker Server 19.5.1 or later)
- FileMaker Admin API PKI Authentication (for FileMaker Server 19.6.1 or later)

Supported Servers
-----
- Claris FileMaker Server 19 (19.1, 19.2, 19.3, 19.4, 19.5)
- Claris FileMaker Server 19 (19.3, 19.4, 19.5, 19.6)

Usage
-----
Expand All @@ -50,8 +51,8 @@ Note: Handling schedule ID 1 is not supported for FileMaker Server.
System Requirements
-----
- Linux version : Ubuntu 18.04 LTS, Ubuntu 20.04 LTS or CentOS Linux 7
- macOS version : macOS Catalina 10.15.7 or later (tested on macOS Monterey 12)
- Windows version : Windows 10 Version 21H1 or later (tested on Windows 11)
- macOS version : macOS Big Sur 11 or later (tested on macOS Ventura 13)
- Windows version : Windows 10 Version 21H2 or later (tested on Windows 11)

Download
-----
Expand Down
Loading

0 comments on commit d89714b

Please sign in to comment.