Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V75 #572

Merged
merged 8 commits into from
Sep 10, 2024
Merged

V75 #572

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- uses: actions/checkout@v4

- name: ccache
uses: hendrikmuhs/[email protected].12
uses: hendrikmuhs/[email protected].14
with:
key: ${{ matrix.cfg.target }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: ccache
uses: hendrikmuhs/[email protected].12
uses: hendrikmuhs/[email protected].14
with:
# key: ${{ matrix.os }}-${{ matrix.type }}
key: ${{ matrix.os }}-${{ matrix.cfg.target }}
Expand Down
3 changes: 2 additions & 1 deletion commandLine/src/addons/ofAddon.h
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,8 @@ class ofAddon {

fs::path normalizePath(const fs::path& path) {
try {
auto value = fs::weakly_canonical(path);
// auto value = fs::weakly_canonical(path);
auto value = fs::relative(path);
return value;
} catch (const std::exception& ex) {
std::cout << "Canonical path for [" << path << "] threw exception:\n"
Expand Down
4 changes: 2 additions & 2 deletions commandLine/src/defines.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define OFPROJECTGENERATOR_MAJOR_VERSION 0
#define OFPROJECTGENERATOR_MINOR_VERSION 74
#define OFPROJECTGENERATOR_MINOR_VERSION 75
#define OFPROJECTGENERATOR_PATCH_VERSION 0

#define PG_VERSION "0.74.0"
#define PG_VERSION "0.75.0"
Loading