Skip to content

Commit

Permalink
新增特性 v3.0.0
Browse files Browse the repository at this point in the history
- 新增 `fridare.sh` 脚本,整合所有功能,提供更完整的命令行界面
- 新增 `build`, `ls`, `download`, `lm`, `setup`, `config`, 和 `help` 命令
- 新增配置文件支持,可以保存和加载用户设置
- 新增颜色输出,提升用户体验
- 新增自动检查和安装依赖功能
- 新增下载特定 Frida 模块的功能
- 新增列出可用 Frida 版本和模块的功能
  • Loading branch information
suifei committed Jul 11, 2024
1 parent 03de73b commit db5e4ec
Show file tree
Hide file tree
Showing 4 changed files with 668 additions and 158 deletions.
40 changes: 40 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@
所有值得注意的更改都将记录在此文件中。
格式基于 [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),并且本项目遵循 [语义化版本](https://semver.org/spec/v2.0.0.html)。

## [3.0.0] - 2024-07-11
### Added
- 新增 `fridare.sh` 脚本,整合所有功能,提供更完整的命令行界面
- 新增 `build`, `ls`, `download`, `lm`, `setup`, `config`, 和 `help` 命令
- 新增配置文件支持,可以保存和加载用户设置
- 新增颜色输出,提升用户体验
- 新增自动检查和安装依赖功能
- 新增下载特定 Frida 模块的功能
- 新增列出可用 Frida 版本和模块的功能

### Changed
- 重构了整个项目结构,提高代码可维护性
- 改进了错误处理和日志输出
- 优化了 Frida 构建过程,提高效率
- 更新了二进制修改逻辑,提高兼容性

### Removed
- 移除了旧的 `build.sh` 脚本

## [2.2.0] - 2024-07-04
### Added
- 新增加 frida-tools 补丁,适配 `frida:rpc` 特征魔改
Expand Down Expand Up @@ -40,6 +59,27 @@
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.0.0] - 2024-07-11
### Added
- add `fridare.sh` script, integrate all functions, provide a more complete command line interface
- add `build`, `ls`, `download`, `lm`, `setup`, `config`, and `help` commands
- add configuration file support, can save and load user settings
- add color output, improve user experience
- add automatic dependency check and installation
- add download specific Frida module
- add list available Frida versions and modules

### Changed
- refactor the entire project structure, improve code maintainability
- improve error handling and log output
- optimize Frida build process, improve efficiency
- update binary modification logic, improve compatibility

### Removed
- remove old `build.sh` script

### Changed

## [2.2.0] - 2024-07-04
### Added
- add frida-tools patch, adapt to `frida:rpc` feature modification
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ clean:
@rm -rf dist

build:
@./build.sh 16.3.3 8899 http://127.0.0.1:1081
@./fridare.sh build -latest -y

deploy:
./autoinstall.sh
Expand Down
Loading

0 comments on commit db5e4ec

Please sign in to comment.