-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mata info: added Changelog, updated readme, added GH->Gitlab r\osync
- Loading branch information
1 parent
8a54760
commit f500f39
Showing
5 changed files
with
770 additions
and
341 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Automatic sync with Gitlab's read-only mirror | ||
|
||
on: [workflow_dispatch, push] | ||
|
||
jobs: | ||
mirror: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up SSH key for Runner | ||
env: | ||
SSH_KEY: ${{ secrets.GITLAB_DEPLOY_KEY }} | ||
run: | | ||
mkdir -p ~/.ssh | ||
echo "$SSH_KEY" > ~/.ssh/id_ed25519 | ||
chmod 600 ~/.ssh/id_ed25519 | ||
ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts | ||
ssh-keyscan -t rsa gitlab.com >> ~/.ssh/known_hosts | ||
- name: Clone repository from GitHub as mirror and push to Gitlab | ||
env: | ||
REPO_ORIGINAL: "https://github.com/rehlds/revoice.git" | ||
REPO_TARGET: "[email protected]:rehlds/revoice.git" | ||
run: | | ||
git clone --mirror "$REPO_ORIGINAL" repo-mirror | ||
cd repo-mirror | ||
git remote set-url origin "$REPO_TARGET" | ||
git push --mirror --force |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# [revoice](https://github.com/rehlds/revoice) Changelog | ||
|
||
--- | ||
|
||
## [`0.1.0.34`](https://github.com/rehlds/revoice/releases/tag/0.1.0.34) - 2020-03-03 | ||
|
||
## Changed | ||
- VoiceEncoder_Opus.cpp reworked | ||
- Code refactoring | ||
|
||
### Fixed | ||
- fixed Compress | ||
|
||
**Full Changelog**: [0.1.0.33...0.1.0.34](https://github.com/rehlds/revoice/compare/0.1.0.33...0.1.0.34) | ||
|
||
|
||
## [`0.1.0.33`](https://github.com/rehlds/revoice/releases/tag/0.1.0.33) - 2019-10-16 | ||
|
||
### Fixed | ||
- fixed vulnerable client-side attack via invalid voice packet | ||
|
||
**Full Changelog**: [0.1.0.32...0.1.0.33](https://github.com/rehlds/revoice/compare/0.1.0.32...0.1.0.33) | ||
|
||
## [`0.1.0.32`](https://github.com/rehlds/revoice/releases/tag/0.1.0.32) - 2017-10-31 | ||
|
||
### Fixed | ||
- Fixed `REHLDS_API_VERSION_MINOR` check | ||
|
||
**Full Changelog**: [0.1.0.31...0.1.0.32](https://github.com/rehlds/revoice/compare/0.1.0.31...0.1.0.32) | ||
|
||
## [`0.1.0.31`](https://github.com/rehlds/revoice/releases/tag/0.1.0.31) - 2017-10-26 | ||
|
||
### Added | ||
- Firsrt public release | ||
- Added `rev status` to print detailed info | ||
|
||
### Changed | ||
- Updated `rehlsdk` | ||
- | ||
**Full Changelog**: [0.1.0.29...0.1.0.30](https://github.com/rehlds/revoice/compare/0.1.0.29...0.1.0.30) | ||
|
||
## [`0.1.0.30`](https://github.com/rehlds/revoice/releases/tag/0.1.0.30) - 2017-07-09 | ||
|
||
### Fixed | ||
- Fixed voice stream `steam-to-steam` | ||
|
||
**Full Changelog**: [0.1.0.29...0.1.0.30](https://github.com/rehlds/revoice/compare/0.1.0.29...0.1.0.30) | ||
|
||
|
||
## [`0.1.0.29`](https://github.com/rehlds/revoice/releases/tag/0.1.0.29) - 2017-07-07 | ||
|
||
### Added | ||
- Added support for `OPUS` codec | ||
- Addec new cvars: `REV_HltvCodec`, `REV_DefaultCodec` | ||
|
||
**Full Changelog**: [0.1.0.26...0.1.0.29](https://github.com/rehlds/revoice/compare/0.1.0.26...0.1.0.29) | ||
|
||
|
||
## [`0.1.0.26`](https://github.com/rehlds/revoice/releases/tag/0.1.0.26) - 2016-12-13 | ||
|
||
### Changed | ||
- Updated `ReHLDS API 3.x` | ||
|
||
**Full Changelog**: [0.1.0.31](https://github.com/rehlds/revoice/commits/0.1.0.26) |
Oops, something went wrong.