Skip to content

Commit da38017

Browse files
authored
Merge pull request #19 from ZhengLinLei/fix_task_resize_window
Grid fix for odd number of windows #13 #18 & Added stash window feature
2 parents d039d50 + 65f3886 commit da38017

23 files changed

Lines changed: 1799 additions & 401 deletions

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,8 @@
77

88
# Release
99
/dist
10-
*.zip
10+
*.zip
11+
12+
node_modules
13+
14+
*.log

Gruntfile.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
module.exports = function(grunt) {
2+
grunt.loadNpmTasks('grunt-contrib-uglify');
3+
4+
grunt.initConfig({
5+
pkg: grunt.file.readJSON('package.json'),
6+
uglify: {
7+
js: {
8+
files: [{
9+
expand: true,
10+
cwd: 'js/src/', // Directorio base de los archivos fuente
11+
src: ['**/*.js'], // Patrón de archivos fuente
12+
dest: 'js/min/', // Directorio de destino
13+
ext: '.min.js', // Extensión del archivo de destino
14+
}]
15+
}
16+
}
17+
})
18+
}

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ Try it! [https://zhenglinlei.github.io/paste-code/](https://zhenglinlei.github.i
1818

1919
### Updates
2020

21+
* `2023 - 11 - 13` Stash the windows for better view, simple and clean interface. Double click the window and you will see the effect
22+
2123
* [See more](#execute-code-in-terminal) - `2023 - 01 - 09: ` New update! Have you ever dreamed to execute `javascript` in Paste Code? Now you can do it! Just type `execute` or `run` in the terminal. For example, if you want to execute `console.log('Hello World!')` in the window 0, you can write `execute 0` or `run 0` in the terminal.
2224

2325
* [See more](#editor-themes) - `2023 - 01 - 05: ` Themes for everyone. Yeeeeeeeey 🙈 🙉 🙊 How to customise your theme? Just type `theme set <theme>` in the terminal. You can also use `theme list` to see all available themes.

css/prism.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/prism.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)