Skip to content

Commit

Permalink
Paradox日本語版更新しましたMinecraft1.20.50対応!!
Browse files Browse the repository at this point in the history
  • Loading branch information
gamelist1990 committed Dec 9, 2023
1 parent 8c33ef7 commit 6fb5a29
Show file tree
Hide file tree
Showing 479 changed files with 26,369 additions and 57,482 deletions.
15 changes: 9 additions & 6 deletions .prettierignore → .eslintignore
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
node_modules
# .eslintignore

node_modules/
.gitignore
.distignore
.mcattributes
.prettierrc
package-lock.json
package.json
tsconfig.json
.github
.vs
.vscode
.git
.github/
.vs/
.vscode/
.git/
.prettierignore
*.md
bedrock-server-*
/docs
/docs/
build/
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto eol=lf
8 changes: 0 additions & 8 deletions .prettierrc

This file was deleted.

File renamed without changes.
2 changes: 1 addition & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"recommendations": ["esbenp.prettier-vscode", "blockceptionltd.blockceptionvscodeminecraftbedrockdevelopmentextension"]
"recommendations": ["esbenp.prettier-vscode", "dbaeumer.vscode-eslint", "blockceptionltd.blockceptionvscodeminecraftbedrockdevelopmentextension"]
}
54 changes: 32 additions & 22 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,34 @@
{
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"git.ignoreLimitWarning": true,
"editor.formatOnSave": true,
"search.exclude": {
"**/.git": true,
"**/node_modules": true
},
"files.exclude": {
"**/.git": true,
"**/node_modules": true
}
"[javascript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[typescript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[typescriptreact]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"git.ignoreLimitWarning": true,
"editor.formatOnSave": true,
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"editor.codeActionsOnSave": {
"source.fixAll": "explicit"
},
"search.exclude": {
"**/.git": true,
"**/node_modules": true
},
"files.exclude": {
"**/.git": true,
"**/node_modules": true
},
"commentTranslate.source": "Bing"
}
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [v3.4.5](https://github.com/Pete9xi/Paradox_AntiCheat/tree/v3.4.5) (2023-12-05)

[Full Changelog](https://github.com/Pete9xi/Paradox_AntiCheat/compare/v3.4.4...v3.4.5)

## [v3.4.4](https://github.com/Pete9xi/Paradox_AntiCheat/tree/v3.4.4) (2023-10-25)

[Full Changelog](https://github.com/Pete9xi/Paradox_AntiCheat/compare/v3.4.3...v3.4.4)

## [v3.4.3](https://github.com/Pete9xi/Paradox_AntiCheat/tree/v3.4.3) (2023-10-22)

[Full Changelog](https://github.com/Pete9xi/Paradox_AntiCheat/compare/v3.4.2...v3.4.3)
Expand Down Expand Up @@ -470,6 +478,4 @@

[Full Changelog](https://github.com/Pete9xi/Paradox_AntiCheat/compare/b174b2960af08a4dbfab838f818df6e75e631811...0.1.0)



\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
\* _This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)_
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<img src="https://i.imgur.com/ZS38i7c.png" alt="Paradox AntiCheat Logo">
<br><br>
<div>
<em>Updated for 1.20.30</em>
<em>Updated for 1.20.40</em>
<br>
Paradox AntiCheat is a fork of Scythe AntiCheat, which was released under the GPLv3 License. Paradox was created to fix some differences within Scythe and to provide a more reliable and effective anti-cheat solution for Minecraft Bedrock. All original commit history pertaining to Scythe still exists within this project and is free to review.
</div>
Expand Down
13 changes: 7 additions & 6 deletions bds.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
const fs = require("fs");
const https = require("https");
const readline = require("readline");
const path = require("path");
const AdmZip = require("adm-zip");
import * as fs from "fs";
import * as https from "https";
import * as readline from "readline";
import * as path from "path";
import * as AdmZip from "adm-zip";
import * as os from "os";

// Function to retrieve the latest BDS version
function getLatestVersion() {
Expand Down Expand Up @@ -32,7 +33,7 @@ function getLatestVersion() {

// Function to download the BDS server
function downloadBDS(version) {
const osType = require("os").platform();
const osType = os.platform();
let downloadURL;

if (osType === "linux") {
Expand Down
Binary file removed build.mcpack
Binary file not shown.
Loading

0 comments on commit 6fb5a29

Please sign in to comment.