Skip to content

Commit

Permalink
Release Focus 0.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
focus-editor committed Aug 26, 2024
1 parent d365dfb commit 7559401
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 13 deletions.
15 changes: 13 additions & 2 deletions FOCUS-CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,19 @@

# Main Git Branch

+ New features:
+ ...
+ Bug fixes:
+ ...
+ Other changes:
+ ...



# RELEASES ==================================================================

# Version 0.3.6

+ New features:
+ New option: `status_bar_position`. Allows changing the position of the status bar to either the `top` or `bottom` of the editor window. Defaults to `bottom`.
+ Code colors have been revamped. There are now more colors available in the config, which roughly correspond to the code tokens produced by language tokenizers.
Expand Down Expand Up @@ -60,8 +73,6 @@
+ It is now possible to add a comment to an empty line by using the `toggle_comment` action (thanks @polgartom)


# RELEASES ==================================================================

# Version 0.3.5

+ New features:
Expand Down
22 changes: 11 additions & 11 deletions first.jai
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
VERSION :: #run -> string {
result, revision := run_command("git", "rev-parse", "--short", "HEAD", capture_and_return_output = true);
if revision return sprint("0.3.6-%", trim(revision));
return "0.3.6-dev";
}
RELEASE_DATE :: #run -> string {
current_time := to_calendar(current_time_consensus());
return calendar_to_string(current_time);
}
// VERSION :: #run -> string {
// result, revision := run_command("git", "rev-parse", "--short", "HEAD", capture_and_return_output = true);
// if revision return sprint("0.3.6-%", trim(revision));
// return "0.3.6-dev";
// }
// RELEASE_DATE :: #run -> string {
// current_time := to_calendar(current_time_consensus());
// return calendar_to_string(current_time);
// }

// NOTE: Uncomment when releasing, comment out when not releasing
// VERSION :: "0.3.5";
// RELEASE_DATE :: "5 May 2024";
VERSION :: "0.3.6";
RELEASE_DATE :: "26 August 2024";

#run,stallable build();

Expand Down

0 comments on commit 7559401

Please sign in to comment.