Skip to content

Commit

Permalink
new plugin DontRoundMyTimestamps: round 7.6y -> 7y instead of 8y (#2060)
Browse files Browse the repository at this point in the history
Co-authored-by: V <[email protected]>
  • Loading branch information
KontrollFreek and Vendicated authored May 28, 2024
1 parent 8131ca8 commit b9e83d9
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
35 changes: 35 additions & 0 deletions src/plugins/dontRoundMyTimestamps/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
/*
* Vencord, a modification for Discord's desktop app
* Copyright (c) 2023 Vendicated and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

import { Devs } from "@utils/constants";
import definePlugin from "@utils/types";
import { moment } from "@webpack/common";

export default definePlugin({
name: "DontRoundMyTimestamps",
authors: [Devs.Lexi],
description: "Always rounds relative timestamps down, so 7.6y becomes 7y instead of 8y",

start() {
moment.relativeTimeRounding(Math.floor);
},

stop() {
moment.relativeTimeRounding(Math.round);
}
});
4 changes: 4 additions & 0 deletions src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -402,6 +402,10 @@ export const Devs = /* #__PURE__*/ Object.freeze({
name: "maisy",
id: 257109471589957632n,
},
Lexi: {
name: "Lexi",
id: 506101469787717658n
},
Mopi: {
name: "Mopi",
id: 1022189106614243350n
Expand Down

0 comments on commit b9e83d9

Please sign in to comment.