mirror of
https://github.com/danielmiessler/Fabric.git
synced 2026-01-23 13:18:04 -05:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4673e6e1f6 | ||
|
|
847749567f | ||
|
|
5bea5e0f9c | ||
|
|
cc56013004 |
@@ -1,5 +1,11 @@
|
||||
# Changelog
|
||||
|
||||
## v1.4.389 (2026-01-23)
|
||||
|
||||
### PR [#1960](https://github.com/danielmiessler/Fabric/pull/1960) by [ksylvan](https://github.com/ksylvan): fix: consume all positional arguments as input
|
||||
|
||||
- Fix: consume all positional arguments as input by joining all positional arguments with spaces instead of using only the last argument, allowing commands to process entire phrases correctly
|
||||
|
||||
## v1.4.388 (2026-01-23)
|
||||
|
||||
### PR [#1957](https://github.com/danielmiessler/Fabric/pull/1957) by [ksylvan](https://github.com/ksylvan): Add Novita AI as a new OpenAI-compatible provider
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
package main
|
||||
|
||||
var version = "v1.4.388"
|
||||
var version = "v1.4.389"
|
||||
|
||||
Binary file not shown.
@@ -213,7 +213,7 @@ func Init() (ret *Flags, err error) {
|
||||
|
||||
// Append positional arguments to the message (custom message)
|
||||
if len(args) > 0 {
|
||||
ret.Message = AppendMessage(ret.Message, args[len(args)-1])
|
||||
ret.Message = AppendMessage(ret.Message, strings.Join(args, " "))
|
||||
}
|
||||
|
||||
if pipedToStdin {
|
||||
|
||||
@@ -1 +1 @@
|
||||
"1.4.388"
|
||||
"1.4.389"
|
||||
|
||||
Reference in New Issue
Block a user