Skip to content

Commit

Permalink
V75 (#572)
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitre authored Sep 10, 2024
1 parent a59f24d commit 349c02d
Show file tree
Hide file tree
Showing 9 changed files with 305 additions and 285 deletions.
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

0 comments on commit 349c02d

Please sign in to comment.