BlockyPython

所属分类:机器翻译
开发工具:JavaScript
文件大小:1543KB
下载次数:0
上传日期:2019-10-13 21:51:08
上 传 者sh-1993
说明:  基于块的可视和基于文本的编程语言,包括实时转换为Python
(Blockly-based visual and text-based programming languages, including real-time translation to Python)

文件列表:
.eslintrc.json (2690, 2019-10-14)
.jshintignore (80, 2019-10-14)
.npmrc (37, 2019-10-14)
.travis.yml (660, 2019-10-14)
.vscode (0, 2019-10-14)
.vscode\launch.json (493, 2019-10-14)
LICENSE (10174, 2019-10-14)
build.py (19995, 2019-10-14)
cdkk (0, 2019-10-14)
cdkk\acorn_interpreter.js (86062, 2019-10-14)
cdkk\code.js (19595, 2019-10-14)
cdkk\icon.png (3262, 2019-10-14)
cdkk\icons.png (546, 2019-10-14)
cdkk\index.html (13681, 2019-10-14)
cdkk\msg (0, 2019-10-14)
cdkk\msg\ar.js (1317, 2019-10-14)
cdkk\msg\be-tarask.js (1500, 2019-10-14)
cdkk\msg\br.js (1046, 2019-10-14)
cdkk\msg\ca.js (1049, 2019-10-14)
cdkk\msg\cs.js (908, 2019-10-14)
cdkk\msg\da.js (987, 2019-10-14)
cdkk\msg\de.js (1092, 2019-10-14)
cdkk\msg\el.js (1591, 2019-10-14)
cdkk\msg\en.js (929, 2019-10-14)
cdkk\msg\es.js (1016, 2019-10-14)
cdkk\msg\et.js (1020, 2019-10-14)
cdkk\msg\fa.js (1361, 2019-10-14)
cdkk\msg\fr.js (1056, 2019-10-14)
cdkk\msg\he.js (1297, 2019-10-14)
cdkk\msg\hrx.js (1049, 2019-10-14)
cdkk\msg\hu.js (1003, 2019-10-14)
cdkk\msg\ia.js (1068, 2019-10-14)
cdkk\msg\is.js (1000, 2019-10-14)
cdkk\msg\it.js (1059, 2019-10-14)
cdkk\msg\ja.js (1249, 2019-10-14)
cdkk\msg\kab.js (1001, 2019-10-14)
cdkk\msg\ko.js (1101, 2019-10-14)
... ...

# Blockly [![Build Status](https://github.com/BrianDunneKK/BlockyPython/blob/master/ https://travis-ci.org/google/blockly.svg?branch=master)](https://github.com/BrianDunneKK/BlockyPython/blob/master/https://travis-ci.org/google/blockly) Google's Blockly is a web-based, visual programming editor. Users can drag blocks together to build programs. All code is free and open source. **The project page is https://developers.google.com/blockly/** ![](https://github.com/BrianDunneKK/BlockyPython/blob/master/https://developers.google.com/blockly/images/sample.png) Blockly has an active [developer forum](https://github.com/BrianDunneKK/BlockyPython/blob/master/https://groups.google.com/forum/#!forum/blockly). Please drop by and say hello. Show us your prototypes early; collectively we have a lot of experience and can offer hints which will save you time. We actively monitor the forums and typically respond to questions within 2 working days. Help us focus our development efforts by telling us [what you are doing with Blockly](https://github.com/BrianDunneKK/BlockyPython/blob/master/https://developers.google.com/blockly/registration). The questionnaire only takes a few minutes and will help us better support the Blockly community. Cross-browser Testing Platform and Open Source <3 Provided by [Sauce Labs](https://github.com/BrianDunneKK/BlockyPython/blob/master/https://saucelabs.com) Want to contribute? Great! First, read [our guidelines for contributors](https://github.com/BrianDunneKK/BlockyPython/blob/master/https://developers.google.com/blockly/guides/modify/contributing). ## Releases We release by pushing the latest code to the master branch, followed by updating our [docs](https://github.com/BrianDunneKK/BlockyPython/blob/master/developers.google.com/blockly) and [demo pages](https://github.com/BrianDunneKK/BlockyPython/blob/master/https://blockly-demo.appspot.com). We typically release a new version of Blockly once a quarter (every 3 months). If there are breaking bugs, such as a crash when performing a standard action or a rendering issue that makes Blockly unusable, we will cherry-pick fixes to master between releases to fix them. The [releases page](https://github.com/BrianDunneKK/BlockyPython/blob/master/https://github.com/google/blockly/releases) has a list of all releases. Releases are tagged by the release date (YYYYMMDD) with a leading '1.' and a trailing '.0' in case we ever need a major or minor version (such as [1.20190419.0](https://github.com/BrianDunneKK/BlockyPython/blob/master/https://github.com/google/blockly/tree/1.20190419.0)). If you're using npm, a specific release can be installed by using its tag: `npm install git://github.com/google/blockly.git#1.20181219.0` ### New APIs Once a new API is merged into master it is considered beta until the following release. We generally try to avoid changing an API after it has been merged to master, but sometimes we need to make changes after seeing how an API is used. If an API has been around for at least two releases we'll do our best to avoid breaking it. Unreleased APIs may change radically. Anything that is in `develop` but not `master` is subject to change without warning. ### Branches There are two main branches for Blockly. **[master](https://github.com/BrianDunneKK/BlockyPython/blob/master/https://github.com/google/blockly)** - This is the (mostly) stable current release of Blockly. **[develop](https://github.com/BrianDunneKK/BlockyPython/blob/master/https://github.com/google/blockly/tree/develop)** - This is where most of our work happens. Pull requests should always be made against develop. This branch will generally be usable, but may be less stable than the master branch. Once something is in develop we expect it to merge to master in the next release. **other branches:** - Larger changes may have their own branches until they are good enough for people to try out. These will be developed separately until we think they are almost ready for release. These branches typically get merged into develop immediately after a release to allow extra time for testing. ## Issues and Milestones We typically triage all bugs within 2 working days, which includes adding any appropriate labels and assigning it to a milestone. Please keep in mind, we are a small team so even feature reqeusts that everyone agrees on may not be prioritized. ### Milestones **Upcoming release** - The upcoming release milestone is for all bugs we plan on fixing before the next release. This typically has the form of `year_quarter_release` (such as `2019_q2_release`). Some bugs will be added to this release when they are triaged, others may be added closer to a release. **Bug Bash Backlog** - These are bugs that we're still prioritizing. They haven't been added to a specific release yet, but we'll consider them for each release depending on relative priority and available time. **Icebox** - These are bugs that we do not intend to spend time on. They are either too much work or minor enough that we don't expect them to ever take priority. We are still happy to accept pull requests for these bugs.

近期下载者

相关文件


收藏者