Skip to content
This repository has been archived by the owner on Mar 29, 2023. It is now read-only.

Commit

Permalink
v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alp1x committed Feb 15, 2023
1 parent d2c18fd commit 46a3b81
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ um-admin is a FiveM admin menu that is developed using Vue.js (CDN). Its purpose
* sv_enforceGameBuild `2699`

## URL
* ##### Peds: https://docs.fivem.net/
* ##### Vehicle: https://gtahash.ru/
* ##### Peds: https://docs.fivem.net/docs/game-references/ped-models/
* ##### Vehicle: https://docs.fivem.net/docs/game-references/vehicle-models/
* ##### Weapons: https://vespura.com/ | <img src="https://avatars.githubusercontent.com/u/31419184?v=4" width="1%"> [TomGrobbe](https://github.com/TomGrobbe)
* ##### Discord Lookup: https://mesavirep.xyz/ | <img src="https://avatars.githubusercontent.com/u/43297230?v=4" width="1%"> [chocololat](https://github.com/chocololat)

Expand Down
2 changes: 1 addition & 1 deletion checker/checkversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0
1.2.0
2 changes: 1 addition & 1 deletion checker/version.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
local version = "1.1.0"
local version = "1.2.0"
local updateUrl = "https://raw.githubusercontent.com/alp1x/um-admin/main/checker/checkversion" -- URL to check for updates

PerformHttpRequest(updateUrl, function(err, response, headers)
Expand Down
2 changes: 1 addition & 1 deletion web/assets/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ const adminPanel = Vue.createApp({
this.steam.avatar = "assets/img/no-image.jpg"
this.steam.name = "no steam"
});
fetch(`https://discordlookup.mesavirep.xyz/v1/${d.data.discordpic}`)
fetch(`https://discordlookup.mesavirep.xyz/v1/user/${d.data.discordpic}`)
.then(response => response.json())
.then((data) =>{
this.discord.avatar = data.avatar["link"]
Expand Down
2 changes: 1 addition & 1 deletion web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ <h1>Vehicle Category</h1>
</div>
<div class="profile-card" v-for="(item,index) in vehiclelist" @click="actionEvent(['command','car',index])">
<h5> <i class="fa-solid fa-tags"></i> {{item.category}}</h5>
<img id="car" :src="'https://gtahash.ru/cars/' + item.category + '/' + index + '.jpg'" @error="noImageError">
<img id="car" :src="'https://docs.fivem.net/vehicles/' + index + '.webp'" @error="noImageError">
<h5><i class="fa-solid fa-car-side"></i> Model: {{ index }}</h5>
<small>@spawn {{index}}</small>
</div>
Expand Down

0 comments on commit 46a3b81

Please sign in to comment.