Category:Development: Difference between revisions

No edit summary
 
(69 intermediate revisions by 5 users not shown)
Line 1: Line 1:
This pages serves as a collecting point for all issues related to the development of Octave.
:''This page contains links to pages of interest to Octave developers.''


On the page [[Projects]] possible tasks are listed for future Octave developers.  
= 💡 Getting started 🔰 =
* [[Developer FAQ]] -- Start here.
* [[Contribution guidelines]] for Octave
** [[C++ style guide]]
** [[Octave style guide]]
** [[Help text style guide]]
** [[Commit message guidelines]]
 
= 🔬 Octave development =
 
: {{Note|'''Attend our next [[meet | Online Developer Meeting]]''' 🙂💬 (See [[:Category:Meetings | all previous meetings]])}}
 
== 🛠️ [[:Category:Building|Building]] ==
 
* [[Building]] -- General information how to build Octave from source.
** [[Building on Microsoft Windows]]
** [[Building on Ubuntu Virtual Machine]]
* [[Continuous Build]] -- Check changes with [https://buildbot.net/ Buildbot].
* [[MXE]] -- Cross-compiling to MS Windows.
* [[Enable large arrays: Build octave such that it can use arrays larger than 2Gb.|Large array support]]
 
=== 🔧 Tools ===
 
* [[Mercurial]] -- How to use Octave's version control scheme, creating patches (changesets).
* [[Doxygen]] -- Documentation for C++ files
* [https://ccache.samba.org/ ccache] -- How to faster compile Octave.
* [[:Category:Editors|Editors]] -- A list of editors supporting Octave syntax highlighting.
 
== ⚖️ [[:Category:Testing|Testing]] ==
 
* [[Tests]]
* [[BIST for m-files]]
* [[Add BIST tests for octave functions written in C++|BIST for C++ files]]
 
== 🐞 Debugging ==
 
* [[Debugging Octave]] -- How to use [https://www.gnu.org/software/gdb/ gdb] to obtain stack traces.
* [[Finding Memory Leaks]] -- How to use [https://www.valgrind.org/ valgrind].
 
== 🎉 [[:Category:Releases|Releasing]] ==
 
* The next minor release will be '''GNU Octave 9.2.0''' (a few months major release).
* The next major release will be [[9.1 Release Checklist | '''GNU Octave 9.1.0''']] (beginning of 2024).
* [[Release History]]
* [[:Category:Releases|Old release checklists]]
* "Nightly" Octave releases on https://octave.space
 
== 🎯 Goals for upcoming releases ==
 
As discussed in the [[Online Developer Meeting (2020-10-27)]], this wiki section is for a list of possible goals for the next release.  Although anyone may edit the wiki, '''this section is intended for active developers, not a place to dump wishlist items or feature requests'''.  Please create a subsection for your ideas/priorities.
 
=== jwe priorities ===
:''See also [[JWE Project Ideas]] for additional info about some of these items.''
 
==== Large New Features ====
* Compatible arguments block ([https://savannah.gnu.org/bugs/?func=detailitem&item_id=59405 some work has been done]; need to execute actions when functions are called)
* Compatible local functions
* Compatible string class
** Define class itself ([[https://github.com/apjanke/octave-tablicious/inst initial implementation]?)
** Construct strings objects from double quoted strings (painful transition).
* Compatible table class ([https://github.com/apjanke/octave-tablicious initial implementation]?)
* Create a low-level interface to HDF5 functions
** Support Matlab's HDF5-based MAT file format using the proposed low-level interface to HDF5 functions
** Allow all types of function handles to be saved and loaded
** Allow [[classdef]] objects to be saved and loaded
* Make import feature work
 
==== Internal Improvements ====
* Refactor/rewrite code for handling load path
* Refactor/rewrite exist and which functions
* Refactor function objects
* Refactor broadcasting and make it work for sparse matrices
* Replace the [[GUI terminal widget|terminal widget in the GUI]]
* Write stack-based byte-code interpreter that doesn't result in deeply nested function calls to evaluate code
* JIT compiler
* Move more code inside octave namespace
* Eliminate mutable class data where possible
* Eliminate singleton objects
* Use classdef for handle graphics?
 
==== Other ====
* Bug fixes, especially those related to compatibility issues
* Work through the open bug reports for which patches have been submitted - review/apply/reject and close as many of these reports as possible
 
= 💡 [[:Category:Project_Ideas|Project ideas]] and work in progress =
 
* [[Short projects]] -- Good starting point to get into the Octave development.
* [[Summer of Code - Getting Started]] -- Ideas page for GSoC, SOCIS, ... projects.
* [[Projects]] -- Many things that would be nice to have done.
** [[Classdef]] -- Define own data types using <code>classdef</code>.
** [[JIT]] -- Just in time compiler for Octave.
** [[GUI terminal widget]] -- Ideas about a new improved terminal widget.
** [[International Characters Support]] -- Using Octave in your own language.
** [[Pythonic]] -- Calling Python functions directly from Octave.
 
= Other =
 
* [[Project Infrastructure]]


[[Category:Contents]]
[[Category:Contents]]

Latest revision as of 14:11, 17 March 2024

This page contains links to pages of interest to Octave developers.

💡 Getting started 🔰Edit

🔬 Octave developmentEdit

🛠️ BuildingEdit

🔧 ToolsEdit

  • Mercurial -- How to use Octave's version control scheme, creating patches (changesets).
  • Doxygen -- Documentation for C++ files
  • ccache -- How to faster compile Octave.
  • Editors -- A list of editors supporting Octave syntax highlighting.

⚖️ TestingEdit

🐞 DebuggingEdit

🎉 ReleasingEdit

🎯 Goals for upcoming releasesEdit

As discussed in the Online Developer Meeting (2020-10-27), this wiki section is for a list of possible goals for the next release. Although anyone may edit the wiki, this section is intended for active developers, not a place to dump wishlist items or feature requests. Please create a subsection for your ideas/priorities.

jwe prioritiesEdit

See also JWE Project Ideas for additional info about some of these items.

Large New FeaturesEdit

  • Compatible arguments block (some work has been done; need to execute actions when functions are called)
  • Compatible local functions
  • Compatible string class
    • Define class itself ([initial implementation?)
    • Construct strings objects from double quoted strings (painful transition).
  • Compatible table class (initial implementation?)
  • Create a low-level interface to HDF5 functions
    • Support Matlab's HDF5-based MAT file format using the proposed low-level interface to HDF5 functions
    • Allow all types of function handles to be saved and loaded
    • Allow classdef objects to be saved and loaded
  • Make import feature work

Internal ImprovementsEdit

  • Refactor/rewrite code for handling load path
  • Refactor/rewrite exist and which functions
  • Refactor function objects
  • Refactor broadcasting and make it work for sparse matrices
  • Replace the terminal widget in the GUI
  • Write stack-based byte-code interpreter that doesn't result in deeply nested function calls to evaluate code
  • JIT compiler
  • Move more code inside octave namespace
  • Eliminate mutable class data where possible
  • Eliminate singleton objects
  • Use classdef for handle graphics?

OtherEdit

  • Bug fixes, especially those related to compatibility issues
  • Work through the open bug reports for which patches have been submitted - review/apply/reject and close as many of these reports as possible

💡 Project ideas and work in progressEdit

OtherEdit