Skip to content

Commit ce05a37

Browse files
committed
Updates
1 parent 5676db4 commit ce05a37

File tree

3 files changed

+1
-9
lines changed

3 files changed

+1
-9
lines changed

api/cpp/Prizm.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1392,9 +1392,6 @@ bool documentation(bool write_files) {
13921392
obj.set_triangles_visible(true);
13931393
obj.set_triangles_color(GREEN);
13941394

1395-
// Note we didn't need to explicitly call newline() after each command annotation. Command annotations must be
1396-
// on a newline so this is called internally by the implementation
1397-
13981395
// End the obj with a newline to make the formatting of the `output` string nicer
13991396
obj.newline();
14001397

api/python/prizm.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1177,9 +1177,6 @@ def test(filename: str, got: str, wanted: str) -> bool:
11771177
obj.set_triangles_visible(True)
11781178
obj.set_triangles_color(GREEN)
11791179

1180-
# Note we didn't need to explicitly call newline() after each command annotation. Command annotations must be
1181-
# on a newline so this is called internally by the implementation
1182-
11831180
# End the obj with a newline to make the formatting of the `output` string nicer
11841181
obj.newline()
11851182

source/changelog.jai

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ PRIZM_VERSION_0_11_0 :: Version.{"0.11.0", "WIP", #string DONE
5656
* TODO Use complementary colors for backfacing triangles
5757
* TODO Change hotkeys for loading shapes from F1-F4 to just 1-4. Later we can make F1 help and F2 rename items?
5858
* TODO Make the menus that popup in the Details view movable, especially the clipping one, its annoying not to be visible. Or maybe remove the option to toggle between the menu/tree and make menu turn into tree if clicked, and tree turn into menu if closed
59+
* TODO Update compiler and SDL version!
5960
DONE};
6061

6162
PRIZM_VERSION_0_10_0 :: Version.{"0.10.0", "WIP", #string DONE
@@ -73,9 +74,6 @@ PRIZM_VERSION_0_10_0 :: Version.{"0.10.0", "WIP", #string DONE
7374
* The API attempts to minimize dependencies and only imports modules as needed e.g., the Color can be constructed from matplotlib color types, but matplotlib is only imported if you actually call this function. Doing this seems to be a bit unidiomatic in Python so we might change it.
7475
* Having this debug code live outside your project is a feature since it ensures you can't accidentally commit code which writes out objs to production: your CI/CD pipeline should fail to compile because it won't be able to find the Prism API
7576
* Maintenance: `mypy.exe prizm.py` should return no issues; `pylint.exe` should be "reasonable" i.e., fix errors but too-many-statements, using-constant-test, line-too-long etc. This also applies to the `test.py` file
76-
77-
* TODO update the wiki
78-
* TODO Update compiler and SDL version!
7977
DONE};
8078

8179
PRIZM_VERSION_0_9_3 :: Version.{"0.9.3", "17 April 2024", #string DONE

0 commit comments

Comments
 (0)