Skip to content

Commit

Permalink
Added changelog + Automatic sync with Gitlab's read-only mirror
Browse files Browse the repository at this point in the history
README.md by @wopox1337

Added License
  • Loading branch information
stamepicmorg committed Nov 2, 2024
1 parent 32129ac commit a79d92f
Show file tree
Hide file tree
Showing 4 changed files with 93 additions and 2 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/relocalizebugfix.git"
REPO_TARGET: "git@gitlab.com:rehlds/relocalizebugfix.git"
run: |
git clone --mirror "$REPO_ORIGINAL" repo-mirror
cd repo-mirror
git remote set-url origin "$REPO_TARGET"
git push --mirror --force
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# [reLocalizeBugFix](https://github.com/rehlds/relocalizebugfix) Changelog

> [!WARNING]
> This project is now outdated and incompatible with modern ReHLDS versions.
ReLocalizeBug Fix was created to resolve localization issues in Half-Life dedicated servers.
However, with the updates and advancements in the ReHLDS engine, this plugin is now deprecated and not compatible with current ReHLDS builds.

Initially developed as an extension of [LocalizeBugFix by s1lentq](https://github.com/s1lentq/localizebugfix) for HLDS, it aimed to fix localization-related bugs in the server environment but is no longer maintained.

> [!IMPORTANT]
> This project has been [deprecated since 2017](https://github.com/rehlds/rehlds/issues/328#issuecomment-275837883).
---

## [`v2.8`](https://github.com/rehlds/relocalizebugfix/releases/tag/v2.8) - 2016-11-03

### Added
- Public release compatible with ReHLDS

**Full Changelog**: [v2.8](https://github.com/rehlds/relocalizebugfix/commits/v2.8)
21 changes: 21 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2014-2016 s1lentq, 2016-2024 reHLDS

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
22 changes: 20 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
#ReLocalizeBug Fix
## [reLocalizeBugFix](https://github.com/rehlds/relocalizebugfix) [![Percentage of issues still open](http://isitmaintained.com/badge/open/rehlds/relocalizebugfix.svg)](http://isitmaintained.com/project/rehlds/relocalizebugfix "Percentage of issues still open") [![GitHub license](https://img.shields.io/github/license/rehlds/relocalizebugfix.svg?longCache=true&style=flat-square)](https://github.com/rehlds/relocalizebugfix/blob/master/LICENSE.md) [![Deprecated](https://img.shields.io/badge/status-Deprecated-red.svg?style=flat-square)](https://github.com/rehlds/relocalizebugfix/) [![GitHub issues](https://img.shields.io/github/issues/rehlds/relocalizebugfix.svg?longCache=true&style=flat-square)](https://github.com/rehlds/relocalizebugfix/issues) [![GitHub forks](https://img.shields.io/github/forks/rehlds/relocalizebugfix.svg?longCache=true&style=flat-square)](https://github.com/rehlds/relocalizebugfix/network) [![GitHub stars](https://img.shields.io/github/stars/rehlds/relocalizebugfix.svg?longCache=true&style=flat-square)](https://github.com/rehlds/relocalizebugfix/stargazers)

Fix exploit localization strings in chat
> [!WARNING]
> This project is now outdated and incompatible with modern ReHLDS versions.
### Installation
To install the ReLocalizeBug Fix, add the following lines to your `addons/metamod/plugins.ini` file:

```ini
win32 addons\relocalizebugfix\relocalizebugfix_mm.dll
linux addons/relocalizebugfix/relocalizebugfix_mm_i386.so
```

### Overview
ReLocalizeBug Fix was created to resolve localization issues in Half-Life dedicated servers. However, with the updates and advancements in the ReHLDS engine, this plugin is now deprecated and not compatible with current ReHLDS builds. Initially developed as an extension of [LocalizeBugFix by s1lentq](https://github.com/s1lentq/localizebugfix) for HLDS, it aimed to fix localization-related bugs in the server environment but is no longer maintained.

> [!IMPORTANT]
> This project has been [deprecated since 2017](https://github.com/rehlds/rehlds/issues/328#issuecomment-275837883).
### Warning
Using this plugin with newer versions of ReHLDS may lead to instability and unexpected behavior. We recommend utilizing supported plugins and features available in the latest releases.

0 comments on commit a79d92f

Please sign in to comment.