Skip to content
Snippets Groups Projects
Unverified Commit fc7bb51c authored by Diego Sampaio's avatar Diego Sampaio
Browse files

Move files to root

parent 6610a1ab
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@ const getMongoVersion = async function({ version, git }) {
const getNodeNpmVersions = async function({ version, git, request }) {
try {
const meteorRelease = await git.show([`${ version }:.meteor/release`]);
const meteorRelease = await git.show([`${ version }:apps/meteor/.meteor/release`]);
if (!/^METEOR@(\d+\.){1,2}\d/.test(meteorRelease)) {
return {};
}
......@@ -38,7 +38,7 @@ const getNodeNpmVersions = async function({ version, git, request }) {
const getAppsEngineVersion = async function({ version, git }) {
try {
const packageJson = await git.show([`${ version }:package-lock.json`]);
const packageJson = await git.show([`${ version }:apps/meteor/package-lock.json`]);
const { dependencies } = JSON.parse(packageJson);
const { version: appsEngineVersion } = dependencies['@rocket.chat/apps-engine'];
......
File moved
File moved
File moved
......@@ -2,8 +2,8 @@ Copyright (c) 2015-2022 Rocket.Chat Technologies Corp.
Portions of this software are licensed as follows:
* All content that resides under the "ee/" directory of this repository, if
that directory exists, is licensed under the license defined in "ee/LICENSE".
* All content that resides under the "apps/meteor/ee/" directory of this repository, if
that directory exists, is licensed under the license defined in "apps/meteor/ee/LICENSE".
* All third-party components incorporated into the Rocket.Chat Software are
licensed under the original license provided by the owner of the applicable
component.
......
File moved
File moved
File moved
## `registerFieldTemplate` is deprecated
hmm it's true :(, we don't encourage this type of customization anymore, it ends up opening some security holes, we prefer the use of UIKit. If you feel any difficulty let us know
## `attachment.actions` is deprecated
same reason above
## `attachment PDF preview` is no longer being rendered
it is temporarily disabled, nowadays is huge effort render the previews and requires the download of the entire file on the client. We are working to improve this :)
\ No newline at end of file
This diff is collapsed.
......@@ -349,17 +349,6 @@
"server": "server/main.ts"
}
},
"houston": {
"minTag": "0.55.0-rc.0",
"updateFiles": [
"package.json",
"package-lock.json",
".snapcraft/snap/snapcraft.yaml",
".snapcraft/resources/prepareRocketChat",
".docker/Dockerfile.rhel",
"app/utils/rocketchat.info"
]
},
"browserslist": [
"last 2 versions",
"Firefox ESR"
......
......@@ -33,5 +33,16 @@
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "yarn@3.2.0"
"packageManager": "yarn@3.2.0",
"houston": {
"minTag": "0.55.0-rc.0",
"updateFiles": [
"apps/meteor/package.json",
"apps/meteor/package-lock.json",
"apps/meteor/.snapcraft/snap/snapcraft.yaml",
"apps/meteor/.snapcraft/resources/prepareRocketChat",
"apps/meteor/.docker/Dockerfile.rhel",
"apps/meteor/app/utils/rocketchat.info"
]
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment