Spaces:
Sleeping
Sleeping
File size: 2,627 Bytes
0de0b06 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
/*
These values control branding strings throughout the entire app. If you're forking, please take a few minutes to update them.
"The website" refers to the website itself that you use to load projects and convert them to another form.
"Packaged projects" refers to the files generated by the website. They include a line of text something like:
`Parts of this script are from the ${APP_NAME} <${WEBSITE}>, licensed as follows: ${COPYRIGHT_NOTICE}`
APP_NAME is the name of the app. This text is included in packaged projects.
WEBSITE is your app's website. This link is included in packaged projects.
COPYRIGHT_NOTICE is A copyright notice regarding the app. This text is included in packaged projects.
Also make sure to update the "License" section in README.md
ACCENT_COLOR is a color used in various parts of the interface and as the default value for the accent
color option. It should be a 6-character hex color (#123abc)
SOURCE_CODE is where users can find the app's source code. This link is included in the website's footer.
If this is set to an empty string, the link is removed.
FEEDBACK_PRIMARY and FEEDBACK_SECONDARY are feedback/bug report links shown in various places throughout the website.
name is how they will be labelled in the interface and link is of course a URL
DONATE is a link that people can visit to donate.
If this is set to an empty string, the link is removed.
PRIVACY_POLICY is a link to the privacy policy.
If this is set to an empty string, the link is removed.
*/
module.exports = {
APP_NAME: 'Scratch for School Packager',
WEBSITE: 'https://studio.penguinmod.com/PenguinMod-Packager/',
COPYRIGHT_NOTICE: `Copyright (C) 2021-2022 Thomas Weber
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.`,
ACCENT_COLOR: '#6a00ff',
SOURCE_CODE: 'https://github.com/PenguinMod/PenguinMod-Packager',
FEEDBACK_PRIMARY: {
name: 'Discord',
link: 'https://discord.gg/NZ9MBMYTZh'
},
FEEDBACK_SECONDARY: {
name: 'GitHub',
link: 'https://github.com/PenguinMod/PenguinMod-Packager/issues'
},
DONATE: 'https://penguinmod.com/donate',
PRIVACY_POLICY: 'https://turbowarp.org/privacy.html',
};
|