![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
An extension program to curses that offers option menus, message boxes, file dialogues and more
Extension library to curses
Use pip3 install cursesplus
on Linux or py -m pip install cursesplus
on Windows
For Windows you need to also install windows-curses
or related program
to provide the basic curses functionality
Fix critical bug in input
Textview is now more colourful
The following changes likely require changes in your code
Move filline, showcursor, and hidecursor to a new module called utils.
Fix spelling issue, utils.filline is now utils.fill_line
Change displayops to optionmenu. Please refactor all calls from displayops() to optionmenu(): No other changes are required
Remove legacy function showerror
. Use messagebox.showerror as a replacement
Remove legacy function askyesno_old
. Use messagebox.askyesno as a replacement
Combine displaymsg
and displaymsgnodelay
into one function
Existing displaymsgnodelay
calls can be changed to displaymsg(stdscr,[messages],False)
, so change the flag wait_for_keypress to false
Remove redundant american function set_color
. You can either use the (correct) spelling set_colour
or you can not use this library.
transitions contains many transitions to add animations to your program
NOTE: THIS IS AN INTERNAL FUNCTION, IT IS NOT MEANT TO BE USED BY THE COMMON USER
This executes func(args)
This is a replacement function to old's type zero. It fills the screen from the top down with horizontal white bars. It then replaces them with black bars in the same configuration.
stdscr
is a curses window object
func_to_call
is a function. If it is set to none, no function is called
args
is a tuple. The tuple will be passed to the function as arguments
speed
is an int. A higher value increases the animation speed. A lower value (0 - 1) makes it slower. If you set speed to 0, the program will crash.
This is a replacement for old's type one transition. It fills random characters of the screen with blocks until the whole screen is covered, then it removes it in the same fashion.
stdscr
is a curses window object
func_to_call
is a function. If it is set to none, no function is called
args
is a tuple. The tuple will be passed to the function as arguments
speed
is an int. A higher value increases the animation speed. A lower value (0 - 1) makes it slower. If you set speed to 0, the program will crash.
This is an all new transition. It functions like horizontal bars except they are vertical and go left to right.
stdscr
is a curses window object
func_to_call
is a function. If it is set to none, no function is called
args
is a tuple. The tuple will be passed to the function as arguments
speed
is an int. A higher value increases the animation speed. A lower value (0 - 1) makes it slower. If you set speed to 0, the program will crash.
Utils.py Contain a series of non-ui utility functions. By non-ui I mean that it does not show a screen and it is non-interactive. It is meant to enhance the creation of custom menus.
This function fills row line
with the colour colour
.
stdscr
is a curses window object
line
is an int. It is the row number you wish to fill in
colour
is a curses colour. Use cursesplus.set_colour()
for this
This function hides the console cursor
This function shows the console cursor
constants.py contains a series of constants such as colours and special lines.
** This documentation is not yet complete. There are many more features than this **
FAQs
An extension program to curses that offers option menus, message boxes, file dialogues and more
We found that cursesplus demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.