NissimHadar
c6580f642a
Merge branch 'master' of https://github.com/highfidelity/hifi into shadowControlsOffZvork
2018-02-22 13:45:00 -08:00
tapalisa
1f958c247f
Merge pull request #12391 from 1P-Cusack/FogBugz/Case_4315_colorpreview_final
...
[Case 4315] Fixes ColorPicker Color Preview functionality
2018-02-21 16:09:47 -08:00
Nissim Hadar
b519ebd6f1
Merge branch 'master' of https://github.com/highfidelity/hifi into shadowControlsOffZvork
2018-02-21 12:36:56 -08:00
David Rowe
44aafd92a4
Merge branch 'master' into 21757
...
# Conflicts:
# scripts/system/html/js/entityProperties.js
2018-02-20 17:34:59 +13:00
Nissim Hadar
b2a06cdb98
Merge branch 'master' of https://github.com/highfidelity/hifi into shadowControlsOffZvork
...
# Conflicts:
# libraries/entities/src/EntityItemProperties.cpp
# libraries/entities/src/ShapeEntityItem.h
# libraries/networking/src/udt/PacketHeaders.cpp
# libraries/networking/src/udt/PacketHeaders.h
2018-02-19 13:05:57 -08:00
David Rowe
65efeadf10
Fix selecting values when tabbing between entity properties fields
2018-02-19 19:17:23 +13:00
Nissim Hadar
ff43e4c2ad
Merge branch 'master' of https://github.com/highfidelity/hifi into shadowControlsOffZvork
...
# Conflicts:
# scripts/system/html/js/entityProperties.js
2018-02-15 11:53:11 -08:00
Nissim Hadar
777862f253
can cast shadow flag now works correctly (UI/JS aspects).
2018-02-15 11:50:38 -08:00
Sam Gondelman
36a74eaeee
Merge branch 'master' into decals
2018-02-15 11:02:49 -08:00
Nissim Hadar
adb02d69f9
WIP -adding canCastShadow flag.
2018-02-14 21:45:56 -08:00
Nissim Hadar
12f4b8dbb1
Corrected event listener for canCastShadow - still bad.
2018-02-14 19:12:24 -08:00
Nissim Hadar
054b2bf3e2
Merge branch 'master' of https://github.com/highfidelity/hifi into shadowControlsOffZvork
...
# Conflicts:
# libraries/networking/src/udt/PacketHeaders.cpp
# scripts/system/html/js/entityProperties.js
2018-02-14 17:10:07 -08:00
SamGondelman
324eefc914
remove fresnel, add unlit, fix overlays, cleanup
2018-02-14 17:02:07 -08:00
LaShonda Hopper
d466c079a4
Simple fix for 801 Uncaught TypeError (details below).
...
entityProperties.js was throwing out: 801 Uncaught TypeError: Cannot read property 'split' of undefined
This moves properties.modelURL related checks behind the property.type validation check to avoid
calling the function on an undefined member if the object doesn't have that key defined.
Changes Committed:
modified: scripts/system/html/js/entityProperties.js
2018-02-14 17:00:52 -05:00
Nissim Hadar
a92765a83a
Adding can cast shadow property.
2018-02-14 12:01:30 -08:00
SamGondelman
4500ed17e7
merge from master
2018-02-13 13:58:39 -08:00
SamGondelman
38290064c1
replace materials by name, hide material mode for now
2018-02-13 13:24:08 -08:00
Elisa Lupin-Jimenez
a61021f46c
Merge pull request #12272 from elisa-lj11/2d-images
...
2d images (JPG and PNG) are now supported as (quasi) entities
2018-02-13 11:44:02 -08:00
SamGondelman
9e8aa1898c
warnings, load material from URL, shapeID -> parentMaterialID
2018-02-12 12:50:09 -08:00
LaShonda Hopper
b058b346bd
[Case 4315] ESLint Pass 7 for colpick.js resolves regex error (details below).
...
Issue Count for colpick is now 0.
Changes Committed:
modified: scripts/system/html/js/colpick.js
2018-02-09 18:25:50 -05:00
LaShonda Hopper
fed85a7a53
[Case 4315] ESLint Pass 6 Pt 2 for colpick equality checks (details below).
...
* Suppressing equality checking issues within color conversion helper functions.
* These issues are suppressed as opposed to resolved because their resolution causes
issues with the color picker's understanding of the color it's being set to along with
the respective hue. This is likely due to rounding issues; however, it may also be something
related to the equality operator implicit conversions semantics of JavaScript. It's something
that can be looked into later if desired.
* Bug Steps upon resolving check as opposed to suppressing them:
- Select a shape entity for example.
- Note the visual color and actual RGB values for that entity's color upon selection.
- Click the Color Wheel.
- Notice the automatic change of the color for the entity when the picker is shown.
- If the issue doesn't show itself right away, alter the color for the entity close the
picker, and repeat steps 2-3.
* Issue Count reduced from 8 to 1
Changes Committed:
modified: scripts/system/html/js/colpick.js
2018-02-09 18:21:37 -05:00
LaShonda Hopper
59e0b8476a
[Case 4315] ESLint Pass 6 Pt 1 for colpick.js (details below).
...
First portion of vetted equality check fixes.
Issue Count reduced from 28 to 8.
Changes Committed:
modified: scripts/system/html/js/colpick.js
2018-02-09 17:57:42 -05:00
LaShonda Hopper
83749b16c7
[Case 4315] ESLint Pass 5 resolves hex already defined issue (details below).
...
* var hex was declared both the hexToRGB and hexToHsb functions.
* hexToRGB was updated to have a more explicit var name
* hexToRGB & hexToHSB also had the function param name updated to clarify the expected
object type. Also error statements and early returns were added should an unsupported
object type be received.
* Issue Count is now 28
Changes Committed:
modified: scripts/system/html/js/colpick.js
2018-02-09 17:35:03 -05:00
LaShonda Hopper
ef1fd19a98
[Case 4315] ESLint Pass 4 for colpick.js (details below).
...
Resolved payeX vs pageX issues.
Resolved stopList & huebar undefined issues.
Issue Count reduced from 47 to 29.
Changes Committed:
modified: scripts/system/html/js/colpick.js
2018-02-09 17:14:34 -05:00
LaShonda Hopper
0a1e05326e
[Case 4315] ESLint Pass 3, adds global declarations (details below).
...
This resolves 23 error <x> is not defined no-undef errors related to global objects.
Issue Count reduced from 70 to 47.
Changes Committed:
modified: scripts/system/html/js/colpick.js
2018-02-09 16:49:44 -05:00
LaShonda Hopper
691aafcf29
[Case 4315] ESLint Pass 2 for colpick.js (details below).
...
Resolves all error Line <x> exceeds the maximum line length of 128 max-len issues.
Issue Count reduced from 85 to 70.
Changes Committed:
modified: scripts/system/html/js/colpick.js
2018-02-09 16:42:43 -05:00
LaShonda Hopper
35bf8f1d01
[Case 4315] ESLint Pass; Simple errors addressed (details below).
...
Initial ESLint Pass on colpick.js.
Issue Count reduced from 185 to 100 via:
eslint -c .eslintrc.js scripts/system/html/js/colpick.js --fix
Changes Committed:
modified: scripts/system/html/js/colpick.js
2018-02-09 16:24:54 -05:00
SamGondelman
84cd0e1529
wip live material swapping on model entities, model overlays, avatars,
...
and albedo swap on shape entities
2018-02-09 12:00:08 -08:00
LaShonda Hopper
6c5961820c
[Case 4315] Fixes Color Picker preview restore functionality (details below).
...
* The original color preview is now visually retained when the user
changes the color via the picker when using the Non-Submit configuration (No OK button).
* Clicking the initial old color preview section restores the original/initial color of
the object.
Tested Desktop & HMD Modes.
Changes Committed:
modified: scripts/system/html/css/colpick.css
modified: scripts/system/html/js/colpick.js
2018-02-09 14:56:52 -05:00
LaShonda Hopper
2fc954909b
[Case 4315] Fixes black color preview for color pickers (details below).
...
The original/starting color preview in the picker was black as opposed to
reflecting the entity's color upon clicking the color picker.
Known Issue(s)/TODO(s):
* Color preview restore color functionality isn't working.
* Clicking the initial color preview doesn't restore the color.
* The original color preview isn't being visually retained when the user
changes the color via the picker.
Tested HMD & Desktop Modes.
Changes Committed:
modified: scripts/system/html/js/entityProperties.js
2018-02-09 14:40:40 -05:00
NissimHadar
950a62f3f8
Global graphics flag default to on.
...
Added cast shadows flag to zone/keylight.
Exit the RenderShadowMap job if current keylight doesn't cast shadows.
2018-02-08 15:52:20 -08:00
Liv Erickson
be4a009e11
make it so only the icon on collapse headers collapses headers
2018-02-07 13:18:32 -08:00
Liv Erickson
62de08f324
fix issue with top icon changing
2018-02-07 10:16:27 -08:00
SamGondelman
4d4294dd6a
Merge remote-tracking branch 'upstream/master' into decals
2018-02-02 16:50:01 -08:00
SamGondelman
d7f4b033e8
wip finish adding material entity
2018-02-02 16:49:33 -08:00
Elisa Lupin-Jimenez
73fde4333e
new local reference to image model
2018-02-02 10:27:44 -08:00
Elisa Lupin-Jimenez
d7a847930d
added image icon
2018-02-02 10:27:44 -08:00
Elisa Lupin-Jimenez
f71d9e4d6a
snapshot referenced locally, won't work on OS
2018-02-02 10:27:44 -08:00
Elisa Lupin-Jimenez
cc4bafb46f
image entities shown as images in entity list
2018-02-02 10:27:44 -08:00
Elisa Lupin-Jimenez
d390e20139
removed extraneous commenting and image class
2018-02-02 10:27:42 -08:00
Elisa Lupin-Jimenez
fe3bc00baa
loading and rendering atp and http image files
2018-02-02 10:27:42 -08:00
Elisa Lupin-Jimenez
42151b8fd4
creating new image entity opens image property options
2018-02-02 10:14:27 -08:00
Elisa Lupin-Jimenez
dc5f29aa58
entity item properties hooked up for image
2018-02-02 10:08:40 -08:00
Elisa Lupin-Jimenez
ecb53192ad
edit properties reflect image members
2018-02-02 10:08:40 -08:00
Elisa Lupin-Jimenez
c9c55af661
setting up properties page (not complete)
2018-02-02 10:08:39 -08:00
LaShonda Hopper
4da7a1e65a
[Case 4315] ESLint pass on entityProperties.js.
...
Re-ran after changes and issue count was 0.
Changes Committed:
modified: scripts/system/html/js/entityProperties.js
2018-01-23 13:48:47 -05:00
LaShonda Hopper
72ed5f6d91
[Case 4315] Fixes OK button hard to use within HMD mode (details below).
...
* Shape Color picker dynamically updates entity color.
* This removes the OK button which was hard to interact with in HMD mode. The user no
longer needs to click the OK button to submit changes to the color; rather the color
of the entity updates as the user manipulates the color wheel and/or slider.
Known Issue/TODO(s):
* Color Picker's Color Preview area has a bug where the original/starting color preview
is black as opposed to reflecting the entity's color upon clicking the color picker.
* Color preview restore color functionality isn't working. Clicking the initial
color preview doesn't restore the color.
* In HMD Mode: While interacting with the picker the user is able to control scrolling
navigation for the edit menu. For example, when moving up or down to change the hue
the edit menu behind the picker will scroll up and down correlatively.
* In HMD Mode: When the picker is dismissed (user clicks outside the picker), the RGB
fields for the color still receive input.
Tested in Desktop & HMD Modes.
Changes Committed:
modified: scripts/system/html/js/entityProperties.js
2018-01-23 13:40:31 -05:00
Nissim Hadar
46b494c802
Removed the Stage functionality - it is now implemented as a script.
2018-01-08 14:34:46 -08:00
Nissim Hadar
e797a77262
Merge branch 'master' of https://github.com/highfidelity/hifi into keylightInheritance
...
# Conflicts:
# interface/resources/qml/js/Utils.jsc
2018-01-04 15:58:08 -08:00
Zach Fox
47a209dc4c
Make things slightly better?
2018-01-02 13:11:00 -08:00
Zach Fox
25e76c668b
Fix marketplacesInject.js for local Metaverse
2018-01-02 12:22:40 -08:00
Nissim Hadar
87e896ab20
Zone inheritance ready for testing.
2017-12-29 15:13:46 -08:00
Nissim Hadar
0e76d481a1
Completed the use of radio-buttons to hide disabled sections.
2017-12-29 08:28:31 -08:00
Nissim Hadar
a6f3401d0e
Removed background combo.
2017-12-29 08:15:34 -08:00
Nissim Hadar
64644fc980
WIP - skybox inheritance
2017-12-28 14:31:59 -08:00
Nissim Hadar
8bb4d1431c
WIP - copy skylight URL to ambient URL.
2017-12-28 09:35:40 -08:00
Nissim Hadar
4ffd896ced
WIP - adding AmbientLightPropertyGroup
2017-12-26 11:15:33 -08:00
Nissim Hadar
8ee5f642a9
Merge branch 'master' of https://github.com/highfidelity/hifi into keylightInheritance
...
# Conflicts:
# libraries/networking/src/udt/PacketHeaders.cpp
# libraries/networking/src/udt/PacketHeaders.h
2017-12-22 15:41:59 -08:00
Nissim Hadar
2eb74647f0
Merge branch 'master' of https://github.com/highfidelity/hifi into keylightInheritance
2017-12-22 08:05:46 -08:00
Zach Fox
618e5c9032
Commerce Data Tracking: Iteration 3 (Purchases)
2017-12-21 15:46:01 -08:00
Nissim Hadar
58c6f8e9c4
Radio buttons now work correctly.
2017-12-20 19:17:18 -08:00
Zach Fox
5da49d156e
Commerce: Fix the behavior of the 'cancel' button in Wallet Setup
2017-12-19 16:26:58 -08:00
Zach Fox
ed5da4f83b
Fix bug preventing 'get' buttons from working in marketplace
2017-12-19 15:07:50 -08:00
David Kelly
4fc69f8067
Merge pull request #11988 from davidkelly/dk/soldOut
...
Handle sold out items a bit better
2017-12-19 07:43:57 -07:00
Zach Fox
74a5f0881f
Fix broken Buy buttons on Marketplace
2017-12-14 11:56:36 -08:00
David Kelly
a49ee46f54
Handle sold out items a bit better
2017-12-14 11:52:56 -07:00
Seth Alves
a6a45bc359
Merge pull request #11936 from ElderOrb/FB10108
...
10108 marketplace category cannot scroll
2017-12-08 07:02:15 -08:00
Brad Hefta-Gaub
b91909011a
Merge pull request #11914 from 1P-Cusack/FogBugz/Case_7049
...
[Case 7049]: Remove unused fields and checkboxes from Edit.js
2017-12-07 09:18:26 -08:00
Alexander Ivash
c007c6d00f
10108 marketplace category cannot scroll
2017-12-06 02:47:19 +03:00
LaShonda Hopper
eb8438a9e8
[Case 7049] Addresses code review feedback.
...
Changes Committed:
modified: scripts/system/html/js/entityProperties.js
2017-12-04 18:25:51 -05:00
LaShonda Hopper
82dd13a82c
[Case 7049] Fixes superfluous fields issue with Particle Effects (details below).
...
When creating or selecting an object entityProperties.html's properties-list is
updated to have and entity type specific class. This class is used within
edit-style.css to specify rules for the Properties Tab when a certain type of
entity is currently selected.
This resolves the issue with duplicate/misleading color fields for Particle
Effects by adding .ParticleEffectMenu rules to edit-style.css to control the
visible sections.
When the Properties Tab is in the ParticleEffectMenu mode only the following
sections are shown (listed as ordered):
General Section
Collision Section
Physical Section
Spatial Section
Behavior Section
Changes Committed:
modified: scripts/system/html/css/edit-style.css
modified: scripts/system/html/js/entityProperties.js
2017-12-01 15:59:52 -05:00
Alexander Ivash
48b50e33dd
9461 Keyboard for create appear then disappears immediately (HMD)
2017-12-01 20:29:35 +03:00
LaShonda Hopper
6469dbddc1
[Case 7049] ESLint: Fixes unknown/undefined symbol errors (details below).
...
* Fixes the following:
* 1775:5 error 'augmentSpinButtons' is not defined no-undef
* 1777:5 error 'setUpKeyboardControl' is not defined no-undef
ESLint Issue Count is now 0.
Changes Committed:
modified: scripts/system/html/js/entityProperties.js
2017-11-30 19:43:40 -05:00
LaShonda Hopper
991143655f
[Case 7049] ESLint: Fixes indent and max-len errors.
...
Issues dropped from 26 to 2.
Changes Committed:
modified: scripts/system/html/js/entityProperties.js
2017-11-30 19:41:20 -05:00
LaShonda Hopper
391fc6022e
[Case 7049] ESLint: Ignore camelcase error for lines where it's needed.
...
Issues reduced from 28 to 26.
Changes Committed:
modified: scripts/system/html/js/entityProperties.js
2017-11-30 19:26:46 -05:00
LaShonda Hopper
ca65297489
[Case 7049] ESLint: Fixes various minor errors (details below).
...
* Fixes some equality checks.
* Fixes some spacing issues.
* Fixes some comment style issues.
* Detected issues reduced from 50 to 28.
Changes Committed:
modified: scripts/system/html/js/entityProperties.js
2017-11-30 19:24:20 -05:00
LaShonda Hopper
618978c959
[Case 7049] ESLint: Fixes unused var errors (details below).
...
* Fixes the following errors:
* 590:13 error 'elJSONEditor' is assigned a value but never used no-unused-vars
* 592:13 error 'elColorSections' is assigned a value but never used no-unused-vars
* 641:13 error 'elHyperlinkSections' is assigned a value but never used no-unused-vars
* 653:13 error 'elTextBackgroundColor' is assigned a value but never used no-unused-vars
* 670:13 error 'elZoneKeyLightDirectionZ' is assigned a value but never used no-unused-vars
* 695:13 error 'elZoneHazeAttenuateKeyLight' is assigned a value but never used no-unused-vars
* 696:13 error 'elZoneHazeKeyLightRange' is assigned a value but never used no-unused-vars
* 697:13 error 'elZoneHazeKeyLightAltitude' is assigned a value but never used no-unused-vars
* This reduces eslint errors from 67 to 50
* Removes instances of stale commented code found when removing the above related items.
* Removes allSections array which doesn't appear to be actively used save registering _certain_ sections.
* Removed registered section vars which weren't actually in use aside from being registered.
Changes Committed:
modified: scripts/system/html/js/entityProperties.js
2017-11-30 19:09:58 -05:00
LaShonda Hopper
834fe2f5d5
[Case 7049] JSHint Run: Fixes majority of noted lint issues (details below).
...
* 3 JSHint issues remain as of this commit, 3 instances of the same error.
* Error: Functions declared within loops referencing an outer scoped
variable may lead to confusing semantics.
* scripts/system/html/js/entityProperties.js: line 469, col 27
* scripts/system/html/js/entityProperties.js: line 1634, col 30
* scripts/system/html/js/entityProperties.js: line 1641, col 32
Tested and prior fix to remove duplicate color fields for entity types is
preserved for non-particle entity types.
Changes Committed:
modified: scripts/system/html/js/entityProperties.js
2017-11-30 18:42:59 -05:00
LaShonda Hopper
3152d5808e
Minor: Replace tabs with spaces noticed when browsing file.
...
Changes Committed:
modified: scripts/system/html/js/entityProperties.js
2017-11-30 15:14:47 -05:00
LaShonda Hopper
532fc2ca5b
[Case 7049] Remove duplicate color fields for shapes (details below).
...
There are 2 types or styles of color picker controls.
* color-control1: Composed of only a color picker
* color-control2: Composed of a color picker and rgb fields. The color can be
manipulated by either.
Previously for shapes, the Properties tab utilized both types of color controls.
Color-control1 was displayed within the quick properties section; whereas, color-control2 was
displayed farther down within the more detailed sections of Properties tab.
This commit removes the duplication of the fields, opting to utilize color-control2 within
the quick properties portion of the Properties tab.
Changes Committed:
modified: scripts/system/html/entityProperties.html
modified: scripts/system/html/js/entityProperties.js
2017-11-30 15:14:47 -05:00
Alexander Ivash
78d89d886f
9264 dismiss keyboard after user finished typing in marketplace search bar and hit search or return key
2017-11-16 00:13:46 +03:00
Nissim Hadar
f629357ded
Removed Keylight attenuation from .js (as well as .html).
2017-11-11 18:58:12 -08:00
Zach Fox
33b6a13a4d
Revert 11728 and fix marketplace JS injection - should revisit
2017-11-08 15:21:36 -08:00
David Rowe
fadbf09cdd
Avoid potentially slow entity list refresh upon deleting entities
2017-11-07 18:10:10 +13:00
howard-stearns
76e06a6214
Update to stable-v-staging metaverse switching, to handle marketplace
...
injection.
2017-11-01 15:28:28 -07:00
Zach Fox
82816b5551
Merge pull request #11720 from zfox23/commerce_getToBuy
...
Change 'GET' to 'BUY' when hovering over costed items
2017-11-01 09:49:39 -07:00
Zach Fox
f9a410de87
Change 'GET' to 'BUY' when hovering over costed items
2017-10-31 14:53:37 -07:00
Nissim Hadar
fb6c5b98d6
Merge branch 'master' into hazeZone
2017-10-27 15:40:03 -07:00
Nissim Hadar
66c31caf4b
Refactoring of the haze
2017-10-27 09:08:58 -07:00
Zach Fox
3e95484c4c
Merge branch 'master' of https://github.com/highfidelity/hifi into stagingSetting
2017-10-26 13:58:50 -07:00
ZappoMan
226b974ce8
DPI is not a decimal
2017-10-25 11:59:29 -07:00
Zach Fox
7998984d8e
Missed tons of spots!
2017-10-24 14:30:47 -07:00
Ryan Huffman
894e91ea23
Merge pull request #10702 from CraftsmanMG/master
...
Fingerpaint PR
2017-10-19 13:13:59 -07:00
Daniela
832e30ad1c
Edited Packet headers.
2017-10-19 19:53:47 +01:00
Zach Fox
aa48215933
Merge branch 'master' of https://github.com/highfidelity/hifi into commerce_OctoberFixes2
2017-10-19 10:54:31 -07:00
Sam Gateau
4d7accabdf
Merge pull request #11439 from NissimHadar/hazeZone
...
Adding haze component to the zone entity.
2017-10-18 16:14:28 -07:00
Zach Fox
6c7096b0d7
Fix login button injection on individual item page
2017-10-18 14:53:39 -07:00
Nissim
935180bf09
Fixed my bloody stupid mistake...
2017-10-17 15:02:05 -07:00
Nissim
a641d6de66
Variable rename.
2017-10-17 09:18:29 -07:00
Nissim
1b42572f99
Merge branch 'hazeZone' of https://github.com/NissimHadar/hifi into hazeZone
...
# Conflicts:
# scripts/system/html/js/entityProperties.js
2017-10-16 14:29:56 -07:00
Nissim
fd2b0da76d
First version.
2017-10-16 12:20:31 -07:00
Nissim Hadar
9c9dfc7211
Replace light blend with glare.
2017-10-13 13:36:46 -07:00
Zach Fox
17a0dd2a76
Elide long usernames in injected code
2017-10-13 13:32:55 -07:00
Nissim Hadar
c76229934c
Changed blend-in colour and blend-out colour to colour and glare colour
2017-10-13 12:21:00 -07:00
Nissim Hadar
dc45c7af75
Implemented radio-buttons.
2017-10-12 11:18:18 -07:00
Nissim Hadar
30fdf9d08e
Merge branch 'master' into hazeZone
2017-10-11 22:12:52 -07:00
Nissim Hadar
a21995db24
Added checkbox for altitude effect.
2017-10-11 22:10:58 -07:00
Nissim Hadar
96fd3123e8
Changed haze altitude to ceiling.
2017-10-11 20:36:24 -07:00
Zach Fox
8d0d9a159f
Bugfixes
2017-10-10 10:38:19 -07:00
Daniela
a46ef56af9
Merge with hifi:master. Packet Headers version were increased.
2017-10-10 17:26:33 +01:00
Nissim Hadar
7d5a887f43
Refactoring.
2017-10-09 17:25:19 -07:00
Zach Fox
733df8391f
Round 2
2017-10-09 12:27:56 -07:00
Nissim Hadar
bfdd489682
Fixed color selector bug.
2017-10-06 13:18:12 -07:00
Nissim Hadar
320c888ce4
Added checkbox to allow separate control of keylight attenuation.
2017-10-05 20:31:45 -07:00
Nissim Hadar
f261477aa2
Adding sun attenuation.
2017-10-05 17:55:24 -07:00
Nissim Hadar
e15699192d
Added blend angle and altitude reference base.
2017-10-05 14:18:03 -07:00
Nissim Hadar
2e2364e03f
WIP - adding haze blend out colour
2017-10-05 13:20:21 -07:00
Nissim Hadar
cbaae2c79b
WIP - haze colour.
2017-10-05 12:59:56 -07:00
Nissim Hadar
395d9cbd6b
WIP - haze colour.
2017-10-05 12:13:37 -07:00
Nissim Hadar
512b469dc6
Added haze colour selector.
2017-10-05 11:31:49 -07:00
Nissim Hadar
595530161a
WIP - adding background blend.
...
Haze altitude works.
2017-10-05 09:28:55 -07:00
Nissim Hadar
d4acb00aa5
Merge branch 'master' into hazeZone
2017-10-03 17:44:31 -07:00
Daniela
2b18296cfd
Merge remote-tracking branch 'upstream/master'
...
# the commit.
2017-10-03 15:26:22 +01:00
Zach Fox
11d0062104
Progress on buy endpoint
2017-10-02 16:57:41 -07:00
Zach Fox
1050d2851d
Modify injected code to add to dropdown menu
2017-10-02 12:37:49 -07:00
Zach Fox
15c0a21e0e
Varied commit - styling changes, beginnings of new Wallet endpoint, etc
2017-10-02 12:19:24 -07:00
Zach Fox
63396a2fc3
WalletScriptingInterface; wallet status refactor
2017-09-29 13:42:04 -07:00
Zach Fox
f0d668c5c3
Fix marketplace injection problems - yay!
2017-09-28 11:14:44 -07:00
Nissim Hadar
4d8a1db895
Merge branch 'master' into hazeZone
...
# Conflicts:
# libraries/entities-renderer/src/RenderableModelEntityItem.cpp
2017-09-27 17:50:51 -07:00
Seth Alves
3016ce0a2b
Merge pull request #11470 from sethalves/fix-grab-vs-trigger
...
set grabbable and other checkboxes correctly if userData is blank
2017-09-27 15:24:37 -07:00
Zach Fox
7ad3a5a1e3
Commerce: Tons of Interface changes ( #11463 )
...
* canRez(Tmp)Certified()
* CertifiedItem beginnings
* Skeleton of verifyOwnerChallenge()
* Controlled failure; updateLocation() skeletion
* Controlled failure on checkout page with ctrl+f
* Skeleton Purchases first-use tutorial
* Initial progress on new setup
* Security pic tip
* Skeleton Certificate page
* Updates to Certificate
* General progress; setup is nearly complete
* Better buttons; last step almost done
* Initial progress on wallet home
* Completed recent transactions
* Security page
* Scrollbar
* Fix auth error text
* PassphraseSelection
* Change security pic
* Minor layout changes; beginnings of emulated header
* Various layout changes; wallet nav bar
* Help screen
* Quick onaccepted change
* First pass at new purchases
* Small style updates
* Some error progress
* Lightbox in purchases
* Collapse other help answers when clicking on another
* REZZED notif
* Commerce Lightbox
* Lots of new interactions in Purchases
* Hook up 'view certificate'
* Fix errors, fix close button on cert
* Purchases timer; much faster filter
* Add debugCheckout
* Purchase updates
* GlyphButton; separator; Checkout Success; Ledger fix; debug modes
* Lock glyph below security pic should be white
* Various fixes, round 1
* Circular mask
* Passphrase change button fix; TextField error edge highlighting
* Recent Activity fixes
* Various changes
* Standard Security Pic location
* Color changes
* Filter bar changes
* Styling for multiple owned items
* Minor language change
* Header dropdown (harder than expected)
* Small fixes
* View backup instructions
* marketplaces.js onCommerceScreen
* Beginnign of new injection
* Marketplace injection changes
* Purchase button style changes
* More button styling
* MY PURCHASES button
* marketplace onUsernameChanged
* New help QA
* Help text changes etc
* Downscale security image, reducing filesize
* Lots of bugfixes
* Cleanup before PR
* Only open cert during inspection if commerce switch is on
* Help text changes
* Purchase status incl. change to confirmed; Help text; Open Explorer to hifikey
* Quick glyph change
* New 'wallet not set up' flow for when entering Purchases or Checkout without set-up wallet
2017-09-27 14:43:51 -07:00
Seth Alves
ce3e5eb1a3
set grabbable and other checkboxes correctly if userData is blank or malformed. near-trigger blocks near-grab
2017-09-26 18:56:27 -07:00
Daniela
e264503b9f
Merge remote-tracking branch 'upstream/master'
2017-09-26 17:49:15 +01:00
Nissim Hadar
27af4685e7
Added range and altitude to UI.
2017-09-25 09:32:52 -07:00
Nissim Hadar
1a9625d272
Merge branch 'master' into hazeZone
2017-09-24 18:27:36 -07:00
Nissim Hadar
6cbf087708
First version with combo for Haze Mode.
2017-09-24 15:08:22 -07:00
Nissim Hadar
5e1d470553
WIP
2017-09-22 09:48:22 -07:00
Zach Fox
57b5a23373
Enable Inspection Mode for all; change Commerce setting name
2017-09-21 11:18:21 -07:00
Daniela
7ccfac0b3b
Protect stroke width from wrong user input. Protect color pick from wrong user input.
2017-09-21 15:54:53 +01:00
Thijs Wenker
af4bc59307
clone local avatar entities
2017-09-14 23:31:51 +02:00
David Kelly
4bdfe092cf
Regression in injection script
2017-09-05 12:28:31 -07:00
Seth Alves
8ccacf34f4
Merge pull request #11290 from Menithal/21484
...
WL21484 - Add an additional parameter for entity animations to "allow translation"
2017-09-01 15:34:07 -07:00
Brad Davis
65b49a958f
Merge branch 'master' into 21484
2017-08-31 14:59:30 -07:00
David Kelly
de2ce1cd5f
warning
2017-08-31 13:23:38 -07:00
David Kelly
396f108182
forgot this the first time
2017-08-31 12:18:46 -07:00
Zach Fox
164eeaae64
Fix the duplicated buy buttons for admins on Marketplace
2017-08-31 10:41:44 -07:00
Zach Fox
50241078ae
Buncha punchlist items checked off
2017-08-29 14:30:00 -07:00
Zach Fox
91f4e59f61
Misc fixes. Get started.
2017-08-29 12:33:44 -07:00
Zach Fox
a03f9592c1
Inventory to Purchases
2017-08-25 16:34:48 -07:00
Zach Fox
3980a478d9
Only show 'buy' on costed items'
2017-08-24 16:38:44 -07:00
Zach Fox
f1da7a6381
Checkpoint
2017-08-22 11:53:37 -07:00
Howard Stearns
188cbee781
Merge pull request #11212 from howard-stearns/asynchronous-commerce-2
...
Asynchronous Ledger Interactions with Server
2017-08-18 15:40:24 -07:00
howard-stearns
3d401129fb
checkpoint
2017-08-18 10:03:00 -07:00
Menithal
dc5e374485
Merge remote-tracking branch 'upstream/master' into 21484
2017-08-17 22:28:43 +03:00
Elisa Lupin-Jimenez
3d7995da34
Merge branch 'master' of https://github.com/highfidelity/hifi into blocks
2017-08-15 10:01:24 -07:00
Zach Fox
a21ff75a49
Big progress!
2017-08-11 12:54:55 -07:00
Zach Fox
d2362e6329
addInventoryButton() under setting
2017-08-11 10:31:32 -07:00
Zach Fox
e1064938cd
Add inventory; also fix some bugs
2017-08-11 10:31:32 -07:00
Elisa Lupin-Jimenez
28476960bb
Moved Blocks to tablet app
2017-08-10 14:23:45 -07:00
Elisa Lupin-Jimenez
d3c76c99c2
See all markets button working again
2017-08-09 17:28:05 -07:00
Elisa Lupin-Jimenez
69a13052ab
commented out blocks injection
2017-08-09 17:23:08 -07:00
Zach Fox
2d256a62a9
Fix marketplaces message passing
2017-08-09 17:04:36 -07:00
Elisa Lupin-Jimenez
74c90d6323
minor typo
2017-08-09 16:08:47 -07:00
Elisa Lupin-Jimenez
a2e407f786
fixed merge conflicts in marketplacesInject.js
2017-08-09 15:59:20 -07:00
Zach Fox
65f9b0052f
Working buy button
2017-08-09 13:59:21 -07:00
Zach Fox
33fa8c4f86
Fix bugs and also change to single setting
2017-08-09 11:44:09 -07:00
Elisa Lupin-Jimenez
d599753771
Started blocks download catch, fixed a debug typo
2017-08-08 18:43:35 -07:00
Zach Fox
9d60d5153f
Clarifying comment and turn setting off first
2017-08-08 18:00:17 -07:00
Zach Fox
4f85923517
Tons of fixes and improvements!
2017-08-08 17:58:41 -07:00
Zach Fox
b2c5a1f899
Fancy MutationObserver!
2017-08-08 17:12:06 -07:00
Elisa Lupin-Jimenez
efd25a5e70
Merge branch 'master' of https://github.com/highfidelity/hifi into blocks
2017-08-08 16:55:10 -07:00
Zach Fox
871a5ff1ab
Merge branch 'master' of https://github.com/highfidelity/hifi into commerce_CheckoutQMLInvestigation
2017-08-08 15:53:22 -07:00
Andrew Meadows
71ba6ba10a
Merge pull request #10807 from jmo7/21356
...
21356 - Reorder Edit.js
2017-08-08 15:15:37 -07:00
Zach Fox
7d26d2d88b
Switch and fix overlay clicks
2017-08-08 14:29:44 -07:00
Menithal
982d4a451f
Updated Protocol to add allowTranslation
...
There still is a bug for the value no actually updating
2017-08-08 23:47:37 +03:00
Elisa Lupin-Jimenez
1102b27ba1
Fixed merge conflicts with master
2017-08-08 11:47:08 -07:00
Zach Fox
517128a939
More steps
2017-08-07 16:03:42 -07:00
Zach Fox
d7dd331685
Bugfixes
2017-08-07 14:39:31 -07:00
Zach Fox
7d4fd995f2
First steps
2017-08-07 14:29:47 -07:00
Elisa Lupin-Jimenez
c2cb7573c5
Removed commented out blocks code
2017-08-04 16:58:33 -07:00
Elisa Lupin-Jimenez
06ff766952
Drag zip cleaned up, marketplaces stylized, back button fixed
2017-08-04 16:58:33 -07:00
Elisa Lupin-Jimenez
9d2be28a8a
troubleshooting Blocks injection
2017-08-04 16:58:15 -07:00
Elisa Lupin-Jimenez
ca6a323d54
Can drag blocks zip folder into hifi and upload the .obj
2017-08-04 16:57:48 -07:00
Elisa Lupin-Jimenez
a7dd6a5a41
Changed marketplaces message to be more discoverable
2017-08-04 16:56:30 -07:00
Elisa Lupin-Jimenez
c03c1c80e1
Drag zip cleaned up, marketplaces stylized, back button fixed
2017-08-02 10:51:40 -07:00
Elisa Lupin-Jimenez
eb1fb1a1e1
Merge branch 'master' of https://github.com/highfidelity/hifi into blocks
2017-08-02 08:28:55 -07:00
Seth Alves
184c3d855d
Merge pull request #11061 from TurnMeUp-OG/21470
...
Fix tablet focus issue when property menu is open and field is selected
2017-08-01 15:10:26 -07:00
Elisa Lupin-Jimenez
fcaebda04c
troubleshooting Blocks injection
2017-07-28 10:21:03 -07:00
jmo
003c483ec6
stray tabs changed to spaces, and long comment split to multiple lines
2017-07-27 15:21:58 -06:00
Elisa Lupin-Jimenez
9cfc4dc91b
Can drag blocks zip folder into hifi and upload the .obj
2017-07-26 15:21:39 -07:00
scromie@turnmeupgames.com
33ff5917be
fix
2017-07-26 19:34:20 +03:00
Elisa Lupin-Jimenez
f128dce185
Changed marketplaces message to be more discoverable
2017-07-25 10:16:05 -07:00
milad
1ce1204a64
WORKLIST ISSUE # 21471 : FIX PARENT JOINT IN EDIT JS
...
In entityPropeties.js
line #1079 says:
elParentJointIndex.addEventListener('change', createEmitNumberPropertyUpdateFunction('parentJointIndex'));
The problem should be fixed by changing it to:
elParentJointIndex.addEventListener('change', createEmitNumberPropertyUpdateFunction('parentJointIndex', 0));
createEmitNumberPropertyUpdateFunction() is parsing the value as a
float to a default decimal position of 4. Looks like it only accepts
integers. By adding in that 0 as a second argument, it should coerce the
value to one that will be recognized by the UI/backend.
2017-07-24 10:06:44 -05:00
jmo
a2b1b2e0f9
21356 - Reorder Edit.js
...
Made changes to the 3 sub files for the properties tabs. Although
visually the exiting menu looked like it was in different sections,
structurally it was all just one run of item after item, with a fair
amount of div-itis. I added in fieldsets to provide true groups and
replaced much of the div-ities with aditional feidlsets as they are the
smeantic element to use here.
2017-07-10 15:49:26 -06:00
Zach Fox
6f2e7f5b83
Tweak the Snapshot 'Share' button to make its purpose more clear
2017-07-05 12:39:15 -07:00
Bradley Austin Davis
1968ecbc8f
Simplify eventBridge mechanism exposing functionality to web pages
2017-06-12 14:46:37 -07:00
Seth Alves
9fa74029c7
Merge pull request #10633 from mnafees/21299
...
CR for Job #21299 - Save category on Marketplace when using back button
2017-06-08 16:10:56 -07:00
seefo
8d5b90afe7
Merge pull request #10600 from seefo/snapshot
...
Added Polaroid Feature to Snapshot
2017-06-07 17:05:29 -07:00
seefo
26bd6b67ae
Final touches to polaroid feature
2017-06-07 16:52:16 -07:00
Mohammed Nafees
608becef7d
Make the back button work again, uses the browser history directly now.
2017-06-07 15:52:06 +05:30
seefo
b729707ce7
Removed old comments in SnapshotReview.js
2017-06-06 09:10:25 -07:00
Andrew Meadows
85a1e1d691
Merge pull request #10608 from ctrlaltdavid/21379
...
Fix icon for polylines in entities editor properties page
2017-06-05 11:06:23 -07:00
Clément Brisset
0a864a7ce9
Merge pull request #10570 from ctrlaltdavid/21376
...
Move record script files to unpublishedScripts directory
2017-06-02 16:25:56 -07:00
David Rowe
58c4a2f12a
Fix icon for polylines in entities editor properties page
2017-06-03 06:26:13 +12:00
seefo
655a411865
Cleaned up Polaroid code
2017-06-02 11:02:01 -07:00
seefo
4e190434d1
Added polaroids to snapshots
2017-06-01 16:53:48 -07:00
Zach Fox
53701371ab
Fix some bugs :(
2017-05-31 16:43:21 -07:00
Zach Fox
fd92afff8c
Ensure old snaps don't accidentally get shared for_url
2017-05-31 14:47:07 -07:00
Seth Alves
e80704f3c9
Merge pull request #10578 from thoys/fix/grabableDynamic
...
Edit.js: Fix hidden dynamic property while clone-able is active
2017-05-31 12:54:36 -07:00
Thijs Wenker
5c5aaf3254
Fix hidden dynamic property whenever the item is clone-able / DRYing propertyUpdates
2017-05-31 20:18:42 +02:00
Zach Fox
0441d8c703
Add placeholder image when previous snapshot can't be loaded
2017-05-31 10:27:17 -07:00
David Rowe
d891c834ba
Move record script files to unpublishedScripts directory
2017-05-31 09:06:11 +12:00
Zach Fox
6765451cc8
Ensure snapshots without story_ids get uploaded
2017-05-19 10:36:31 -07:00
Zach Fox
8efac1e7f1
Prevent another GIF from being captured while one is processing
2017-05-18 14:30:08 -07:00
Seth Alves
36f8d08b32
Merge pull request #10450 from hiflex/patch-1
...
Fix the Face Camera checkbox on the text entity properties tab.
2017-05-16 20:31:56 -07:00
Zach Fox
aa0394c2ef
Fix case when user stories would be incorrectly deleted
2017-05-16 11:07:03 -07:00
Zach Fox
d189f3f110
Fix the twitter mention
2017-05-12 12:39:10 -07:00
hiflex
a4406906f3
Fix the Face Camera checkbox on the text entity properties tab.
...
The checkbox appeared unchecked even if the underlying property was true.
2017-05-11 20:12:10 -05:00
Zach Fox
6a33ef49c2
New language for unshareable snaps
2017-05-04 16:17:33 -07:00
Zach Fox
2ad3346697
Are there bugs?
2017-05-04 16:05:20 -07:00
Zach Fox
946c5e7662
Almost finished with not-logged-in and not-shareable
2017-05-04 15:24:51 -07:00
Zach Fox
b08d23924a
Keep hover status of both images in sync
2017-05-04 11:00:13 -07:00
Zach Fox
b01bff061e
Hover lock when uploading
2017-05-04 10:06:52 -07:00
Zach Fox
c7f5115e26
Move help text to above buttons
2017-05-04 10:06:52 -07:00
Seth Alves
ecd690e5e9
Merge pull request #10348 from ctrlaltdavid/21311
...
Don't sort recordings
2017-05-04 09:59:12 -07:00
Zach Fox
c82a07016d
New Preparing text; Better disabled behavior
2017-05-03 11:30:44 -07:00
Zach Fox
09488c4987
Disabled state for share butotns
2017-05-03 11:02:44 -07:00
Zach Fox
ff3a76f716
No magic numbers!
2017-05-02 18:23:15 -07:00
Zach Fox
aa46534b60
Whoops.
2017-05-02 17:10:57 -07:00
Zach Fox
964e79ce14
It's working!
2017-05-02 16:58:33 -07:00
Zach Fox
68fa8e06ef
Super amped about this. Only need to add disabled state?
2017-05-02 16:38:16 -07:00
Zach Fox
5d38cd543d
Yet another checkpoint
2017-05-02 16:06:13 -07:00
Zach Fox
7817c72ea1
Another checkpoint
2017-05-02 15:58:43 -07:00
Zach Fox
0beceae59b
Checkpoint
2017-05-02 15:19:20 -07:00
Zach Fox
1067d1e0f6
Don't let user blast in certain cases
2017-05-02 14:43:16 -07:00
Zach Fox
d8095c5ea5
New setup instructions; new 'blank snapshot' text
2017-05-02 14:20:27 -07:00
Zach Fox
d1dff7606c
Lint cleanup; Immediate share button visibility;
2017-05-02 14:10:24 -07:00
Zach Fox
a754c4d6cc
Still image on top
2017-05-02 10:11:54 -07:00
Zach Fox
0ead9e5a24
Visual fixes; Select only 1 image at a time
2017-05-02 10:11:53 -07:00
Zach Fox
d295b5a69d
ShareBarHeight-= 5px; Remove test call
2017-05-02 10:11:53 -07:00
Zach Fox
5b168301bc
Update some typefaces; Add margins to pics
2017-05-02 10:11:53 -07:00
Zach Fox
ac86c13477
Fix sharing; disable HiFi buttons independently
2017-05-02 10:11:53 -07:00
David Rowe
cb8f75394d
Don't sort recordings
2017-05-02 12:08:39 +12:00
Zach Fox
3f146fca9d
Fix announcement audience; Fix disabled buttons
2017-04-27 15:36:59 -07:00
Zach Fox
4152e44d2c
Click anywhere on the image except the bottom to toggle share buttons
2017-04-27 14:01:08 -07:00
Zach Fox
832e16ef86
Visual tweaks; fix active share buttons; comment out tests
2017-04-27 14:01:07 -07:00
Zach Fox
7297355183
Open ShareBar on P0 by default
2017-04-27 14:01:07 -07:00
Zach Fox
b6601feb1d
It's 5 already?
2017-04-27 14:01:07 -07:00
Zach Fox
a24a48843f
Checkpoint
2017-04-27 14:01:07 -07:00
Zach Fox
3221214283
New Snap FTUE flow
2017-04-27 14:01:07 -07:00
Zach Fox
92187e2424
Making progress towards file chooser dialog
2017-04-27 14:01:07 -07:00
Zach Fox
8c9cd0fad0
Custom social buttons; better testing functionality
2017-04-27 14:01:07 -07:00
Zach Fox
d461723012
Thanks to Jess, slightly different Tweet language
2017-04-27 14:01:07 -07:00
Zach Fox
d7348aabc8
Quick comment updates
2017-04-27 14:01:07 -07:00
Zach Fox
e1789996fb
Add announcements support
2017-04-27 14:01:06 -07:00
Zach Fox
f838e87f48
Pretty stable...
2017-04-27 14:01:06 -07:00
Zach Fox
7c5de1e60b
Getting closer
2017-04-27 14:01:06 -07:00
Zach Fox
fad470eeea
Checkpoint (this is complicated)
2017-04-27 14:01:06 -07:00
Zach Fox
eaa699bbfd
Wow, it's really coming together!
2017-04-27 14:01:06 -07:00
Zach Fox
880bcf3b1e
Checkpoint
2017-04-27 14:01:06 -07:00
Zach Fox
c08b40b950
Initial sharing code hooked up
2017-04-27 14:01:06 -07:00
Zach Fox
01e78612c7
Soooo much progress today
2017-04-27 14:01:06 -07:00
Zach Fox
16b4af8a9d
Rearchitecture
2017-04-27 14:01:06 -07:00
Zach Fox
2880b22f9f
External share buttons!
2017-04-27 14:01:06 -07:00
Zach Fox
4270086a22
Support 1 and 2 images
2017-04-27 14:01:06 -07:00
Zach Fox
0b4cd41d75
More and more progress!
2017-04-27 14:01:06 -07:00
Zach Fox
a4f428a6e6
Lots of progress
2017-04-27 14:01:06 -07:00
Zach Fox
7acdc86644
Progress
2017-04-27 14:01:05 -07:00
Zach Fox
0860352caa
Checkpoint before switching to crash duty
2017-04-27 14:01:05 -07:00
David Rowe
4581b9a0df
Refresh countdown number upon reopening dialog
2017-04-26 20:13:21 +12:00
David Rowe
4a5f84f4b9
Merge branch 'master' into 21249
...
# Conflicts:
# libraries/audio-client/src/AudioClient.cpp
2017-04-26 13:24:18 +12:00
David Rowe
c0a258f9b3
Disable "load" button while making a recording
2017-04-25 09:04:26 +12:00
David Rowe
7fe0ba19b5
Don't display the "Record" button as pressed while recording
2017-04-22 10:05:02 +12:00
David Rowe
ce86ce4530
Red buttons to unload recordings
2017-04-21 19:45:14 +12:00
David Rowe
d064511121
Rearrange dialog controls
2017-04-21 17:01:29 +12:00
David Rowe
1aa6e20791
Change "Record" button to "Stop" while recording
2017-04-21 16:15:49 +12:00
David Rowe
477237cca2
Red "recording" ring animation with countdown numbers inside
2017-04-21 16:07:50 +12:00
Stephen Birarda
924624b127
add new glyphs with check, reference in entityList
2017-04-20 14:21:13 -07:00
Stephen Birarda
f64efe18c0
add an isBaked column to edit.js
2017-04-20 14:21:13 -07:00
David Rowe
0da4e3e3c4
Display scrollbar in recordings table when needed
2017-04-20 14:19:25 +12:00
David Rowe
2108300272
Merge branch 'master' into 21249
2017-04-20 08:43:00 +12:00
David Rowe
7dcda47f95
Fix recording GIF still displaying when reopen tablet to stop recording
2017-04-16 12:57:37 +12:00
Zach Fox
b410399a16
Resolve your paths, silly!
2017-04-14 16:26:29 -07:00
Zach Fox
f81dce5e70
Fix the bug
2017-04-14 15:42:19 -07:00
David Rowe
c2d8755b15
Merge branch 'master' into 21249
2017-04-14 15:32:45 +12:00
David Rowe
11a2559df9
Use HiFi glyph for delete "x"s
2017-04-14 15:30:28 +12:00
David Rowe
1d43e5a992
Style overall dialog layout
2017-04-14 15:12:36 +12:00
David Rowe
75e4fb3820
On tablet with option enabled recording ends when open tablet or dialog
2017-04-13 19:28:40 +12:00
David Rowe
8f3789421f
Show "busy" spinner when counting down or recording
2017-04-13 19:23:22 +12:00
David Rowe
ff42715a15
Retain "Record" button's pressed state when close and reopen dialog
2017-04-13 18:41:55 +12:00
David Rowe
b508d6882f
Add checkbox that stops countdown/finishes recording when reopen dialog
2017-04-13 17:59:28 +12:00
David Rowe
84cfe1cb75
Don't close dialog when start recording; press "Record" again to finish
2017-04-13 17:00:35 +12:00
David Rowe
afd82f09c0
Provide instructions on running the AC player script
2017-04-13 15:18:04 +12:00
David Rowe
5ad44b6caf
Display empty rows for unused players
2017-04-13 13:50:26 +12:00
David Rowe
24a68ea685
Report the numnber of free players rather than total number
2017-04-13 13:40:52 +12:00
Zach Fox
3f91fb8e55
Remove unnecessary comment
2017-04-12 14:45:57 -07:00
Zach Fox
c724c2e50b
New loading icon
2017-04-12 14:45:57 -07:00
Zach Fox
87b2d5bf8a
New loading icon
2017-04-12 14:45:57 -07:00
Zach Fox
7b92989b1d
Fix it
2017-04-12 14:45:57 -07:00
Zach Fox
2579ac1baa
It's working!
2017-04-12 14:45:57 -07:00
Zach Fox
e296383b1b
Checkpoint!
2017-04-12 14:45:56 -07:00
David Rowe
f30dc4b560
Add a "record" button to initiate recording
2017-04-12 15:04:29 +12:00
David Rowe
905560b96d
Remove checkbox and record-on-close functionality
2017-04-12 14:48:15 +12:00
David Rowe
86baf785aa
Add "Load" button
2017-04-11 15:23:09 +12:00
David Rowe
9a9bcaf2ae
Stop button stops playing recording
2017-04-11 09:37:57 +12:00
David Rowe
bd63960876
Add table of recordings currently being played
2017-04-11 07:23:52 +12:00
David Rowe
813a5684e3
Display instruction text only if recording is enabled
2017-04-06 09:22:01 +12:00
David Rowe
b29bfd4bb4
Dialog instructions refer to tablet or window as appropriate
2017-04-05 17:49:13 +12:00
David Rowe
54a0bea8c0
Toolbar icon state and start/stop recording with window closing/opening
2017-04-05 17:48:35 +12:00
David Rowe
a625fd4523
Add dialog with "Enable recording" checkbox
2017-04-05 16:20:04 +12:00
David Rowe
f397adb22a
Reinstate scrollbars to marketplace pages
2017-04-01 11:06:27 +13:00
Seth Alves
4516ddf855
Merge pull request #9847 from highfidelity/tablet-ui
...
Tablet ui
2017-03-28 14:48:02 -07:00
David Rowe
a6ef592353
Non-scrolling window with images scaled to fit
2017-03-28 14:43:26 +13:00
David Rowe
d0fc352d3b
Address event bridge being shared with other scripts
2017-03-27 16:07:58 +13:00
Anthony J. Thibault
7e6ff7c2fb
Scrollbar is visible on marketplace in toolbar mode.
2017-03-24 11:40:10 -07:00
Anthony J. Thibault
54b11bb6ee
Hide the scrollbar on the marketplace
2017-03-24 11:22:50 -07:00
kunalgosar
f09ee92fe1
spacing issues
2017-03-21 14:16:49 -07:00
kunalgosar
30d2ea0ea5
spacing issues
2017-03-21 14:15:56 -07:00
kunalgosar
a4af973ae4
fixed back button on marketplace
2017-03-21 14:12:54 -07:00
Faye Li
f57905fbb3
remove code for jump to selection
2017-03-20 10:23:55 -07:00
Faye Li
197a06c423
changes in TWO entityList.js to register the export event
2017-03-17 16:17:21 -07:00
Seth Alves
d792559d9a
have edit.js resend properties of selected entity to entityProperties.js once it's ready
2017-03-10 09:59:23 -08:00
Seth Alves
66d44ac6f0
Merge branch 'master' of github.com:highfidelity/hifi into tablet-ui-edit-js
2017-03-08 09:26:51 -08:00
Menithal
d85cb645b0
Changed limit logic, default limit is now 0
...
Clones now have a named based on the original entity id
Limit is now calculated from the source instance, instead of just clone
name to avoid a single box being calculated as something else
Default limit is now 0, which disables limit
2017-03-04 11:42:43 +02:00
Seth Alves
3b581a8dfe
merge from upstream
2017-03-02 16:35:44 -08:00
Seth Alves
155a310852
Merge pull request #9761 from Menithal/21166
...
WL#21166 Cloneable Equipment
2017-03-02 16:33:13 -08:00
Menithal
9c31f66b75
Addressed CR of 9684
2017-03-02 21:39:56 +02:00
Menithal
231ebef117
Removed stray debugPrint
2017-03-02 01:01:57 +02:00
Menithal
f538ac24f3
Various Properties
2017-03-01 22:07:02 +02:00
Menithal
1d8be2aeaa
Added missing dynamic
2017-02-26 19:17:46 +02:00
Menithal
10151c3f5b
Added Multi-userdata field updater
2017-02-24 08:04:03 +02:00
Menithal
4d98cc436b
Finished up Edit.js
2017-02-23 23:20:21 +02:00
Menithal
e95e50ad6e
Preliminary work on edit.js to allow for new param
2017-02-23 10:34:04 +02:00
Menithal
9b8503eba5
Initial Grab Clone
2017-02-19 18:18:38 +02:00
Menithal
dcbe3c622d
Added Hotkey Listening to the webview
...
Ctrl + P and Ctrl + Shift + P are now available even if the edit window
has been selected
2017-02-18 11:51:19 +02:00
Menithal
f5d266a562
Updated
2017-02-17 23:28:28 +02:00
Seth Alves
12b8a77488
in edit.js, convert entity property ID to be a text-field so the data can be copied
2017-02-15 16:29:50 -08:00
Seth Alves
e030a4a518
Merge branch 'master' of github.com:highfidelity/hifi into tablet-ui-edit-js
2017-02-15 15:20:14 -08:00
David Kelly
5184cbe615
Merge branch 'master' of https://github.com/highfidelity/hifi into dk/zoneFilters2
2017-02-15 12:08:55 -07:00
Seth Alves
3a23ec86d5
handles etc work better
2017-02-14 13:57:48 -08:00
humbletim
831bf93500
* refactor ScriptCache per FIXMEs
...
* include error details in BatchLoader results
* update EntityServerScript properties in edtior to reflect more granular statuses
* ScriptEngine plumbing in prep for require/module integration
2017-02-11 04:47:31 -05:00
David Kelly
61e558e568
Entity Edit Filters for zones
...
Part 1 - just put them in the zones entities. Next I'll hook them
up and actually filter...
2017-02-08 09:53:25 -07:00
Brad Hefta-Gaub
5ada689ab7
Merge pull request #9497 from ctrlaltdavid/fix-clara-download
...
Fix intermittent Clara.io download crashes
2017-01-26 10:58:27 -08:00
Atlante45
f540c94113
Merge branch 'master' of https://github.com/highfidelity/hifi into ess-pr
2017-01-25 13:06:49 -08:00
David Rowe
dcd632013f
Better variable name
2017-01-25 16:37:35 +13:00
David Rowe
7e56d0fae6
Fix up Clara.io error handling
2017-01-25 16:36:06 +13:00
David Rowe
1b05ae8a82
Make handling of Clara.io download-ready state transition more robust
2017-01-25 11:00:07 +13:00
Atlante45
a1962e274d
Fix rescale for 0.x values
2017-01-23 14:35:16 -08:00
Ryan Huffman
7cd19192d9
Remove dead code in entityProperties.js
2017-01-19 15:00:30 -08:00
Ryan Huffman
c015ac1bd5
Add display of server script status to edit.js
2017-01-19 13:27:44 -08:00
Ryan Huffman
71e039951c
Add reload server scripts button to edit.js
2017-01-17 14:47:57 -08:00
Ryan Huffman
142c7da523
Add serverScripts property support to edit.js
2017-01-17 14:47:06 -08:00
David Rowe
a1fe908380
Remove a lingering line of old code
2017-01-17 12:56:56 +13:00
David Rowe
d7ab7316a8
Tidying
2017-01-13 12:28:53 +13:00
David Rowe
6f2386eabd
Fix processing of Clara.io status messages
2017-01-13 11:20:00 +13:00
David Rowe
4dee0efdd3
Use more reliable Clara.io API parameters
2017-01-13 09:12:49 +13:00
David Rowe
d45e6f00cb
Prepare only one download at a time
2017-01-12 22:35:42 +13:00
David Rowe
288c069687
Make cancelling downloads more robust
2017-01-12 22:31:09 +13:00
David Rowe
6e622b3719
Don't request model be centered as work-around for downloads failing
2017-01-12 21:35:24 +13:00
David Rowe
cbe8ce0c19
Improve handling of zip file generation failing
2017-01-12 21:33:32 +13:00
David Rowe
37da800a14
Display Clara model preparation progress
2017-01-12 15:47:41 +13:00
David Rowe
9bdcdf73c1
User must be logged into Clara.io site to download
2017-01-12 09:15:01 +13:00
David Rowe
71d6a5cb1d
Implement model request and download
2017-01-11 21:33:03 +13:00
David Rowe
530b176d09
Replace Clara download button with own
2017-01-11 16:36:18 +13:00
howard-stearns
9709bedca7
checkpoint
2017-01-04 16:55:58 -08:00
David Rowe
3d6fe6efe8
Move Clara download button when displaying on tablet
2016-12-16 14:58:22 +13:00
David Rowe
04aef641c5
Fix auto-downloads not happening after forced log in
2016-12-16 11:45:17 +13:00
David Rowe
a7e0135a6a
Continuously update Clara pages because content can change dynamically
2016-12-16 11:28:34 +13:00
David Rowe
861ce2c27b
Reduce whitespace in Clara categories
2016-12-15 20:33:43 +13:00
David Rowe
eb7b2dbdcf
Improve robustness of navigation footer
2016-12-14 15:07:06 +13:00
David Rowe
2b0529bcea
Inform user if can't do Clara.io download because can't write to ATP
2016-12-14 14:45:33 +13:00
David Rowe
4890e92733
Start at HiFi marketplace page instead of directory page
2016-12-14 00:12:52 +13:00
David Rowe
8195393205
Fix Clara marketplace button appearing on top of navigation footer
2016-12-13 22:54:19 +13:00
David Rowe
20623ebddb
Raise and lower keyboard on password fields
2016-12-13 22:48:17 +13:00
David Rowe
14ecb24986
Remove extra browse history item created by Clara download
2016-12-11 17:43:55 +13:00
David Rowe
c87149cfc2
Tidying
2016-12-10 12:59:01 +13:00
David Rowe
c4c2a95e83
Add "back" button to marketplaces footer
2016-12-08 10:58:37 +13:00
David Rowe
1de2c14fee
Remove e-mail message hyperlink if displaying on tablet
2016-12-07 12:52:53 +13:00
David Rowe
e821ec5593
Inject navigation footer into Clara account createion page
2016-12-07 12:38:16 +13:00
David Rowe
01226b03ef
Improve text and robustness of marketplaces footer
2016-12-07 12:20:43 +13:00
David Rowe
8e30674069
Tidying
2016-12-07 09:28:35 +13:00
David Rowe
d857f943f8
Handle Clara marketplace downloads
2016-12-07 09:16:59 +13:00
David Rowe
b83d5c6275
Inject Clara Web page modifications
2016-12-05 21:34:34 +13:00
David Rowe
f04c493e16
Fix navigation bar and opaqueness of Web page
2016-12-05 17:48:20 +13:00
David Rowe
a75d0b3fe8
Merge branch 'master' into 21089
2016-11-30 14:50:51 +13:00
Zach Fox
20a2d1275a
Bugfixes and GIF uploads workinggit add -A!
2016-11-18 14:39:30 -08:00
Zach Fox
adcbb0b760
Code clarity and potential bugfix
2016-11-18 14:39:30 -08:00
Zach Fox
a81289a0d7
Huge progress today. Buggy behavior with multiple snapshots remains
2016-11-18 14:39:29 -08:00
David Rowe
591db37a21
Fix up navigation footer fonts
2016-11-15 15:09:33 +13:00
David Rowe
e4b8d34080
Add navigation bar to marketplace pages
2016-11-15 14:38:03 +13:00
David Rowe
e7d9f98ca4
Get script injection working in new marketplaces window
2016-11-15 09:23:51 +13:00
David Rowe
5eff7c9e15
Merge branch 'master' into 21089
2016-11-10 14:42:21 +13:00
Ryan Huffman
c4f35bf7bf
Fix userData in edit.js sometimes showing wrong value when locked
2016-11-07 11:39:36 -08:00
David Rowe
d33ac21aaa
Merge branch 'master' into 21089
2016-11-08 08:23:10 +13:00
Seth Alves
d0c0cdd82f
polyvox corners stitch together reliably. surface-extractor dropdown in edit.js works again
2016-11-02 16:31:34 -07:00
David Rowe
0c6ed67e3b
Tidying
2016-11-02 00:05:30 +13:00
David Rowe
c6558ebebd
Reinstate "reload" button for entity scripts in entities editor
2016-10-21 11:14:57 +13:00
Anthony J. Thibault
f76dbeeffd
Edit.js now works with new ignoreIK default
2016-10-11 17:12:02 -07:00
David Rowe
ad5d525340
Fix keyboard status when switching between entities editor tabs
2016-09-30 14:13:35 +13:00
David Rowe
5e842843c6
Set alphabetic/numeric keyboard per field entered
2016-09-30 11:54:32 +13:00