forked from defold/defold
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix editor apidocs generation (defold#9471)
* Docs * Doc * java
- Loading branch information
Showing
22 changed files
with
161 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
;; Copyright 2020-2024 The Defold Foundation | ||
;; Copyright 2014-2020 King | ||
;; Copyright 2009-2014 Ragnar Svensson, Christian Murray | ||
;; Licensed under the Defold License version 1.0 (the "License"); you may not use | ||
;; this file except in compliance with the License. | ||
;; | ||
;; You may obtain a copy of the License, together with FAQs at | ||
;; https://www.defold.com/license | ||
;; | ||
;; Unless required by applicable law or agreed to in writing, software distributed | ||
;; under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR | ||
;; CONDITIONS OF ANY KIND, either express or implied. See the License for the | ||
;; specific language governing permissions and limitations under the License. | ||
|
||
(ns editor.os | ||
(:import [com.dynamo.bob Platform])) | ||
|
||
(defn- os-raw [] | ||
(keyword (.. Platform getHostPlatform getOs))) | ||
|
||
(def ^{:arglists '([])} os | ||
"Returns either :win32, :macos or :linux" | ||
(memoize os-raw)) | ||
|
||
(defn is-mac-os? [] | ||
(= (os) :macos)) | ||
|
||
(defn is-linux? [] | ||
(= (os) :linux)) | ||
|
||
(defn is-win32? [] | ||
(= (os) :win32)) |
Oops, something went wrong.