Skip to content

Commit

Permalink
Merge pull request #19 from ZhengLinLei/fix_task_resize_window
Browse files Browse the repository at this point in the history
Grid fix for odd number of windows #13 #18 & Added stash window feature
  • Loading branch information
ZhengLinLei authored Nov 14, 2023
2 parents d039d50 + 65f3886 commit da38017
Show file tree
Hide file tree
Showing 23 changed files with 1,799 additions and 401 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,8 @@

# Release
/dist
*.zip
*.zip

node_modules

*.log
18 changes: 18 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-uglify');

grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
uglify: {
js: {
files: [{
expand: true,
cwd: 'js/src/', // Directorio base de los archivos fuente
src: ['**/*.js'], // Patrón de archivos fuente
dest: 'js/min/', // Directorio de destino
ext: '.min.js', // Extensión del archivo de destino
}]
}
}
})
}
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ Try it! [https://zhenglinlei.github.io/paste-code/](https://zhenglinlei.github.i

### Updates

* `2023 - 11 - 13` Stash the windows for better view, simple and clean interface. Double click the window and you will see the effect

* [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.

* [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.
Expand Down
2 changes: 1 addition & 1 deletion css/prism.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/prism.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit da38017

Please sign in to comment.