Skip to content

Commit ca53b6c

Browse files
committed
chore: update name and refs
1 parent f727751 commit ca53b6c

4 files changed

Lines changed: 27 additions & 30 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ name: Create release
33
on:
44
push:
55
tags:
6-
- 'v*.*.*'
6+
- "v*.*.*"
77

88
jobs:
99
create-release:
10-
if: github.actor_id != 210085057
10+
if: github.actor_id != 278903378
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Install zip
@@ -18,7 +18,6 @@ jobs:
1818
with:
1919
bun-version: latest
2020

21-
2221
- name: Generate GitHub App token
2322
id: app_token
2423
uses: tibdex/github-app-token@v2
@@ -33,7 +32,6 @@ jobs:
3332
ref: ${{ github.event.repository.default_branch }}
3433
token: ${{ steps.app_token.outputs.token }}
3534

36-
3735
- name: Bump manifest version
3836
run: bun run .github/actions/bump-manifest-version.js
3937
env:
@@ -45,8 +43,7 @@ jobs:
4543
add: fxmanifest.lua
4644
push: true
4745
default_author: github_actions
48-
message: 'chore: bump version to ${{ github.ref_name }}'
49-
46+
message: "chore: bump version to ${{ github.ref_name }}"
5047

5148
- name: Bundle files
5249
run: |
@@ -56,7 +53,7 @@ jobs:
5653
cd ./temp && zip -r ../ox_target.zip ./ox_target
5754
5855
- name: Create release
59-
uses: 'marvinpinto/action-automatic-releases@v1.2.1'
56+
uses: "marvinpinto/action-automatic-releases@v1.2.1"
6057
with:
6158
repo_token: ${{ secrets.GITHUB_TOKEN }}
6259
prerelease: false

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# ox_target
22

3-
![](https://img.shields.io/github/downloads/communityox/ox_target/total?logo=github)
4-
![](https://img.shields.io/github/downloads/communityox/ox_target/latest/total?logo=github)
5-
![](https://img.shields.io/github/contributors/communityox/ox_target?logo=github)
6-
![](https://img.shields.io/github/v/release/communityox/ox_target?logo=github)
3+
![](https://img.shields.io/github/downloads/overextended/ox_target/total?logo=github)
4+
![](https://img.shields.io/github/downloads/overextended/ox_target/latest/total?logo=github)
5+
![](https://img.shields.io/github/contributors/overextended/ox_target?logo=github)
6+
![](https://img.shields.io/github/v/release/overextended/ox_target?logo=github)
77

88

99
A performant and flexible standalone "third-eye" targeting resource, with additional functionality for supported frameworks.
@@ -14,11 +14,11 @@ To improve many design flaws, ox_target has been written from scratch and drops
1414

1515
## 📚 Documentation
1616

17-
https://coxdocs.dev/ox_target
17+
https://overextended.dev/ox_target
1818

1919
## 💾 Download
2020

21-
https://github.com/communityox/ox_target/releases/latest/download/ox_target.zip
21+
https://github.com/overextended/ox_target/releases/latest/download/ox_target.zip
2222

2323
## ✨ Features
2424

fxmanifest.lua

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9,37 +9,37 @@ game 'gta5'
99
name 'ox_target'
1010
author 'Overextended'
1111
version '1.18.0'
12-
repository 'https://github.com/communityox/ox_target'
12+
repository 'https://github.com/overextended/ox_target'
1313
description ''
1414

1515
-- Manifest
1616
ui_page 'web/index.html'
1717

1818
shared_scripts {
19-
'@ox_lib/init.lua',
19+
'@ox_lib/init.lua',
2020
}
2121

2222
client_scripts {
23-
'client/main.lua',
23+
'client/main.lua',
2424
}
2525

2626
server_scripts {
27-
'server/main.lua'
27+
'server/main.lua'
2828
}
2929

3030
files {
31-
'web/**',
32-
'locales/*.json',
33-
'client/api.lua',
34-
'client/utils.lua',
35-
'client/state.lua',
36-
'client/debug.lua',
37-
'client/defaults.lua',
38-
'client/framework/nd.lua',
39-
'client/framework/ox.lua',
40-
'client/framework/esx.lua',
41-
'client/framework/qbx.lua',
42-
'client/compat/qtarget.lua',
31+
'web/**',
32+
'locales/*.json',
33+
'client/api.lua',
34+
'client/utils.lua',
35+
'client/state.lua',
36+
'client/debug.lua',
37+
'client/defaults.lua',
38+
'client/framework/nd.lua',
39+
'client/framework/ox.lua',
40+
'client/framework/esx.lua',
41+
'client/framework/qbx.lua',
42+
'client/compat/qtarget.lua',
4343
}
4444

4545
provide 'qtarget'

server/main.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
lib.versionCheck('communityox/ox_target')
1+
lib.versionCheck('overextended/ox_target')
22

33
if not lib.checkDependency('ox_lib', '3.30.0', true) then return end
44

0 commit comments

Comments
 (0)