Commit graph

446 commits

Author SHA1 Message Date
Kayvan Sylvan ff1ef380a7 feat: add --debug flag with levels and centralized logging
CHANGES
- Add --debug flag controlling runtime logging verbosity levels
- Introduce internal/log package with Off, Basic, Detailed, Trace
- Replace ad-hoc Debugf and globals with centralized debug logger
- Wire debug level during early CLI argument parsing
- Add bash, zsh, fish completions for --debug levels
- Document debug levels in README with usage examples
- Add comprehensive STT guide covering models, flags, workflows
- Simplify splitAudioFile signature and log ffmpeg chunking operations
- Remove FABRIC_STT_DEBUG environment variable and related code
- Clean minor code paths in vendors and template modules
2025-08-19 04:23:40 -07:00
Kayvan Sylvan 9bb4ccf740 docs: update version number in README updates section from v1.4.290 to v1.4.291 2025-08-18 08:13:55 -07:00
Kayvan Sylvan a2481406db feat: add speech-to-text via OpenAI with transcription flags and completions
CHANGES
- Add --transcribe-file flag to transcribe audio or video
- Add --transcribe-model flag with model listing and completion
- Add --split-media-file flag to chunk files over 25MB
- Implement OpenAI transcription using Whisper and GPT-4o Transcribe
- Integrate transcription pipeline into CLI before readability processing
- Provide zsh, bash, fish completions for new transcription flags
- Validate media extensions and enforce 25MB upload limits
- Update README with release and corrected pattern link path
2025-08-18 07:59:50 -07:00
Kayvan Sylvan e5ec9acfac feat: add per-pattern model mapping support via environment variables
• Add per-pattern model mapping documentation section
• Implement environment variable lookup for pattern-specific models
• Support vendor|model format in environment variable specification
• Check pattern-specific model when no model explicitly set
• Transform pattern names to uppercase environment variable format
• Add table of contents entry for new feature
• Enable shell startup file configuration for patterns
2025-08-17 16:15:23 -07:00
Kayvan Sylvan b4b5b0a4d9 feat: add --no-variable-replacement flag to disable pattern variable substitution
- Introduce CLI flag to skip pattern variable replacement.
- Wire flag into domain request and session builder.
- Avoid applying input variables when replacement is disabled.
- Provide PatternsEntity.GetWithoutVariables for input-only pattern processing support.
- Refactor patterns code into reusable load and apply helpers.
- Update bash, zsh, fish completions with new flag.
- Document flag in README and CLI help output.
- Add unit tests covering GetWithoutVariables path and behavior.
- Ensure {{input}} placeholder appends when missing in patterns.
2025-08-16 14:12:06 -07:00
Kayvan Sylvan 992936dbd8 fix: improve YouTube subtitle language fallback handling in yt-dlp integration
- Fix typo "Gemmini" to "Gemini" in README
- Add "kballard" and "shellquote" to VSCode dictionary
- Add "YTDLP" to VSCode spell checker
- Enhance subtitle language options with fallback variants
- Build language options string with comma-separated alternatives
2025-08-16 09:14:03 -07:00
Kayvan Sylvan d8690c7cec feat: add release updates section and Gemini thinking support
- Add comprehensive "Recent Major Features" section to README
- Introduce new readme_updates Python script for automation
- Enable Gemini thinking configuration with token budgets
- Update CLI help text for Gemini thinking support
- Add comprehensive test coverage for Gemini thinking
- Create documentation for README update automation
- Reorganize README navigation structure with changelog section
2025-08-16 00:21:12 -07:00
Kayvan Sylvan f4dbafc638 feat: add cross-provider --thinking flag mapping to Anthropic/OpenAI
CHANGES
- Add --thinking flag to set reasoning level cross-vendors
- Map Anthropic thinking levels and token budgets appropriately
- Translate OpenAI reasoning effort from thinking levels
- Propagate Thinking through ChatOptions, server, and dry-run output
- Update zsh, bash, fish completions with thinking choices
- Expand suggest_pattern docs with categories, workflows, usage examples
- Remove outdated suggest_pattern user files to avoid duplication
- Add VSCode dictionary terms: Anki, DMARC, wireframes
- Extend tests to include Thinking defaults in ChatOptions
2025-08-14 07:06:31 -07:00
Kayvan Sylvan b6fa44d003 docs: add quick install method for shell completions without cloning repo
## CHANGES

- Add one-liner curl install for completions
- Support downloading completions when files missing locally
- Add dry-run option for preview changes
- Enable custom download source via environment variable
- Create temp directory for downloaded completion files
- Add automatic cleanup of temporary files
- Update documentation with new installation methods
2025-08-12 10:00:11 -07:00
Kayvan Sylvan cc3e4226d7 feat: add -V/--vendor flag and vendor-aware model selection
CHANGES
- Add -V/--vendor flag to specify model vendor
- Implement vendor-aware model resolution and availability validation
- Warn on ambiguous models; suggest --vendor to disambiguate
- Update bash, zsh, fish completions with vendor suggestions
- Extend --listmodels to print vendor|model when interactive
- Add VendorsModels.PrintWithVendor; sort vendors and models alphabetically
- Pass vendor through API; update server chat handler
- Standardize docs and errors to --yt-dlp-args="..." syntax
- Add test covering ambiguous model warning across multiple vendors
- Promote go-shellquote to direct dependency in go.mod
2025-08-12 06:39:02 -07:00
Kayvan Sylvan 558e7f877d feat(gemini): enable web search, citations, and search-location validation
CHANGES
- Enable Gemini models to use web search tool
- Validate search-location timezone or language code formats
- Normalize language codes from underscores to hyphenated form
- Inject Google Search tool when --search flag enabled
- Append deduplicated web citations under standardized Sources section
- Improve robustness for nil candidates and content parts
- Factor generation config builder for reuse in streaming
- Update CLI help and completions to include Gemini
2025-08-10 19:56:02 -07:00
Kayvan Sylvan 261eb30951 feat: add --yt-dlp-args flag for custom YouTube downloader options
### CHANGES

- Introduce `--yt-dlp-args` flag for advanced control
- Allow passing browser cookies for authentication
- Improve error handling for YouTube rate limits
- Add comprehensive documentation for YouTube processing
- Refactor YouTube methods to accept additional arguments
- Update shell completions to include new flag
2025-08-08 23:03:02 -07:00
github-actions[bot] 21f258caa4 feat(cli): add cross-platform desktop notifications with secure custom commands
CHANGES
- Integrate notification sending into chat processing workflow
- Add --notification and --notification-command CLI flags and help
- Provide cross-platform providers: macOS, Linux, Windows with fallbacks
- Escape shell metacharacters to prevent injection vulnerabilities
- Truncate Unicode output safely for notification message previews
- Update bash, zsh, fish completions with new notification options
- Add docs and YAML examples for configuration and customization
- Add unit tests for providers and notification integration paths
2025-08-08 00:20:51 -07:00
Kayvan Sylvan 614b1322d5 feat: add Gemini TTS voice selection and listing functionality
## CHANGES

- Add `--voice` flag for TTS voice selection
- Add `--list-gemini-voices` command for voice discovery
- Implement voice validation for Gemini TTS models
- Update shell completions for voice options
- Add comprehensive Gemini TTS documentation
- Create voice samples directory structure
- Extend spell checker dictionary with voice names
2025-07-26 15:11:30 -07:00
Kayvan Sylvan 8ec006e02c docs: Update README and CHANGELOG after v1.4.257 2025-07-17 11:15:24 -07:00
Kayvan Sylvan 1473ac1465 feat: add 'think' tag options for text suppression and completion
### CHANGES

- Remove outdated update notes from README
- Add `--suppress-think` option to suppress 'think' tags
- Introduce `--think-start-tag` and `--think-end-tag` options
- Update bash completion with 'think' tag options
- Update fish completion with 'think' tag options
2025-07-15 22:26:12 -07:00
Kayvan Sylvan 6b07b33ff2 fix: broken image link 2025-07-09 11:41:33 -07:00
Kayvan Sylvan 2e0a4da876 docs: update file paths to reflect new data directory structure
## CHANGES

- Move fabric logo image path to docs directory
- Update patterns directory reference to data/patterns location
- Update strategies directory reference to data/strategies location
- Fix create_coding_feature README path reference
- Update code_helper install path to cmd directory
2025-07-09 08:44:12 -07:00
Kayvan Sylvan 9a64238f18 docs: Update README with new go install commands 2025-07-09 00:33:21 -07:00
Kayvan Sylvan 16ac519415 docs: add comprehensive custom patterns setup and usage guide
## CHANGES

- Add custom patterns directory setup instructions
- Document priority system for custom vs built-in patterns
- Include step-by-step custom pattern creation workflow
- Explain update-safe custom pattern storage
- Add table of contents entries for new sections
- Document seamless integration with existing fabric commands
- Clarify privacy and precedence behavior for custom patterns
2025-07-06 00:32:54 -07:00
Kayvan Sylvan b2418984f8 feat: add advanced image generation parameters for OpenAI models
## CHANGES

- Add four new image generation CLI flags
- Implement validation for image parameter combinations
- Support size, quality, compression, and background controls
- Add comprehensive test coverage for new parameters
- Update shell completions for new image options
- Enhance README with detailed image generation examples
- Fix PowerShell code block formatting issues
2025-07-04 23:04:50 -07:00
Kayvan Sylvan 12fc6e2000 feat: add image generation support with OpenAI image generation model
## CHANGES

- Add `--image-file` flag for saving generated images
- Implement image generation tool integration with OpenAI
- Support image editing with attachment input files
- Add comprehensive test coverage for image features
- Update documentation with image generation examples
- Fix HTML formatting issues in README
- Improve PowerShell code block indentation
- Clean up help text formatting and spacing
2025-07-04 14:36:55 -07:00
Kayvan Sylvan bd809a1f94 docs: update README with new web search feature details 2025-07-04 00:22:36 -07:00
Kayvan Sylvan 7f66097577 docs: add DeepWiki badge and fix minor typos in README
## CHANGES

- Add DeepWiki badge to README header
- Fix typo "chatbots" to "chat-bots"
- Correct "Perlexity" to "Perplexity"
- Fix "distro" to "Linux distribution"
- Add alt text to contributor images
- Update dependency versions in go.mod
- Remove unused soup dependency
2025-06-27 19:34:01 -07:00
Nawaraj Shahi 08695c9e24 Fix typos on README.md 2025-06-27 10:14:48 -04:00
Daniel Miessler 🛡️ 19438cbd20
Update README.md 2025-06-17 11:52:02 -07:00
Daniel Miessler 🛡️ a0b71ee365
Update README.md
Updated readme.
2025-06-17 11:48:44 -07:00
Daniel Miessler 🛡️ 034513ece5
Update README.md
An update to the intro text, describing Fabric's utility to most people.
2025-06-17 11:45:46 -07:00
Kayvan Sylvan 19e5d8dbe0 chore: update README with Perplexity AI support instructions
### CHANGES
- Add instructions for configuring Perplexity AI with Fabric
- Include example command for querying Perplexity AI
- Retain existing instructions for YouTube transcription changes
2025-06-17 02:57:37 -07:00
Kayvan Sylvan 2dfd78ef0b feat: cleanup after yt-dlp addition
### CHANGES
- Update README with yt-dlp requirement for transcripts
- Ensure the errors are clear and actionable.
2025-06-11 17:27:11 -07:00
Kayvan Sylvan c8f9a39a40 feat: add support for Anthropic Claude 4 models and update SDK to v1.2.0
CHANGES
- Upgrade `anthropic-sdk-go` dependency to version `v1.2.0`.
- Integrate new Anthropic Claude 4 Opus and Sonnet models.
- Remove deprecated Claude 2.0 and 2.1 models from list.
- Adjust model type casting for `anthropic-sdk-go v1.2.0` compatibility.
- Refresh README: announce Claude 4, update date, fix links.
2025-05-22 11:26:04 -07:00
Kayvan Sylvan bf3af8e98e feat: add shell completion scripts for Zsh, Bash, and Fish
CHANGES:
- Add shell completion support for three major shells
- Create standardized completion scripts in completions/ directory
- Add --shell-complete-list flag for machine-readable output
- Update Print() methods to support plain output format
- Document installation steps for each shell in README
- Replace old fish completion script with improved version
2025-04-24 17:47:39 -07:00
Kayvan Sylvan ac5eab0563 feat: add --listvendors command to list AI vendors
### CHANGES
- Introduce `--listvendors` flag to display all AI vendors.
- Refactor OpenAI-compatible providers into a unified configuration.
- Remove individual vendor packages for streamlined management.
- Add sorting for consistent vendor listing output.
- Update documentation to include new `--listvendors` option.
2025-04-20 08:53:20 -07:00
Kayvan Sylvan ef895a1ab9 chore: Update README with a note about Grok 2025-04-16 09:23:20 -07:00
Kayvan Sylvan 661c85d7a6 # docs: add contributors section to README with contrib.rocks image
## CHANGES

- Add contributors section with visual representation
- Include link to project contributors page
- Add attribution to contrib.rocks tool
2025-04-15 08:29:45 -07:00
Daniel Miessler 2abdabc100
Update README.md 2025-04-14 09:45:02 -07:00
Daniel Miessler 9f78a2c8e1
Update README.md 2025-04-14 09:44:16 -07:00
Daniel Miessler 76f78601f2
Update README.md 2025-04-14 09:43:36 -07:00
Daniel Miessler 4eaba2dc56
Update README.md 2025-04-14 09:43:06 -07:00
Daniel Miessler 2dcd9cb5f7
Update README.md 2025-04-14 09:42:19 -07:00
Daniel Miessler 2943872bde
Update README.md 2025-04-14 09:41:05 -07:00
Daniel Miessler b901542a48
Update README.md 2025-04-14 09:40:17 -07:00
Daniel Miessler c122ff8960
Update README.md 2025-04-14 09:39:52 -07:00
Daniel Miessler e128d818c4
Update README.md 2025-04-14 09:39:15 -07:00
Daniel Miessler 5e9d6d0a91
Update README.md 2025-04-14 09:38:51 -07:00
Daniel Miessler 70edf9cbe3
Update README.md 2025-04-14 09:36:53 -07:00
Daniel Miessler e61a0a9391
Update README.md 2025-04-14 09:35:50 -07:00
Eugen Eisler 71437605e1
Merge pull request #1390 from PatrickCLee/03-26-README-fix
docs: improve README link
2025-03-26 08:31:15 +01:00
PatrickCLee 01770cc6e3 docs: improve README link
- Fix broken what-and-why link reference
2025-03-26 11:34:11 +08:00
Kayvan Sylvan daad5f986e refactor: rename fabric_code tool to code_helper for clarity
## CHANGES

- Rename tool from `fabric_code` to `code_helper`
- Update all documentation references to the tool
- Update installation instructions in README
- Modify usage examples in documentation
- Update tool's self-description and help text
2025-03-25 19:14:25 -07:00
Kayvan Sylvan 9b56e0e996 feat: add fabric_code tool and create_coding_feature pattern
This commit introduces the `fabric_code` tool and the `create_coding_feature` pattern, allowing Fabric to modify existing codebases.

## CHANGES

-   add `fabric_code` tool to generate JSON representation of code projects
-   add `create_coding_feature` pattern to apply AI-generated code changes
-   update README with `fabric_code` installation and usage
-   walk file system with maximum depth and ignore list
-   scan directory and return file/dir JSON data for AI model
-   provide usage instructions and examples for `fabric_code`
-   add file management API to system prompt for code changes
2025-03-25 08:04:55 -07:00
Kayvan Sylvan c2e84d6db9 docs: improve README formatting and add clipboard support section
## CHANGES

- Remove colons from heading anchors
- Fix broken installation link reference
- Replace code tags with backticks
- Improve code block formatting with indentation
- Clarify package manager alias requirements
- Fix environment variables link
- Simplify custom patterns directory instructions
2025-03-21 23:34:27 -07:00
Val V 4e4bfc9d5d Add installation instructions for OS package managers 2025-03-21 03:12:43 +00:00
Eugen Eisler 5571e6fafd
Merge pull request #1363 from garkpit/streamlit-clipboard-ops-for-all-platforms
clipboard operations now work on Mac and PC
2025-03-17 15:19:42 +01:00
Kayvan Sylvan 6b93658191 chore: remove redundant yt function definition 2025-03-15 17:35:45 -07:00
Jay b5c2d069f2 clipboard operations now work on Mac and PC 2025-03-15 08:31:48 +00:00
Kayvan Sylvan 096f40df68 feat: add prompt strategies and improve installation documentation
## CHANGES

- Add prompt strategies like Chain of Thought (CoT)
- Implement strategy selection with `--strategy` flag
- Improve README with platform-specific installation instructions
- Fix web interface documentation link
- Refactor git operations with new githelper package
- Add `--liststrategies` command to view available strategies
- Support applying strategies to system prompts
- Fix YouTube configuration check
- Improve error handling in session management
2025-03-15 00:30:30 -07:00
Kayvan Sylvan 59c50def2a feat: update yt commands and docs to support timestamped transcripts
CHANGES
- Add argument validation to yt for usage errors
- Enable -t flag for transcript with timestamps
- Refactor PowerShell yt function with parameter switch
- Update README to dynamically select transcript option
- Document youtube_summary feature in pattern explanations
- Introduce youtube_summary pattern.
2025-03-04 21:46:50 -08:00
Daniel Miessler bb1d4f9ca4
Update README.md
Some checks failed
Go Build / Run tests (push) Has been cancelled
Patterns Artifact / Zip and Upload Patterns Folder (push) Has been cancelled
Update Version File and Create Tag / update-version (push) Has been cancelled
2025-02-24 13:48:56 -08:00
Daniel Miessler 1ccbb22866 Updated announcement at the top 2025-02-06 14:50:01 -08:00
Christoph Becker e558d535df
doc: Add scrape URL example. Fix Example 4 2025-01-13 14:58:39 +01:00
Christoph Becker 1c05b37c76
doc: Custom patterns also work with Claude models 2025-01-13 14:18:41 +01:00
Jonathan DUMONT 03dfa03f46
Update README.md
## Change
1. Windows Command: Because actually curl does not exist natively on Windows
2. Syntax: Because like this; it makes the “click, cut and paste” easier
2025-01-12 13:55:37 +01:00
Jeff McJunkin f312ad0364
Update README.md: Add PowerShell aliases 2025-01-09 12:39:23 -08:00
Cory Sougstad b4b8b96260 Added metadata lookup to youtube helper 2024-12-31 15:31:17 -07:00
Zo6 79b23f3106
Merge branch 'main' into main 2024-12-21 10:22:32 -08:00
Zo6 61027f30a4
Update README.md 2024-12-20 06:30:33 -08:00
AnirudhG07 2ba294f4d6 Spelling fix in READEME 2024-12-19 13:50:06 +05:30
John Connor 3f8bca8728
Update README.md 2024-11-26 19:15:18 -05:00
Xie Yanbo c396288ca7 add a screenshot of fabric 2024-11-13 11:37:01 +08:00
Daniel Miessler 76d6788231
Merge pull request #1123 from polyglotdev/correct-obsidian-shell-script
 Added unaliasing to pattern setup
2024-11-08 21:24:22 -08:00
Daniel Miessler 73a0e38af6 Merge branch 'main' of github.com:danielmiessler/fabric 2024-11-08 21:19:17 -08:00
Daniel Miessler ff0ee4f111 Updated README. 2024-11-08 21:19:14 -08:00
Dom Hallan de61e56fda
Added unaliasing to pattern setup
In the process of setting up patterns, we've added a step to unalias any existing alias with the same name. This ensures that our dynamically defined functions won't conflict with any pre-existing aliases.
2024-11-08 11:11:25 -05:00
David 6377f951d8
Add auto save to aliases
-Updated the readme with information about autogenerating aliases that
allow autosaving to obsidian like tools
-Updated the table of contents
2024-11-07 09:15:48 +00:00
David c5483276e5
Add alias generation information
-Updated the readme with information about generating aliases for each
prompt including on for youtube transcripts
-Updated the table of contents
2024-11-06 15:15:14 +00:00
Eugen Eisler 7af94a9d2a fix: close #1103, Update Readme hpt to install to_pdf 2024-11-04 10:54:26 +01:00
Eugen Eisler e17b96d864 feat: write tools output also to output file if defined; fix XouTube transcript ' character 2024-10-30 13:50:52 +01:00
Eugen Eisler ee3668006d feat: impl. multi-model / attachments, images 2024-10-29 22:12:06 +01:00
Rob Prouse ef3c043f77
Update README.md with pbpaste section 2024-10-22 17:02:19 -04:00
Eugen Eisler 61f66f88e3 feat: plugins arch., new setup procedure 2024-10-19 13:09:37 +02:00
Jonathan Dunn 14ef9fd41c updated readme 2024-10-14 14:17:19 -04:00
Eugen Eisler c0bd61ba49 docs: Close #1035, provide better example for pattern variables 2024-10-11 22:27:20 +03:00
Eugen Eisler 83cd8a1912
fix: Close #1036 2024-10-09 12:29:02 +03:00
Eugen Eisler d70e7c570d feat: Add 'meta' role to store meta info to session, like source of input content. 2024-10-05 17:42:57 +02:00
Eugen Eisler 679a852c1c feat: Close #1018 2024-10-05 01:05:31 +02:00
Eugen Eisler 9452d6bd2a feat: implement print session and context 2024-10-05 00:57:11 +02:00
Eugen Eisler 3eb314320e feat: Setup for specific vendor, e.g. --setup-vendor=OpenAI 2024-10-04 22:38:43 +02:00
Eugen Eisler 42b5cb4413 feat: clean up html readability; add autm. tag creation 2024-10-03 00:12:23 +02:00
hallelujah-shih cc8711cc07 support turn any web page into clean view content 2024-09-30 11:25:10 +08:00
Eugen Eisler cab365f496 docs: update YouTube example call
Some checks failed
Go Build / Run tests (push) Has been cancelled
Go Release / Run tests (push) Has been cancelled
Go Release / Build binaries for Windows, macOS, and Linux (amd64, macos-latest) (push) Has been cancelled
Go Release / Build binaries for Windows, macOS, and Linux (amd64, ubuntu-latest) (push) Has been cancelled
Go Release / Build binaries for Windows, macOS, and Linux (amd64, windows-latest) (push) Has been cancelled
Go Release / Build binaries for Windows, macOS, and Linux (arm64, macos-latest) (push) Has been cancelled
Go Release / Build binaries for Windows, macOS, and Linux (arm64, ubuntu-latest) (push) Has been cancelled
2024-09-27 12:26:07 +02:00
Eugen Eisler 273ba3e943 feat: extend installation instruction to get the latest release binaries 2024-09-27 11:51:43 +02:00
Eugen Eisler 70c5aacb45 feat: extend installation instruction to get the latest release binaries 2024-09-27 11:50:47 +02:00
Eugen Eisler c5db39a06d feat: extend installation instruction to get the latest release binaries 2024-09-27 11:50:47 +02:00
shih dd6cd06b5a add wipe flag for ctx and session 2024-09-27 07:43:08 +08:00
Eugen Eisler 41b711f1ca doc: update flags order
Some checks are pending
Go Build / Run tests (push) Waiting to run
Go Release / Run tests (push) Waiting to run
Go Release / Build binaries for Windows, macOS, and Linux (amd64, macos-latest) (push) Waiting to run
Go Release / Build binaries for Windows, macOS, and Linux (amd64, ubuntu-latest) (push) Waiting to run
Go Release / Build binaries for Windows, macOS, and Linux (amd64, windows-latest) (push) Waiting to run
Go Release / Build binaries for Windows, macOS, and Linux (arm64, macos-latest) (push) Waiting to run
Go Release / Build binaries for Windows, macOS, and Linux (arm64, ubuntu-latest) (push) Waiting to run
2024-09-26 21:40:53 +02:00
Eugen Eisler 8f7acac2b1 fix: #986 implement --version flag
Some checks are pending
Go Build / Run tests (push) Waiting to run
Go Release / Run tests (push) Waiting to run
Go Release / Build binaries for Windows, macOS, and Linux (amd64, macos-latest) (push) Waiting to run
Go Release / Build binaries for Windows, macOS, and Linux (amd64, ubuntu-latest) (push) Waiting to run
Go Release / Build binaries for Windows, macOS, and Linux (amd64, windows-latest) (push) Waiting to run
Go Release / Build binaries for Windows, macOS, and Linux (arm64, macos-latest) (push) Waiting to run
Go Release / Build binaries for Windows, macOS, and Linux (arm64, ubuntu-latest) (push) Waiting to run
2024-09-26 21:09:01 +02:00
Eugen Eisler ea323c12ff fix: #986 implement --version flag 2024-09-26 20:57:37 +02:00
Eugen Eisler 28937bb8ca
Merge pull request #967 from akashkankariya/patch-1
Some checks are pending
Go Build / Run tests (push) Waiting to run
Go Release / Run tests (push) Waiting to run
Go Release / Build binaries for Windows, macOS, and Linux (amd64, macos-latest) (push) Waiting to run
Go Release / Build binaries for Windows, macOS, and Linux (amd64, ubuntu-latest) (push) Waiting to run
Go Release / Build binaries for Windows, macOS, and Linux (amd64, windows-latest) (push) Waiting to run
Go Release / Build binaries for Windows, macOS, and Linux (arm64, macos-latest) (push) Waiting to run
Go Release / Build binaries for Windows, macOS, and Linux (arm64, ubuntu-latest) (push) Waiting to run
Updated Path to install to_pdf in readme[Bug Fix]
2024-09-25 23:59:03 +02:00
Riccardo Zanella 7322d249e2 Merge branch 'main' into feature/seed_parameter 2024-09-24 10:50:29 +02:00