8000 Tags · SpatiumPortae/portal · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: SpatiumPortae/portal

Tags

v1.2.3

Toggle v1.2.3's commit message
feat: homebrew/core formula, snap package

This version is simply a publish version.
There are no code changes to the binary.

v1.2.2

Toggle v1.2.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #60 from SpatiumPortae/develop

Develop -> Master

v1.2.1

Toggle v1.2.1's commit message
fix: invisible overwrite prompt

v1.2.0

Toggle v1.2.0's commit message
> Prompt

- (default!) Prompt with a [Y/n] for each file that would be overwritten when receiving files.
- Adds `--yes`, `-y` flags that will automatically overwrite files without prompting.

> Copying passwords when sending

- Adds the `--relay [relay-address]` flag to the copiable `portal receive 1-x-x-x` command when a sender is sending files through a relay which is not the default.

> Configuration

- New `config` command with useful subcommands to handle your config file.
	- `portal config view` outputs current config with syntax highlighting.
	- `portal config path` outputs the path of the config file.
	- `portal config edit` opens the config file in default $EDITOR.
	- `portal config reset` resets the config file to its default values.

- New configuration options.
	- `relay: [addr:port|domain]` replaces the `default_rendezvous_address` and `default_rendezvous_port` options. It incorporates both the IP and port into one value, so `relay: 1.2.3.4:8726` is a valid value.
	- `verbose: [true|**false**]` can now be configured in the config to always output verbose info.
	- `prompt_overwrite_files: [**true**|false]` can be configured to always prompt, or never prompt when overwriting files.

- Changes to config file behavior.
	- fixes reading configs from the config file (it was broken!).
	- **moved the config file to `$HOME/.config/portal/config.yml`.**

> Valid relay addresses

- Now you can use loopback relay addresses on the form `localhost:5432` or `:5432`. Previously, one had to use `127.0.0.1:5432` to address a relay on the loopback interface.

v1.1.2

Toggle v1.1.2's commit message
feat: compare and get latest version from relay

v1.1.1

Toggle v1.1.1's commit message
- Fixed goreleaser stripping the `v` from the semver tag.

  This broke the version checker, as it expected the leading `v`.

v1.1.0

Toggle v1.1.0's commit message
- transfer speed and ETA shown during transfer, total time spent show…

…n after transfer

- use command completion from cobra
  - includes completion of passwords from the password-wordlist when invoking portal receive [...]
- version (SEMVER) checking, comparison and warnings/errors on non-matching
- show summary table of sent/received files during and after transfer

- Fix a bug where transfer ID:s would not be released from the relay server in some circumstances

v1.0.7

Toggle v1.0.7's commit message
* feat: use zap everywhere

* handle absolute and relative paths as expected

Previous behavior would take the absolute or relative path and
expand the directory structure onto the receiver. This is not what
one expects when for instance sending files using the absolute path
"portal send /home/zinokader/data/somefile.txt", which previously would
actually try to recreate the same directory structure "/home/zinokader..."
on the receiver end.

Now, we handle absolute paths by sending the last directory or file
(and its subfiles/subdirectories), this means "/home/zinokader/folder"
will just send and expand "folder" and all of its contents on the receiving end.

v1.0.6

Toggle v1.0.6's commit message
-

v1.0.5

Toggle v1.0.5's commit message
Remove message size limitations.

This broke portal for larger files than 32KB since the latest release (v1.0.4) which uses the nhooyr/websocket library.
This release fixes sending larger messages again.
0