Skip to content

Commit

Permalink
mata info: added Changelog, updated readme, added GH->Gitlab r\osync
Browse files Browse the repository at this point in the history
  • Loading branch information
stamepicmorg committed Nov 3, 2024
1 parent 8a54760 commit f500f39
Show file tree
Hide file tree
Showing 5 changed files with 770 additions and 341 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/sync-with-gitlab.yml
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
64 changes: 64 additions & 0 deletions CHANGELOG.md
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)
Loading

0 comments on commit f500f39

Please sign in to comment.