Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
tabarra committed Dec 23, 2020
1 parent 24e890d commit a00a3a8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dev_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
- [x] improved (slightly) the behavior of the live console auto scroll
- [x] improve terminal onboarding? Nem que seja só um pouquinho...
- [x] test on linux
- [ ] version bump
- [x] version bump

> Hopefully now:
- [ ] move the Monitor/Restarter tab in the settings page
Expand Down
2 changes: 1 addition & 1 deletion fxmanifest.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
author 'Tabarra'
description 'Remotely Manage & Monitor your GTA5 FiveM Server'
repository 'https://github.com/tabarra/txAdmin'
version '3.1.0-beta2'
version '3.1.0'

fx_version 'bodacious'
games { 'gta5' }
Expand Down
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ if(typeof txAdminVersion !== 'string' || txAdminVersion == 'null'){
//Check if this version of txAdmin is too outdated to be considered safe to use in prod
//NOTE: Only valid if its being very actively maintained.
// Use 30d for patch 0, or 45~60d otherwise
const txAdminVersionBestBy = 1606277666 + (26 * 86400);
// dir(new Date(txAdminVersionBestBy*1000).toLocaleString()) // 21/12/2020 02:14:26 BRT
const txAdminVersionBestBy = 1608440000 + (22 * 86400);
// dir(new Date(txAdminVersionBestBy*1000).toLocaleString()) // 11/01/2021 02:53:20 BRT
if(now() > txAdminVersionBestBy){
logError(`This version of txAdmin is outdated.`);
logError(`Please update as soon as possible.`);
Expand Down
6 changes: 5 additions & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "3.0.2",
"version": "3.1.0",
"changelog": "Deprecated Message. Please Update to v3.",
"allVersions": [
{
Expand Down Expand Up @@ -217,6 +217,10 @@
{
"version": "3.0.2",
"changelog": "Fixed resources page. Added ban reason to join rejection message. Minor css stuff."
},
{
"version": "3.1.0",
"changelog": "Improved the Deployer. Added ban importer tool. Added database backup tool. Many minor changes/tweaks/fixes."
}
]
}

0 comments on commit a00a3a8

Please sign in to comment.