aboutsummaryrefslogtreecommitdiff
path: root/data/plugins/scale.lua
AgeCommit message (Collapse)Author
2021-10-02Small cleanup of `scale` pluginGuldoman
2021-10-02Scale custom syntax fonts for scale pluginFrancesco Abbate
Close #539.
2021-08-28Refactored minimum scale bug fix codeDaniel Rocha
2021-08-28Fix the additional four spaces to two spaces in the indentDaniel Rocha
2021-08-28Fix minimal scale possibleDaniel Rocha
2021-08-172.0 changelog and modversion updates.Adam Harrison
2021-07-15Namespace plugin-specific configuration settings.Adam Harrison
2021-06-17[plugin/scale] fixed wrong increase and decreasejgmdev
If the user manually set the desired scale by calling scale.set(1.60) the scale_level was not set accordingly which meant that later doing a Scale:Increase/Decrease command yielded incorrect scale amount.
2021-06-14Added in an interface to the scale plugin.Adam Harrison
2021-06-03Scale fonts context menu (#246)Francesco
* Retrieve scale plugin from lite-plugins * New implementation of scale plugin and font C API Introduce two new C API functions, renderer.font.get_size and set_size respectively to get the font size and to set the size to a new value. Using these functions we don't need to know the name of the font but we can just change their size. Adapt the scale plugin to use the new C API function with minor adaptations in the logic. Use smaller step to scale fonts. Rename font_desc_free function, previous name was misleading as only the cached resources are freed. * Add contextmenu plugin from takase From https://github.com/takase1121/lite-contextmenu Adapted to show font scaling commands and find/replace commands. i# testing.lua * Fix the cursor flickering with contextmenu To avoid flickering of the cursor when using the context menu we add a new function `core.request_cursor` that just take note of the cursor requested. The cursor will be actually changed only in root_view:draw() method only when all the drawing operations are done. This means the cursor will be changed only once per frame and only the most recent cursor change request will take effect. * Remove unneeded scale plugin return functions